:root {
  --navy:       #0d1b2e;
  --navy-mid:   #132239;
  --navy-light: #1c3152;
  --pink:       #e8265e;
  --pink-light: #f05a88;
  --pink-dark:  #b81d4b;
  --white:      #ffffff;
  --off-white:  #e8eaf0;
  --muted:      #7a8fa8;
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:where(a, button, .btn, .contact-card, input, [tabindex]):focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
  border-radius: 6px;
}
.btn:focus-visible {
  outline-offset: 4px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  background: var(--navy);
}

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
::selection { background: var(--pink); color: #fff; }

/* ── NOISE OVERLAY ── */
.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  background: rgba(13, 27, 46, 0.72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
}
.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 14px;
}
.nav-links {
  display: flex; align-items: center; gap: 34px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.nav-links a {
  color: var(--off-white);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--pink); }
.nav-links a.is-active {
  color: var(--pink);
}
.nav-cta {
  padding: 8px 18px;
  border: 1px solid rgba(232, 38, 94, 0.45);
  border-radius: 99px;
  color: var(--pink) !important;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.nav-cta:hover {
  background: rgba(232, 38, 94, 0.12);
  border-color: var(--pink);
}

@media (max-width: 720px) {
  .nav { padding: 14px 20px; }
  .nav-links { gap: 18px; font-size: 12px; }
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 140px 40px 80px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 50% 42%, rgba(232, 38, 94, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 80% 80%, rgba(232, 38, 94, 0.08) 0%, transparent 70%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 900px;
  display: flex; flex-direction: column; align-items: center;
}
.hero-logo {
  margin-bottom: 44px;
  animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.1s both;
}
.eyebrow {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 24px;
  animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.22s both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 92px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
  animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 1.35s both;
}
.hero-title em {
  color: var(--pink);
  font-style: italic;
  font-weight: 700;
}
.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--off-white);
  font-weight: 300;
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 42px;
  animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 1.5s both;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  margin-bottom: 64px;
  animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 1.65s both;
}
.hero-short {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 180px;
  animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.68s both;
}

/* ── BUTTONS ── */
.btn {
  padding: 14px 28px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: none;
  display: inline-block;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn--primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(232, 38, 94, 0.35);
}
.btn--primary:hover {
  background: var(--pink-light);
  transform: translateY(-1px);
  box-shadow: 0 10px 36px rgba(232, 38, 94, 0.5);
}
.btn--secondary {
  background: transparent;
  border: 1px solid var(--pink);
  color: var(--pink);
}
.btn--secondary:hover {
  background: rgba(232, 38, 94, 0.1);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--off-white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ── SECTIONS ── */
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 48px;
  position: relative;
  z-index: 1;
}
.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 14px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--pink);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  max-width: 900px;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  max-width: 680px;
  line-height: 1.8;
  margin-bottom: 72px;
}
.divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, rgba(232,38,94,0.55) 0%, rgba(232,38,94,0.08) 55%, transparent 100%);
  margin: 0 48px;
}

/* ── PILLARS (What we do) ── */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.pillar {
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 36px 32px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.pillar:hover {
  border-color: rgba(232, 38, 94, 0.35);
  transform: translateY(-2px);
}
.pillar-icon {
  font-size: 26px;
  color: var(--pink);
  margin-bottom: 18px;
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.pillar p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

/* ── PORTFOLIO ── */
.portfolio {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.product {
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.product:hover {
  border-color: rgba(232, 38, 94, 0.35);
  transform: translateY(-2px);
}
.product--feature {
  background:
    radial-gradient(ellipse 60% 70% at 85% 10%, rgba(232, 38, 94, 0.14) 0%, transparent 60%),
    var(--navy-mid);
  border-color: rgba(232, 38, 94, 0.28);
  padding: 48px;
}
.product--feature:hover {
  box-shadow: 0 16px 48px rgba(232, 38, 94, 0.15);
}
.product-head {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 16px;
}
.product-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
}
.product-tag--muted { color: var(--muted); }
.badge {
  padding: 5px 14px;
  border-radius: 99px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.badge--primary {
  background: var(--pink);
  color: var(--white);
}
.product-name {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.product--feature .product-name { font-size: clamp(32px, 3.6vw, 42px); }
.product-desc {
  color: var(--off-white);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 640px;
}
.product--soon .product-desc { color: var(--muted); }
.product-points {
  list-style: none;
  margin-bottom: 28px;
}
.product-points li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--off-white);
  font-size: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.product-points li:first-child { border-top: none; }
.product-points li::before {
  content: '';
  position: absolute;
  left: 0; top: 17px;
  width: 16px; height: 1px;
  background: var(--pink);
}
.product-cta { margin-top: auto; }
.product--soon {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(19, 34, 57, 0.4);
}
.product--soon .product-name { color: var(--off-white); }

/* ── VALUES ── */
.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 720px) {
  .values { grid-template-columns: 1fr; }
}
.value {
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 24px;
  row-gap: 10px;
  align-items: start;
}
.value-num {
  grid-column: 1;
  grid-row: 1 / span 2;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--pink);
  padding-top: 4px;
}
.value h4 {
  grid-column: 2;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.value p {
  grid-column: 2;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 44ch;
}

/* ── CONTACT ── */
.contact {
  padding-bottom: 140px;
}
.contact-inner {
  background:
    radial-gradient(ellipse 50% 80% at 50% 0%, rgba(232, 38, 94, 0.14) 0%, transparent 65%),
    var(--navy-mid);
  border: 1px solid rgba(232, 38, 94, 0.22);
  border-radius: 20px;
  padding: 80px 56px;
}
@media (max-width: 720px) {
  .contact-inner { padding: 56px 28px; }
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.contact-card {
  background: rgba(13, 27, 46, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px 28px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.contact-card:hover:not(.contact-card--static) {
  border-color: var(--pink);
  transform: translateY(-1px);
}
.contact-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.contact-value {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  word-break: break-word;
  user-select: text;
}

.contact-action {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

/* ── FOOTER ── */
.footer {
  padding: 80px 48px 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
}
.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand .footer-mark { width: 44px; height: 44px; }
.footer-wordmark {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.footer-tag {
  font-size: 13px;
  color: var(--pink);
  margin: 0;
}
.footer-tag em { font-style: italic; }
.footer-blurb {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
  margin-top: 6px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 6px;
}
.footer-col a,
.footer-col span {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.18s ease;
  line-height: 1.5;
}
.footer-col a:hover { color: var(--pink); }
.footer-legal {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 28px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
@media (max-width: 760px) {
  .footer { padding: 64px 24px 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-blurb { max-width: none; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes drawCircle {
  from { stroke-dashoffset: 250; }
  to   { stroke-dashoffset: 0; }
}
@keyframes starAppear {
  0%   { opacity: 0; transform: translate(70px, 76px) scale(0.4); }
  60%  { opacity: 1; transform: translate(70px, 76px) scale(1.08); }
  100% { opacity: 1; transform: translate(70px, 76px) scale(1); }
}
@keyframes starBreathe {
  0%, 100% { opacity: 0.9; }
  50%      { opacity: 1; }
}
@keyframes heroBloom {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.04); }
}

#logo-hero #hc-1,
#logo-hero #hc-2,
#logo-hero #hc-3 {
  stroke-dasharray: 250;
  stroke-dashoffset: 250;
  animation: drawCircle 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
#logo-hero #hc-1 { animation-delay: 0.15s; }
#logo-hero #hc-2 { animation-delay: 0.35s; }
#logo-hero #hc-3 { animation-delay: 0.55s; }

#logo-hero #hs-star {
  opacity: 0;
  animation:
    starAppear 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.15s forwards,
    starBreathe 4.2s ease-in-out 2.6s infinite;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.hero-glow {
  animation: heroBloom 6s ease-in-out infinite;
  transform-origin: center;
  will-change: transform, opacity;
}

.hero-title,
.section-title,
.product-name,
.value h4,
.footer-col h5 {
  text-wrap: balance;
}
.hero-sub,
.section-desc,
.product-desc,
.value p,
.footer-blurb {
  text-wrap: pretty;
}
.contact-value,
.badge {
  font-variant-numeric: tabular-nums;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  #logo-hero #hc-1,
  #logo-hero #hc-2,
  #logo-hero #hc-3 {
    stroke-dasharray: none !important;
    stroke-dashoffset: 0 !important;
  }
  #logo-hero #hs-star {
    opacity: 1 !important;
    transform: translate(70px, 76px) !important;
  }
}

@media (max-width: 720px) {
  .section { padding: 80px 24px; }
  .divider { margin: 0 24px; }
  .hero { padding: 120px 24px 60px; }
  .product, .product--feature { padding: 32px 24px; }
}
