:root {
  --bg: #120f21;
  --bg-2: #1a1330;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255,255,255,0.08);
  --text: #f8f4ff;
  --muted: #c6bdd9;
  --accent: #ff9cc3;
  --accent-2: #ffd2a8;
  --accent-3: #a7f1e3;
  --shadow: 0 28px 60px rgba(0,0,0,0.28);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Outfit', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 12%, rgba(255,156,195,0.22), transparent 24%),
    radial-gradient(circle at 82% 10%, rgba(167,241,227,0.12), transparent 18%),
    radial-gradient(circle at 78% 78%, rgba(255,210,168,0.12), transparent 18%),
    linear-gradient(160deg, #130f23 0%, #21153a 45%, #0e0b1d 100%);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.backdrop-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(255,255,255,.65), transparent 85%);
}

.orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(26px);
  pointer-events: none;
  opacity: .7;
}
.orb-a {
  width: 360px;
  height: 360px;
  top: -80px;
  left: -60px;
  background: rgba(255, 156, 195, 0.22);
  animation: floaty 14s ease-in-out infinite;
}
.orb-b {
  width: 280px;
  height: 280px;
  top: 240px;
  right: -80px;
  background: rgba(255, 210, 168, 0.14);
  animation: floaty 18s ease-in-out infinite reverse;
}
.orb-c {
  width: 300px;
  height: 300px;
  bottom: 80px;
  left: 10%;
  background: rgba(167, 241, 227, 0.12);
  animation: floaty 16s ease-in-out infinite;
}

.site-header,
.site-footer,
.section,
.nf-wrapper { position: relative; z-index: 1; }

.site-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.compact-header { padding-bottom: 8px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand-badge {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  background: linear-gradient(140deg, var(--accent), #f98ab7 50%, var(--accent-2));
  color: #241126;
  box-shadow: 0 16px 34px rgba(249, 138, 183, 0.24);
}
.brand-text strong,
.hero h1,
.section-heading h2,
.panel h2,
.contact-copy h2,
.policy-hero h1,
.nf-wrapper h1,
.service-card h3,
.glass-card h3,
.metric-card strong,
.roadmap h3,
.policy-card h2 {
  font-family: 'Space Grotesk', sans-serif;
}
.brand-text {
  display: grid;
  gap: 2px;
}
.brand-text strong { font-size: .98rem; }
.brand-text em {
  font-style: normal;
  color: var(--muted);
  font-size: .88rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.site-nav a {
  color: var(--muted);
  font-weight: 600;
  position: relative;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
}
.site-nav a:hover::after { transform: scaleX(1); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #271325;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
  box-shadow: 0 18px 36px rgba(255, 156, 195, 0.18);
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 42px rgba(255, 156, 195, 0.24);
}
.button-secondary,
.button-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
  backdrop-filter: blur(12px);
}
.button-small { min-height: 44px; padding-inline: 18px; }

.section,
.nf-wrapper {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 20px 44px;
}
.hero {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 46px;
  align-items: center;
  padding-top: 38px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--line);
  color: var(--accent);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero h1,
.section-heading h2,
.panel h2,
.contact-copy h2,
.policy-hero h1,
.nf-wrapper h1 {
  line-height: 1.02;
  letter-spacing: -.03em;
  margin: 18px 0 16px;
}
.hero h1 { font-size: clamp(2.7rem, 5vw, 5rem); }
.section-heading h2,
.panel h2,
.contact-copy h2,
.policy-hero h1 { font-size: clamp(2.1rem, 4vw, 3.35rem); }
.lead,
.panel p,
.section-heading p,
.contact-copy p,
.policy-hero p,
.policy-card p,
.nf-wrapper p,
.metric-card p,
.glass-card p,
.service-card p,
.roadmap p,
.feature-points p,
.insight-chip p,
.contact-grid p {
  line-height: 1.75;
  color: var(--muted);
  font-size: 1.03rem;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.hero-list li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  color: var(--muted);
}
.hero-list span {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  margin-top: 6px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 6px rgba(255, 156, 195, 0.08);
}

.hero-visual { position: relative; }
.visual-frame {
  min-height: 640px;
  position: relative;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.visual-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 65% 20%, rgba(255,156,195,0.13), transparent 26%),
              radial-gradient(circle at 30% 80%, rgba(167,241,227,0.08), transparent 20%);
}
.phone-main,
.phone-secondary {
  position: absolute;
  border-radius: 30px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.28);
  animation: bob 7s ease-in-out infinite;
}
.phone-main {
  width: min(48%, 270px);
  left: 9%;
  top: 10%;
  z-index: 2;
}
.phone-secondary {
  width: min(48%, 270px);
  right: 8%;
  bottom: 10%;
  animation-delay: .5s;
}
.insight-chip {
  position: absolute;
  z-index: 3;
  max-width: 250px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(14, 11, 29, 0.58);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
}
.insight-chip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.02rem;
}
.insight-chip span {
  color: var(--accent);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.chip-one { right: 4%; top: 10%; }
.chip-two { left: 6%; bottom: 8%; }

.metrics-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.metric-card,
.panel,
.glass-card,
.service-card,
.contact-card,
.policy-card,
.roadmap article {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.metric-card {
  border-radius: 26px;
  padding: 28px;
}
.metric-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 700;
}
.metric-card strong {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.studio-grid,
.showcase-grid,
.roadmap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}
.panel {
  border-radius: var(--radius-xl);
  padding: 34px;
}
.highlight-panel {
  background: linear-gradient(180deg, rgba(255, 156, 195, 0.09), rgba(167, 241, 227, 0.05));
}
.feature-points {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}
.feature-points article {
  padding: 18px 0 0;
  border-top: 1px solid var(--line-soft);
}
.feature-points article:first-child { border-top: 0; padding-top: 0; }
.feature-points strong,
.glass-card h3,
.service-card h3,
.contact-grid h3,
.roadmap h3,
.policy-card h2 {
  font-size: 1.18rem;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 26px;
}
.feature-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.glass-card,
.service-card {
  border-radius: 26px;
  padding: 26px;
  transition: transform .22s ease, border-color .22s ease;
}
.glass-card:hover,
.service-card:hover,
.metric-card:hover,
.roadmap article:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 156, 195, 0.34);
}
.glass-card h3,
.service-card h3 { margin: 0 0 10px; }

.showcase-grid {
  margin-top: 26px;
}
.showcase-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 26px;
}
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 600;
}
.showcase-phones {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.showcase-phones img {
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 44px rgba(0,0,0,0.3);
  transition: transform .25s ease;
}
.showcase-phones img:hover { transform: translateY(-5px) scale(1.01); }

.roadmap {
  display: grid;
  gap: 18px;
}
.roadmap article {
  border-radius: 24px;
  padding: 24px;
}
.roadmap span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,156,195,0.18), rgba(255,210,168,0.15));
  color: var(--accent);
  font-weight: 800;
}

.contact-card {
  border-radius: 34px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
}
.contact-grid {
  display: grid;
  gap: 16px;
}
.contact-grid article {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
}
.contact-grid h3 { margin: 0 0 8px; }
.contact-grid a { color: var(--accent-2); font-weight: 700; }

.policy-layout {
  max-width: 980px;
  padding-top: 24px;
}
.policy-hero { margin-bottom: 24px; }
.policy-effective { color: var(--text); font-weight: 700; }
.policy-card {
  border-radius: 30px;
  padding: 34px;
}
.policy-card section + section {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}
.policy-card h2 {
  margin: 0 0 10px;
}
.policy-card a { color: var(--accent-2); font-weight: 700; }

.site-footer {
  max-width: var(--max);
  margin: 6px auto 0;
  padding: 16px 20px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}
.site-footer strong {
  display: block;
  color: var(--text);
  margin-bottom: 6px;
}
.site-footer p { margin: 0; }
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--accent);
  font-weight: 700;
}

.nf-wrapper {
  min-height: calc(100vh - 170px);
  display: grid;
  place-content: center;
  text-align: center;
}
.nf-wrapper .button { margin-inline: auto; margin-top: 12px; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@keyframes bob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes floaty {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(14px,-16px,0) scale(1.04); }
}

@media (max-width: 1100px) {
  .hero,
  .studio-grid,
  .showcase-grid,
  .roadmap-grid,
  .contact-card { grid-template-columns: 1fr; }
  .metrics-wrap,
  .feature-grid,
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .visual-frame { min-height: 560px; }
}

@media (max-width: 860px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
  }
  .site-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    order: 3;
  }
  .metrics-wrap,
  .feature-grid,
  .services-grid,
  .showcase-phones { grid-template-columns: 1fr; }
  .panel,
  .contact-card,
  .policy-card,
  .metric-card,
  .glass-card,
  .service-card { padding: 24px; }
  .visual-frame {
    min-height: 760px;
  }
  .phone-main {
    left: 50%;
    transform: translateX(-50%);
    top: 8%;
    width: min(70%, 320px);
  }
  .phone-secondary {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 16%;
    width: min(70%, 320px);
  }
  .chip-one, .chip-two {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(86%, 320px);
    max-width: none;
  }
  .chip-one { top: 2%; }
  .chip-two { bottom: 3%; }
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header,
  .site-footer,
  .section,
  .nf-wrapper { padding-left: 16px; padding-right: 16px; }
  .button,
  .button-small { width: 100%; }
  .hero-actions { flex-direction: column; }
  .hero h1 { font-size: 2.4rem; }
  .visual-frame { min-height: 720px; }
}
