/* ============================================================
   Innovation Computers — Landing page styles
   Palette: paper #FAFAF8 · ink #101010 · red #D0021B
   ============================================================ */

:root {
  --bg: #FAFAF8;
  --ink: #101010;
  --red: #D0021B;
  --paper: #fff;
  --font: 'Century Gothic', 'CenturyGothic', AppleGothic, 'Questrial', sans-serif;
  --maxw: 1280px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }
a { color: inherit; }
h1, h2, p { margin: 0; }

.red { color: var(--red); }

::selection { background: var(--red); color: #fff; }

@keyframes ic-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes ic-pulse   { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

/* Shared section eyebrow + typography ---------------------------------- */
.eyebrow {
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
}
.section__title {
  margin-top: 20px;
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -.02em;
  font-weight: 600;
}
.section__body {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(16, 16, 16, .65);
}
.section__body + .section__body { margin-top: 16px; }

/* Buttons -------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 30px;
  border-radius: 2px;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
}
.btn--dark { color: #fff; background: var(--ink); }
.btn--dark:hover { background: var(--red); }
.btn--outline {
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(16, 16, 16, .25);
  padding: 15px 30px;
}
.btn--outline:hover { border-color: var(--ink); }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 248, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(16, 16, 16, .1);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo { display: flex; align-items: center; text-decoration: none; }
.nav__logo img { height: 44px; display: block; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__menu { display: flex; align-items: center; gap: 32px; }
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color .2s;
}
.nav__link:hover { color: var(--red); }
.nav__cta {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--red);
  padding: 10px 20px;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: .02em;
  transition: background .2s;
}
.nav__cta:hover { background: var(--ink); }

/* ============ HERO ============ */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 88px 32px 72px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
}
.hero__dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: ic-pulse 2.4s infinite;
}
.hero__title {
  margin-top: 26px;
  font-size: clamp(44px, 5.4vw, 74px);
  line-height: 1;
  letter-spacing: -.03em;
  font-weight: 600;
}
.hero__lede {
  margin-top: 28px;
  max-width: 540px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(16, 16, 16, .7);
}
.hero__actions { display: flex; gap: 14px; margin-top: 36px; }
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
#ic-globe {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  display: block;
}

/* ============ PARTNER MARQUEE ============ */
.partners {
  border-top: 1px solid rgba(16, 16, 16, .1);
  border-bottom: 1px solid rgba(16, 16, 16, .1);
  background: var(--paper);
  overflow: hidden;
  padding: 36px 0;
}
.partners__label {
  max-width: var(--maxw);
  margin: 0 auto 24px;
  padding: 0 32px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(16, 16, 16, .5);
}
.marquee { display: flex; width: max-content; animation: ic-marquee 36s linear infinite; }
.marquee__group { display: flex; gap: 16px; padding-right: 16px; }
.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 170px;
  height: 64px;
  padding: 0 32px;
  background: rgba(16, 16, 16, .04);
  border-radius: 4px;
}
.brand__logo { height: 24px; width: auto; display: block; }
.brand__name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(16, 16, 16, .6);
  white-space: nowrap;
}

/* ============ STATS ============ */
.stats { max-width: var(--maxw); margin: 0 auto; padding: 96px 32px 32px; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1px;
  background: rgba(16, 16, 16, .12);
  border: 1px solid rgba(16, 16, 16, .12);
}
.stat { background: var(--bg); padding: 36px 28px; }
.stat__num {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1;
}
.stat__label {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(16, 16, 16, .55);
  margin-top: 12px;
}

/* ============ PRODUCTS ============ */
.products {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 96px 32px;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}
.products__intro { position: sticky; top: 104px; }
.products__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.product-card {
  border: 1px solid rgba(16, 16, 16, .12);
  background: var(--paper);
  border-radius: 4px;
  padding: 22px 20px;
  font-size: 15px;
  font-weight: 500;
  transition: border-color .2s;
}
.product-card:hover { border-color: var(--red); }

/* ============ SERVICES ============ */
.services { background: var(--ink); color: #fff; }
.services__inner { max-width: var(--maxw); margin: 0 auto; padding: 104px 32px; }
.services__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}
.services__head .section__title { max-width: 620px; }
.services__intro {
  max-width: 420px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .6);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .14);
  margin-top: 56px;
}
.service-card { background: var(--ink); padding: 32px 28px; transition: background .2s; }
.service-card:hover { background: #1a1a1a; }
.service-card__num { font-size: 12px; color: var(--red); }
.service-card__title { font-size: 19px; font-weight: 600; margin-top: 14px; }
.service-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .55);
  margin-top: 8px;
}

/* ============ ABOUT / MISSION ============ */
.about {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 104px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about .section__body { margin-top: 24px; line-height: 1.65; color: rgba(16, 16, 16, .7); }
.mission { border-left: 2px solid var(--red); padding: 8px 0 8px 36px; }
.mission__label {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(16, 16, 16, .5);
}
.mission__quote {
  margin-top: 20px;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -.01em;
}
.mission__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.tag {
  font-size: 12px;
  padding: 8px 14px;
  border: 1px solid rgba(16, 16, 16, .2);
  border-radius: 999px;
  color: rgba(16, 16, 16, .65);
}

/* ============ CONTACT ============ */
.contact { background: var(--red); color: #fff; }
.contact__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 104px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.contact__eyebrow {
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
}
.contact__title {
  margin-top: 20px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -.02em;
  font-weight: 600;
}
.contact__details { display: flex; flex-direction: column; gap: 16px; }
.contact__link {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 255, 255, .4);
  padding-bottom: 6px;
  transition: border-color .2s;
}
.contact__link:hover { border-color: #fff; }
.contact__meta { font-size: 13px; color: rgba(255, 255, 255, .75); margin-top: 6px; }

/* ============ FOOTER ============ */
.footer { background: var(--ink); color: #fff; }
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 48px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__brand { display: flex; align-items: center; gap: 16px; }
.footer__brand img { height: 34px; display: block; }
.footer__brand span { font-size: 12px; color: rgba(255, 255, 255, .5); }
.footer__links { display: flex; gap: 28px; font-size: 13px; }
.footer__link { color: rgba(255, 255, 255, .7); text-decoration: none; transition: color .2s; }
.footer__link:hover { color: #fff; }
.footer__copy { font-size: 12px; color: rgba(255, 255, 255, .4); }

/* ============ SCROLL REVEAL (JS-driven) ============ */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s cubic-bezier(.2, .6, .2, 1), transform .8s cubic-bezier(.2, .6, .2, 1);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__dot { animation: none; }
  .marquee { animation: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding-top: 64px; }
  .hero__visual { order: -1; }
  .products { grid-template-columns: 1fr; gap: 40px; }
  .products__intro { position: static; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; gap: 40px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 680px) {
  .nav__menu { display: none; }
  .services__grid { grid-template-columns: 1fr; }
  .services__inner,
  .about,
  .contact__inner { padding-top: 72px; padding-bottom: 72px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .products__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-wrap: wrap; }
  .hero__actions .btn { flex: 1 1 auto; text-align: center; }
}
