@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #050816;
  --blue: #2370f8;
  --muted: #5b6478;
  --soft: #f3f8ff;
  --white: #ffffff;
  --container: min(1180px, calc(100vw - 64px));
  --reading: min(880px, calc(100vw - 64px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--white); }

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.45;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* Header */
.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  padding: 34px 0;
  color: var(--ink);
}

.nav-shell {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 14px 20px;
  border: 1px solid rgba(5, 8, 22, 0.08);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(16px);
  border-radius: 999px;
  box-shadow: 0 20px 50px rgba(5, 8, 22, 0.05);
}

.brand { display: flex; align-items: center; justify-content: flex-start; }
.brand img { width: 126px; height: auto; display: block; }

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.105em;
  text-transform: uppercase;
  color: rgba(5, 8, 22, 0.62);
}

.desktop-nav a { transition: color 0.22s ease; }
.desktop-nav a:hover { color: var(--blue); }

.nav-cta, .primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.nav-cta {
  padding: 12px 20px;
  font-size: 13px;
  letter-spacing: 0.015em;
  box-shadow: 0 18px 42px rgba(35, 112, 248, 0.22);
}

.nav-cta:hover, .primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(35, 112, 248, 0.28);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 6px 0;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-nav { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 128vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding-top: 25.5vh;
  background: #fff;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.76;
  filter: saturate(1.04) contrast(1.03);
}

.hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.12) 27%, rgba(255,255,255,0.38) 57%, #fff 91%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38vh;
  background: linear-gradient(180deg, rgba(255,255,255,0), #fff 72%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1080px, calc(100vw - 42px));
  margin: 0 auto;
  text-align: center;
  padding: 0 16px;
}

h1 {
  margin: 0 auto;
  font-size: clamp(64px, 8.9vw, 152px);
  line-height: 0.94;
  letter-spacing: 0.03em;
  font-weight: 800;
  max-width: 1220px;
  color: var(--ink);
}

.hero-kicker {
  margin: 38px auto 0;
  color: var(--blue);
  font-size: clamp(16px, 1.6vw, 24px);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-subtitle {
  margin: 22px auto 0;
  max-width: 760px;
  font-size: clamp(18px, 1.6vw, 25px);
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: rgba(5, 8, 22, 0.74);
}

.hero-cta { margin-top: 38px; }

/* Typography */
.section-label {
  margin: 0 0 26px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
}

h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.012em;
  font-weight: 700;
  color: var(--ink);
}

p {
  margin: 0;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.58;
  letter-spacing: -0.012em;
  color: rgba(5, 8, 22, 0.72);
}

/* Editorial Sections */
.editorial-section {
  position: relative;
  padding: 150px 0;
  background: #fff;
}

.editorial-section.pale {
  background: linear-gradient(180deg, #fff 0%, #f7fbff 44%, #fff 100%);
}

.section-inner {
  width: var(--container);
  margin: 0 auto;
}

.section-inner.centered {
  width: var(--reading);
  text-align: center;
}

.section-inner.split {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.74fr);
  gap: clamp(52px, 7vw, 104px);
  align-items: center;
}

.section-inner.split.reverse {
  grid-template-columns: minmax(320px, 0.76fr) minmax(0, 1.02fr);
}

.statement-copy { max-width: 760px; }
.statement-copy p { margin-top: 30px; max-width: 710px; }

.stacked-lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  font-size: clamp(20px, 1.9vw, 30px);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(5, 8, 22, 0.72);
}

.two-line {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 38px;
  color: rgba(5, 8, 22, 0.7);
  font-weight: 600;
}

.compressed {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 36px;
  font-size: clamp(22px, 2.2vw, 34px);
  color: var(--ink);
  font-weight: 700;
}

.sharp-line {
  margin-top: 32px !important;
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1.18;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.01em;
}

/* Cards */
.cards-band {
  padding: 58px 0 126px;
  background: #fff;
}

.cards-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.idea-card {
  position: relative;
  min-height: 270px;
  padding: clamp(28px, 3.1vw, 46px);
  border: 1px solid rgba(5, 8, 22, 0.08);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 26px 70px rgba(5, 8, 22, 0.055);
}

.idea-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(35,112,248,0.08), rgba(255,255,255,0) 52%);
  pointer-events: none;
}

.card-number {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.idea-card h3 {
  margin: 0 0 18px;
  font-size: clamp(24px, 2.25vw, 34px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.012em;
  color: var(--ink);
}

.idea-card p {
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
  max-width: 460px;
  color: rgba(5, 8, 22, 0.68);
}

/* Signature */
.experience { padding-top: 172px; padding-bottom: 168px; }
.experience p { margin-top: 34px; max-width: 760px; }

.linkive-signature {
  padding: 168px 0 156px;
  background: linear-gradient(180deg, #fff 0%, #f7fbff 48%, #fff 100%);
}

.linkive-signature .section-inner { width: var(--reading); text-align: center; }
.linkive-signature h2 {
  color: var(--ink);
  font-size: clamp(42px, 5.4vw, 86px);
  letter-spacing: -0.008em;
}
.linkive-signature p {
  margin: 34px auto 0;
  max-width: 780px;
  color: rgba(5, 8, 22, 0.72);
}

/* Conversation */
.conversation {
  padding: 172px 0 160px;
  background: linear-gradient(180deg, #fff 0%, #f5f9ff 100%);
}

.conversation .section-inner { width: var(--reading); text-align: center; }
.conversation h2 {
  font-size: clamp(44px, 6vw, 94px);
  font-weight: 800;
  letter-spacing: 0.012em;
}
.conversation p { margin: 34px auto 0; max-width: 640px; }

.primary-cta {
  margin-top: 42px;
  padding: 17px 30px;
  font-size: 15px;
  letter-spacing: 0.02em;
  box-shadow: 0 22px 48px rgba(35, 112, 248, 0.23);
}

/* Footer */
.footer {
  padding: 52px 0;
  background: #fff;
  border-top: 1px solid rgba(5, 8, 22, 0.07);
}

.footer-inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  color: rgba(5, 8, 22, 0.58);
  font-size: 13px;
}
.footer img { width: 102px; height: auto; }
.footer p { margin: 0; font-size: 13px; }

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-left { transform: translateX(-34px); }
.reveal-right { transform: translateX(34px); }
.reveal-up { transform: translateY(28px); }

.reveal.visible { opacity: 1; transform: translate(0, 0); }

/* Responsive */
@media (max-width: 980px) {
  :root { --container: min(100% - 32px, 780px); --reading: min(100% - 34px, 720px); }
  .site-header { padding: 20px 0; }
  .nav-shell { grid-template-columns: 1fr auto; gap: 16px; padding: 12px 14px; }
  .brand img { width: 112px; }
  .desktop-nav, .nav-cta { display: none; }
  .menu-toggle { display: block; }

  .mobile-nav {
    position: absolute;
    top: 92px;
    left: 50%;
    width: var(--container);
    transform: translateX(-50%) translateY(-8px);
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(5, 8, 22, 0.08);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 60px rgba(5, 8, 22, 0.08);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .site-header.open .mobile-nav { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
  .mobile-nav a { font-size: 14px; font-weight: 700; padding: 10px 14px; color: var(--ink); }
  .mobile-nav .mobile-cta { margin-top: 6px; background: var(--blue); color: #fff; border-radius: 999px; padding: 12px 18px; }

  .hero { min-height: 116vh; padding-top: 24vh; }
  h1 { font-size: clamp(52px, 11vw, 92px); }
  .hero-subtitle { max-width: 650px; }
  .editorial-section { padding: 112px 0; }
  .section-inner.split, .section-inner.split.reverse { grid-template-columns: 1fr; gap: 44px; }
  .statement-copy, .statement-copy p { max-width: 100%; }
  .cards-band { padding: 28px 0 96px; }
  .cards-grid { grid-template-columns: 1fr; }
  .idea-card { min-height: 220px; }
  .experience, .linkive-signature, .conversation { padding-top: 120px; padding-bottom: 112px; }
  .footer-inner { flex-direction: column; gap: 10px; }
}

@media (max-width: 560px) {
  :root { --container: calc(100% - 24px); --reading: calc(100% - 26px); }
  .site-header { padding: 14px 0; }
  .nav-shell { border-radius: 24px; }
  .brand img { width: 102px; }
  .mobile-nav { top: 78px; border-radius: 24px; }
  .hero { min-height: 108vh; padding-top: 22vh; }
  .hero-image { opacity: 0.82; object-position: center top; }
  .hero-wash { background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.18) 26%, rgba(255,255,255,0.52) 61%, #fff 92%); }
  h1 { letter-spacing: 0.022em; line-height: 0.98; }
  .hero-kicker { margin-top: 30px; letter-spacing: 0.11em; }
  .hero-subtitle { font-size: 17px; line-height: 1.56; }
  .section-label { margin-bottom: 20px; letter-spacing: 0.18em; }
  h2 { font-size: clamp(31px, 9vw, 48px); line-height: 1.08; }
  p { font-size: 17px; line-height: 1.58; }
  .editorial-section { padding: 86px 0; }
  .stacked-lines { font-size: 19px; gap: 9px; }
  .idea-card { border-radius: 26px; padding: 28px; }
  .card-number { margin-bottom: 30px; }
  .conversation h2 { letter-spacing: 0.01em; }
  .primary-cta { width: min(100%, 330px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .nav-cta, .primary-cta, .desktop-nav a { transition: none; }
  .reveal { opacity: 1; transform: none; }
}

.experience .section-inner{display:flex;flex-direction:column;align-items:center;text-align:center;}
.experience h2,.experience p{max-width:720px;margin-left:auto;margin-right:auto;}

/* Beyond Launch */
.beyond-launch {
  padding-top: 138px;
  padding-bottom: 132px;
  background: #fff;
}

.beyond-launch .section-inner {
  width: var(--container);
  text-align: center;
}

.beyond-launch .section-label {
  margin-bottom: 42px;
}

.service-grid {
  width: min(960px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4.2vw, 64px);
  align-items: start;
}

.service-card {
  padding: 0 10px;
  text-align: center;
}

.service-card h3 {
  margin: 0 0 16px;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0.012em;
  color: var(--ink);
}

.service-card p {
  max-width: 250px;
  margin: 0 auto;
  font-size: clamp(17px, 1.28vw, 21px);
  line-height: 1.58;
  color: rgba(5, 8, 22, 0.66);
}

@media (max-width: 980px) {
  .beyond-launch { padding-top: 104px; padding-bottom: 104px; }
  .service-grid { grid-template-columns: 1fr; gap: 38px; width: min(560px, 100%); }
  .service-card p { max-width: 360px; }
}

@media (max-width: 560px) {
  .beyond-launch { padding-top: 82px; padding-bottom: 84px; }
  .beyond-launch .section-label { margin-bottom: 32px; }
}

.beyond-launch h2{font-size:clamp(42px,4vw,64px);line-height:1.08;letter-spacing:-.02em;margin:0 auto 48px;max-width:900px;text-align:center}
.service-card{background:#fff;border:1px solid rgba(35,112,248,.08);border-radius:24px;padding:34px 26px;box-shadow:0 10px 30px rgba(5,8,22,.06)}
.icon-circle{width:72px;height:72px;border-radius:50%;background:rgba(35,112,248,.08);display:flex;align-items:center;justify-content:center;margin:0 auto 22px;font-size:34px}
