:root {
  --night: #0d0b12;
  --night-soft: #17131f;
  --night-card: #1e1928;
  --paper: #f7f3ee;
  --paper-soft: #ebe4dc;
  --ink: #151119;
  --muted: #716a76;
  --muted-light: #bbb2c2;
  --line-dark: rgba(255, 255, 255, 0.1);
  --line-light: rgba(22, 16, 27, 0.12);
  --pink: #ff4d7d;
  --coral: #ff725e;
  --violet: #8b5cf6;
  --lime: #b8ff5a;
  --cyan: #6ee7e7;
  --font-display: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
  font-family: var(--font-body);
}

* { box-sizing: border-box; }

html {
  background: var(--night);
  color: white;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
}

a,
button { -webkit-tap-highlight-color: transparent; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.ambient {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  z-index: -3;
}

.ambient-orb {
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.28;
  position: absolute;
}

.orb-pink {
  animation: floatPink 14s ease-in-out infinite;
  background: radial-gradient(circle, var(--pink), transparent 68%);
  height: 560px;
  right: -180px;
  top: -190px;
  width: 560px;
}

.orb-violet {
  animation: floatViolet 18s ease-in-out infinite;
  background: radial-gradient(circle, var(--violet), transparent 70%);
  height: 620px;
  left: -320px;
  top: 560px;
  width: 620px;
}

.orb-lime {
  background: radial-gradient(circle, rgba(184, 255, 90, 0.62), transparent 70%);
  bottom: 2%;
  height: 420px;
  opacity: 0.12;
  right: -240px;
  width: 420px;
}

.ambient-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  inset: 0;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
  position: absolute;
}

.ambient-noise {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.2'/%3E%3C/svg%3E");
  inset: 0;
  opacity: 0.045;
  position: absolute;
}

@keyframes floatPink {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-60px, 55px, 0) scale(1.08); }
}

@keyframes floatViolet {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(70px, -35px, 0); }
}

.shell,
.site-header {
  margin-inline: auto;
  max-width: 1240px;
  width: calc(100% - 48px);
}

.site-header {
  align-items: center;
  backdrop-filter: blur(24px) saturate(145%);
  background: rgba(13, 11, 18, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr auto 1fr;
  left: 50%;
  padding: 10px 11px 10px 16px;
  position: fixed;
  top: 18px;
  transform: translateX(-50%);
  transition: background 180ms ease, box-shadow 180ms ease, top 180ms ease;
  z-index: 100;
}

.site-header.is-scrolled {
  background: rgba(13, 11, 18, 0.91);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
  top: 9px;
}

.company-brand {
  align-items: center;
  color: white;
  display: inline-flex;
  gap: 10px;
  justify-self: start;
  text-decoration: none;
}

.company-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--pink), var(--violet) 58%, var(--lime));
  border-radius: 11px;
  color: white;
  display: inline-flex;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.6rem;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  letter-spacing: 0.03em;
  line-height: 1;
  transform: rotate(-3deg);
  width: 38px;
}

.company-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 760;
  letter-spacing: -0.04em;
}

.site-nav { display: flex; gap: 30px; }

.site-nav a,
.site-footer nav a {
  color: #cfc6d5;
  font-size: 0.78rem;
  font-weight: 720;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-footer nav a:hover { color: var(--lime); }

.header-cta {
  align-items: center;
  background: white;
  border-radius: 13px;
  color: var(--ink);
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 840;
  gap: 9px;
  justify-self: end;
  padding: 12px 14px;
  text-decoration: none;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.header-cta:hover {
  box-shadow: 0 12px 30px rgba(184, 255, 90, 0.16);
  transform: translateY(-2px);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(42px, 6vw, 92px);
  grid-template-columns: minmax(0, 0.94fr) minmax(460px, 0.86fr);
  min-height: 900px;
  padding-bottom: 92px;
  padding-top: 138px;
}

.hero-copy { position: relative; z-index: 3; }

.eyebrow {
  align-items: center;
  color: var(--lime);
  display: flex;
  font-size: 0.68rem;
  font-weight: 850;
  gap: 10px;
  letter-spacing: 0.12em;
  margin: 0 0 25px;
  text-transform: uppercase;
}

.eyebrow > span {
  background: currentColor;
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(184, 255, 90, 0.12);
  height: 7px;
  width: 7px;
}

.eyebrow-light { color: #ff8da9; }

h1,
h2,
h3,
p { margin-top: 0; }

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.065em;
}

h1 {
  font-size: clamp(4.4rem, 8.4vw, 8.5rem);
  font-weight: 760;
  line-height: 0.83;
  margin-bottom: 34px;
}

h1 em,
h2 em {
  -webkit-background-clip: text;
  background-image: linear-gradient(105deg, var(--pink), #ff8366 44%, var(--violet) 92%);
  background-clip: text;
  color: transparent;
  font-style: normal;
}

h2 {
  font-size: clamp(3.15rem, 6vw, 6.3rem);
  font-weight: 740;
  line-height: 0.94;
}

h3 {
  font-size: clamp(2rem, 3vw, 3.15rem);
  font-weight: 730;
  line-height: 1;
}

.hero-lede {
  color: #c1b8c7;
  font-size: clamp(1.02rem, 1.42vw, 1.19rem);
  line-height: 1.72;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  align-items: center;
  border-radius: 16px;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 840;
  gap: 12px;
  justify-content: center;
  min-height: 56px;
  padding: 14px 19px;
  text-decoration: none;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.button:hover { transform: translateY(-3px); }

.button-hot {
  background: linear-gradient(135deg, var(--pink), #ff765f 68%, #ff9874);
  box-shadow: 0 18px 42px rgba(255, 77, 125, 0.28);
  color: white;
}

.button-hot:hover { box-shadow: 0 22px 54px rgba(255, 77, 125, 0.38); }

.button-glass {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: white;
}

.button-glass:hover { box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24); }

.button-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 9px;
  display: inline-flex;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.hero-proof {
  align-items: center;
  color: #918896;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.65rem;
  font-weight: 760;
  gap: 10px;
  letter-spacing: 0.04em;
  margin-top: 38px;
  text-transform: uppercase;
}

.hero-proof i {
  background: var(--pink);
  border-radius: 50%;
  height: 4px;
  width: 4px;
}

.hero-art {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  min-height: 650px;
  perspective: 1000px;
  position: relative;
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 240ms ease-out;
}

.orbit-glow {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.32), rgba(255, 77, 125, 0.13) 45%, transparent 69%);
  border-radius: 50%;
  filter: blur(8px);
  height: 620px;
  inset: 18px auto auto 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 620px;
}

.orbit-ring {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ring-one { height: 530px; width: 530px; }
.ring-two { border-style: dashed; height: 410px; opacity: 0.68; width: 410px; }

.orbit-core {
  align-items: flex-start;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(145deg, #2a1d3d, #15111c);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 42% 58% 47% 53% / 50% 42% 58% 50%;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.42), inset 0 1px rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  height: 300px;
  justify-content: center;
  left: 50%;
  padding: 50px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-7deg);
  width: 300px;
}

.core-label {
  color: var(--lime);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
}

.orbit-core strong {
  font-family: var(--font-display);
  font-size: 2.35rem;
  letter-spacing: -0.06em;
  line-height: 0.88;
}

.orbit-core small {
  color: #8e8398;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin-top: 20px;
}

.orbit-card {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(30, 25, 40, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 17px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.3);
  display: grid;
  gap: 12px;
  grid-template-columns: auto 1fr auto;
  min-width: 220px;
  padding: 13px;
  position: absolute;
}

.orbit-card > span {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 11px;
  color: var(--lime);
  display: flex;
  font-size: 0.65rem;
  font-weight: 900;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.orbit-card div { display: flex; flex-direction: column; gap: 3px; }
.orbit-card small { color: #8e8496; font-size: 0.5rem; font-weight: 850; letter-spacing: 0.09em; }
.orbit-card strong { font-size: 0.78rem; }
.orbit-card > i { color: #7b7182; font-style: normal; }
.orbit-product { right: -10px; top: 80px; transform: rotate(5deg); }
.orbit-builds { bottom: 78px; left: -22px; transform: rotate(-4deg); }
.orbit-systems { bottom: 38px; right: 8px; transform: rotate(3deg); }
.orbit-product > span { color: #ff8da9; }
.orbit-systems > span { color: var(--cyan); }

.studio-status {
  align-items: center;
  background: rgba(13, 11, 18, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #a89ead;
  display: flex;
  font-size: 0.61rem;
  font-weight: 720;
  gap: 8px;
  left: 50%;
  padding: 9px 12px;
  position: absolute;
  top: 12px;
  transform: translateX(-50%);
}

.studio-status span {
  animation: statusPulse 1.8s ease-in-out infinite;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(184, 255, 90, 0.1);
  height: 6px;
  width: 6px;
}

@keyframes statusPulse { 50% { opacity: 0.35; } }

.art-star { color: var(--pink); position: absolute; }
.star-one { font-size: 2rem; left: 5%; top: 18%; transform: rotate(-15deg); }
.star-two { bottom: 20%; color: var(--lime); font-size: 1rem; right: 3%; }

.ticker {
  background: var(--lime);
  color: var(--ink);
  overflow: hidden;
  padding: 17px 0;
  transform: rotate(-1.1deg) scale(1.02);
}

.ticker-track {
  align-items: center;
  animation: tickerMove 26s linear infinite;
  display: flex;
  gap: 28px;
  min-width: max-content;
}

.ticker span { font-family: var(--font-display); font-size: 0.77rem; font-weight: 900; letter-spacing: 0.08em; }
.ticker i { color: var(--pink); font-style: normal; }

@keyframes tickerMove { to { transform: translateX(-50%); } }

.studio {
  padding-bottom: clamp(110px, 13vw, 180px);
  padding-top: clamp(120px, 15vw, 190px);
}

.section-intro {
  align-items: end;
  display: grid;
  gap: 22px 70px;
  grid-template-columns: 1fr minmax(280px, 0.48fr);
  margin-bottom: 62px;
}

.section-intro .eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
.section-intro h2 { margin-bottom: 0; }
.section-intro > p:last-child { color: #a89fac; line-height: 1.7; margin-bottom: 5px; }

.service-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  min-height: 560px;
  overflow: hidden;
  padding: 24px;
  position: relative;
  transition: transform 220ms ease;
}

.service-card:hover { transform: translateY(-7px); }

.service-product { background: linear-gradient(155deg, #ff5c7f, #d83b69); }
.service-founders { background: linear-gradient(155deg, #5f38d7, #31206d); }
.service-ai { background: linear-gradient(155deg, #b8ff5a, #6bcf4b); color: var(--ink); }

.service-top {
  align-items: center;
  display: flex;
  font-size: 0.62rem;
  font-weight: 900;
  justify-content: space-between;
  letter-spacing: 0.1em;
}

.service-top i { font-size: 1rem; font-style: normal; }

.service-graphic {
  align-items: center;
  display: flex;
  height: 290px;
  justify-content: center;
  position: relative;
}

.graphic-tile {
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(88, 12, 40, 0.18);
  display: flex;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 900;
  height: 108px;
  justify-content: center;
  position: absolute;
  width: 108px;
}

.tile-one { transform: translate(-70px, -20px) rotate(-12deg); }
.tile-two { transform: translate(4px, 12px) rotate(2deg); z-index: 2; }
.tile-three { transform: translate(75px, -18px) rotate(13deg); }

.founder-graphic { gap: 8px; }

.founder-graphic > span:not(.path) {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  font-size: 0.6rem;
  font-weight: 900;
  height: 72px;
  justify-content: center;
  width: 72px;
}

.build-node { background: rgba(255, 255, 255, 0.16); height: 92px !important; width: 92px !important; }
.path { border-top: 1px dashed rgba(255, 255, 255, 0.35); width: 28px; }

.ai-graphic { gap: 28px; }

.ai-orb {
  align-items: center;
  background: var(--ink);
  border-radius: 43% 57% 52% 48% / 45% 42% 58% 55%;
  display: flex;
  gap: 6px;
  height: 145px;
  justify-content: center;
  transform: rotate(-7deg);
  width: 145px;
}

.ai-orb i { animation: aiWave 1.1s ease-in-out infinite; background: var(--lime); border-radius: 999px; height: 30px; width: 5px; }
.ai-orb i:nth-child(2) { animation-delay: 120ms; height: 53px; }
.ai-orb i:nth-child(3) { animation-delay: 240ms; height: 38px; }
@keyframes aiWave { 50% { transform: scaleY(0.55); } }
.ai-copy { font-family: var(--font-display); font-size: 0.74rem; font-weight: 900; line-height: 1.2; }

.service-card h3 { bottom: 78px; left: 24px; margin: 0; position: absolute; right: 24px; }
.service-card > p { bottom: 18px; font-size: 0.79rem; left: 24px; line-height: 1.55; margin: 0; opacity: 0.78; position: absolute; right: 24px; }

.approach { padding-bottom: clamp(110px, 13vw, 180px); }

.approach-panel {
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 77, 125, 0.18), transparent 28%),
    linear-gradient(145deg, #1e1829, #100d16);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 34px;
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.3);
  display: grid;
  gap: 70px;
  grid-template-columns: 0.78fr 1.12fr;
  overflow: hidden;
  padding: clamp(34px, 6vw, 78px);
  position: relative;
}

.approach-copy h2 { margin-bottom: 28px; }
.approach-copy > p:not(.eyebrow) { color: #aaa0b2; line-height: 1.7; }

.text-link {
  color: var(--lime);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 830;
  gap: 10px;
  margin-top: 18px;
  text-underline-offset: 4px;
}

.process-list { list-style: none; margin: 0; padding: 0; }

.process-list li {
  align-items: start;
  border-bottom: 1px solid var(--line-dark);
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr auto;
  padding: 26px 0;
}

.process-list li:first-child { padding-top: 5px; }
.process-list li > span { color: var(--pink); font-size: 0.65rem; font-weight: 900; padding-top: 4px; }
.process-list strong { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: -0.03em; }
.process-list p { color: #988e9f; font-size: 0.75rem; line-height: 1.55; margin: 7px 0 0; }
.process-list i { color: #62586a; font-size: 0.54rem; font-style: normal; font-weight: 900; letter-spacing: 0.1em; padding-top: 5px; }

.product { padding-bottom: clamp(110px, 14vw, 190px); }

.product-card {
  background:
    radial-gradient(circle at 72% 8%, rgba(255, 255, 255, 0.42), transparent 25%),
    linear-gradient(145deg, #ffd7c9, #ff9c95 45%, #bf9cff);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 36px;
  color: var(--ink);
  display: grid;
  gap: 30px;
  grid-template-columns: 0.88fr 1.12fr;
  min-height: 760px;
  overflow: hidden;
  padding: clamp(28px, 5vw, 70px);
  position: relative;
}

.product-copy { align-self: center; position: relative; z-index: 4; }

.product-brand { align-items: center; display: flex; gap: 12px; margin-bottom: 28px; }
.babylog-mark { background: white; border-radius: 15px; box-shadow: 0 12px 30px rgba(116, 45, 91, 0.13); height: 48px; overflow: hidden; width: 48px; }
.babylog-mark img { display: block; height: 100%; object-fit: cover; width: 100%; }
.product-brand > div { display: flex; flex-direction: column; }
.product-brand small { font-size: 0.52rem; font-weight: 900; letter-spacing: 0.12em; }
.product-brand strong { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: -0.05em; }

.product-status {
  align-items: center;
  display: flex;
  font-size: 0.63rem;
  font-weight: 850;
  gap: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-status span { background: #2cb570; border-radius: 50%; box-shadow: 0 0 0 5px rgba(44, 181, 112, 0.12); height: 7px; width: 7px; }
.product-copy h2 { font-size: clamp(3.1rem, 5.2vw, 5.55rem); margin: 0 0 24px; }
.product-copy h2 em { background-image: linear-gradient(95deg, #e44569, #7750d7); }
.product-lede { color: rgba(21, 17, 25, 0.7); line-height: 1.7; max-width: 520px; }
.product-points { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 25px 0 0; padding: 0; }
.product-points li { align-items: center; background: rgba(255, 255, 255, 0.4); border: 1px solid rgba(255, 255, 255, 0.44); border-radius: 999px; display: flex; font-size: 0.67rem; font-weight: 760; gap: 7px; padding: 8px 11px; }
.product-points li span { color: #7750d7; font-weight: 900; }
.product-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button-ink { background: var(--ink); color: white; }
.button-ink:hover { box-shadow: 0 18px 38px rgba(21, 17, 25, 0.24); }

.store-link {
  align-items: center;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  color: var(--ink);
  display: flex;
  gap: 10px;
  min-height: 56px;
  padding: 10px 15px;
  text-decoration: none;
}

.store-play { align-items: center; background: var(--ink); border-radius: 50%; color: white; display: flex; font-size: 0.65rem; height: 30px; justify-content: center; padding-left: 2px; width: 30px; }
.store-link > span:last-child { display: flex; flex-direction: column; }
.store-link small { font-size: 0.46rem; font-weight: 850; letter-spacing: 0.1em; }
.store-link strong { font-size: 0.77rem; }

.product-preview { min-height: 650px; position: relative; }

.preview-phone {
  background: #fffaf8;
  border: 9px solid #201827;
  border-radius: 48px;
  bottom: -160px;
  box-shadow: 0 50px 90px rgba(80, 31, 79, 0.28);
  color: var(--ink);
  height: 700px;
  left: 50%;
  overflow: hidden;
  padding: 58px 22px 24px;
  position: absolute;
  transform: translateX(-43%) rotate(6deg);
  width: 360px;
}

.preview-island { background: #201827; border-radius: 999px; height: 24px; left: 50%; position: absolute; top: 15px; transform: translateX(-50%); width: 104px; }
.preview-head { display: flex; flex-direction: column; margin-bottom: 20px; }
.preview-head small { color: #8d8490; font-size: 0.68rem; }
.preview-head strong { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: -0.04em; }
.preview-today { background: #261b30; border-radius: 20px; color: white; padding: 15px; }
.preview-today > div { display: flex; justify-content: space-between; }
.preview-today > div span { font-size: 0.72rem; font-weight: 850; }
.preview-today > div small { color: #c9bfcd; font-size: 0.55rem; }
.preview-today ul { display: grid; grid-template-columns: repeat(3, 1fr); list-style: none; margin: 15px 0 0; padding: 0; }
.preview-today li { align-items: center; display: flex; flex-direction: column; gap: 3px; }
.preview-today li > span { align-items: center; background: rgba(255, 255, 255, 0.1); border-radius: 10px; color: #ff8c97; display: flex; height: 30px; justify-content: center; width: 30px; }
.preview-today li:nth-child(2) > span { color: #ad92ff; }
.preview-today li:nth-child(3) > span { color: #7ed9c5; }
.preview-today li strong { font-size: 0.8rem; }
.preview-today li small { color: #c3b9c7; font-size: 0.52rem; }
.preview-phone > p { color: #9a909c; font-size: 0.52rem; font-weight: 900; letter-spacing: 0.1em; margin: 23px 0 10px; }
.preview-event { align-items: center; background: white; border: 1px solid rgba(40, 27, 47, 0.07); border-radius: 16px; box-shadow: 0 9px 22px rgba(59, 35, 66, 0.06); display: grid; gap: 10px; grid-template-columns: auto 1fr auto; margin-bottom: 9px; padding: 11px; }
.preview-event > span { align-items: center; background: #fff0ed; border-radius: 10px; color: #ef6471; display: flex; height: 35px; justify-content: center; width: 35px; }
.preview-event:nth-of-type(2) > span { background: #f1edff; color: #8068e8; }
.preview-event > div { display: flex; flex-direction: column; }
.preview-event strong { font-size: 0.7rem; }
.preview-event small, .preview-event time { color: #948b96; font-size: 0.52rem; }
.preview-tabs { bottom: 25px; display: grid; grid-template-columns: repeat(4, 1fr); left: 18px; position: absolute; right: 18px; }
.preview-tabs span { align-items: center; color: #9e94a0; display: flex; flex-direction: column; font-size: 0.85rem; gap: 2px; }
.preview-tabs span:first-child { color: #ef6171; }
.preview-tabs small { font-size: 0.48rem; }

.preview-bubble {
  align-items: center;
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(76, 34, 73, 0.16);
  display: flex;
  gap: 9px;
  padding: 12px;
  position: absolute;
  z-index: 3;
}

.bubble-voice { left: -20px; top: 120px; transform: rotate(-3deg); }
.bubble-voice > span { color: #ef6471; }
.bubble-voice strong { font-size: 0.68rem; }
.bubble-voice i { align-items: center; background: #def7e9; border-radius: 50%; color: #2eaa69; display: flex; font-size: 0.6rem; font-style: normal; height: 24px; justify-content: center; width: 24px; }
.bubble-sync { bottom: 70px; right: -15px; transform: rotate(2deg); }
.bubble-sync > span { align-items: center; background: #8068e8; border: 2px solid white; border-radius: 50%; color: white; display: flex; font-size: 0.5rem; height: 27px; justify-content: center; margin-right: -15px; width: 27px; }
.bubble-sync > span:nth-child(2) { background: #ef6471; margin-right: 2px; }
.bubble-sync strong { font-size: 0.66rem; }
.bubble-sync i { background: #39b977; border-radius: 50%; height: 7px; width: 7px; }
.preview-spark { color: white; position: absolute; }
.preview-spark-one { font-size: 2rem; right: 6%; top: 11%; }
.preview-spark-two { bottom: 18%; color: #7750d7; left: 5%; }

.contact {
  align-items: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.28), transparent 42%),
    linear-gradient(150deg, #20152d, #110d18);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 36px;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  overflow: hidden;
  padding: clamp(80px, 11vw, 140px) 24px;
  position: relative;
  text-align: center;
}

.contact-glow { background: radial-gradient(circle, rgba(255, 77, 125, 0.32), transparent 68%); height: 600px; left: 50%; position: absolute; top: -330px; transform: translateX(-50%); width: 760px; }
.contact > *:not(.contact-glow) { position: relative; z-index: 2; }
.contact .eyebrow { margin-bottom: 24px; }
.contact h2 { margin: 0 0 26px; }
.contact > p:not(.eyebrow) { color: #aaa0b2; line-height: 1.65; max-width: 610px; }
.button-white { background: white; color: var(--ink); margin-top: 20px; }
.button-white:hover { box-shadow: 0 20px 50px rgba(184, 255, 90, 0.12); }

.site-footer {
  align-items: center;
  color: #827887;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto 1fr;
  padding: 24px 2px 42px;
}

.footer-brand .company-mark { height: 32px; width: 32px; }
.footer-brand .company-name { font-size: 0.87rem; }
.site-footer > p { font-size: 0.64rem; margin: 0; text-align: center; }
.site-footer nav { display: flex; gap: 18px; justify-self: end; }
.site-footer nav a { font-size: 0.67rem; }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal-delay-short { transition-delay: 90ms; }
.reveal-delay { transition-delay: 170ms; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .hero { grid-template-columns: minmax(0, 0.9fr) minmax(400px, 0.8fr); }
  .orbit-product { right: -20px; }
  .service-card { min-height: 520px; }
  .product-card { grid-template-columns: 0.92fr 1.08fr; }
}

@media (max-width: 880px) {
  .shell,
  .site-header { width: calc(100% - 30px); }
  .hero { grid-template-columns: 1fr; padding-bottom: 120px; text-align: center; }
  .hero-copy { margin-inline: auto; max-width: 740px; }
  .eyebrow, .hero-actions, .hero-proof { justify-content: center; }
  .hero-lede { margin-inline: auto; }
  .hero-art { margin-inline: auto; width: min(100%, 650px); }
  .section-intro { grid-template-columns: 1fr; text-align: center; }
  .section-intro .eyebrow { justify-content: center; }
  .section-intro > p:last-child { margin-inline: auto; max-width: 600px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-ai { grid-column: 1 / -1; min-height: 510px; }
  .approach-panel { grid-template-columns: 1fr; }
  .approach-copy { text-align: center; }
  .approach-copy .eyebrow { justify-content: center; }
  .product-card { grid-template-columns: 1fr; }
  .product-copy { margin-inline: auto; max-width: 680px; text-align: center; }
  .product-brand, .product-status, .product-points, .product-actions { justify-content: center; }
  .product-preview { min-height: 690px; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; }
  .site-footer nav { justify-self: center; }
}

@media (max-width: 650px) {
  .shell,
  .site-header { width: calc(100% - 22px); }
  .site-header { border-radius: 16px; padding: 8px 8px 8px 11px; top: 10px; }
  .company-name { font-size: 0.9rem; }
  .company-mark { border-radius: 10px; height: 34px; width: 34px; }
  .site-nav { display: none; }
  .header-cta { font-size: 0.66rem; padding: 11px; }
  .header-cta span { display: none; }
  .hero { min-height: 0; padding-bottom: 95px; padding-top: 132px; }
  h1 { font-size: clamp(4.15rem, 21vw, 6rem); }
  h2 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .hero-lede { font-size: 0.96rem; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-proof { font-size: 0.55rem; }
  .hero-art { min-height: 560px; transform: scale(0.88); transform-origin: center top; width: 112%; }
  .ring-one { height: 450px; width: 450px; }
  .ring-two { height: 340px; width: 340px; }
  .orbit-core { height: 250px; padding: 40px; width: 250px; }
  .orbit-core strong { font-size: 2rem; }
  .orbit-card { min-width: 190px; }
  .orbit-product { right: -7px; top: 76px; }
  .orbit-builds { bottom: 52px; left: -22px; }
  .orbit-systems { bottom: -6px; right: -6px; }
  .ticker { padding-block: 14px; }
  .studio { padding-top: 120px; }
  .section-intro { margin-bottom: 40px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-ai { border-radius: 24px; grid-column: auto; min-height: 510px; }
  .approach-panel { border-radius: 25px; gap: 44px; padding: 35px 23px; }
  .process-list li { grid-template-columns: auto 1fr; }
  .process-list li > i { display: none; }
  .product-card { border-radius: 25px; min-height: 0; padding: 34px 20px 0; }
  .product-brand { align-items: center; }
  .product-copy h2 { font-size: clamp(3.2rem, 15vw, 4.55rem); }
  .product-actions { flex-direction: column; }
  .store-link { justify-content: center; width: 100%; }
  .product-preview { min-height: 635px; }
  .preview-phone { bottom: -118px; height: 650px; transform: translateX(-50%) rotate(4deg); width: min(340px, 92vw); }
  .bubble-voice { left: -8px; top: 100px; }
  .bubble-sync { bottom: 64px; right: -8px; }
  .contact { border-radius: 25px; padding-inline: 20px; }
  .contact .button { font-size: 0.75rem; }
  .site-footer nav { flex-wrap: wrap; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
