/* ============================================================
   Domo Invite — landing page styles
   Recreated from the Claude Design handoff (Domo Invite.dc.html)
   ============================================================ */

:root {
  --ink: #05072F;
  --blue: #3215FF;
  --violet: #6A24FF;
  --pink: #FF3FA6;
  --orange: #FF8A00;
  --gold: #FFB800;

  --text-muted: #54577a;
  --text-soft: #7c7fa0;
  --text-lilac: #9a86c4;

  --line: #efe9fb;
  --line-2: #e7ddfb;
  --line-3: #f3eefb;
  --field-line: #e4ddf3;
  --field-bg: #fbf9ff;

  --grad: linear-gradient(100deg, #3215FF, #6A24FF, #FF3FA6, #FF8A00);
  --grad-full: linear-gradient(100deg, #3215FF, #6A24FF, #FF3FA6, #FF8A00, #FFB800);

  --maxw: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

input, select, textarea { font-family: inherit; }

img { max-width: 100%; }

.page { overflow-x: hidden; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

/* shared gradient text */
.grad-text {
  background: var(--grad-full);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- reveal-on-scroll ---------- */
@keyframes revealIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
.reveal { opacity: 1; }

/* native scroll-driven animation where supported */
@supports (animation-timeline: view()) {
  .reveal {
    animation: revealIn .01s linear both;
    animation-timeline: view();
    animation-range: entry 4% cover 26%;
  }
}
/* JS fallback for browsers without scroll-driven animations */
.js-reveal .reveal { opacity: 0; }
.js-reveal .reveal.is-in {
  opacity: 1;
  animation: revealIn .7s cubic-bezier(.2, .7, .2, 1) both;
  animation-delay: var(--reveal-delay, 0s);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .js-reveal .reveal { opacity: 1 !important; animation: none !important; }
  .phone, .floatcard, .sparkle, .hero__glow--pink { animation: none !important; }
}

/* float / twinkle / drift animations */
@keyframes floatY  { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes floatY2 { 0%,100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-12px) rotate(-3deg); } }
@keyframes twinkle { 0%,100% { opacity: .25; transform: scale(.8); } 50% { opacity: 1; transform: scale(1.15); } }
@keyframes drift   { 0%,100% { transform: translate(0, 0); } 50% { transform: translate(24px, -18px); } }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn--pill { border-radius: 999px; }
.btn--grad {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(106, 36, 255, .6);
}
.btn--outline {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line-2);
}
.btn--lg { padding: 16px 30px; font-size: 16.5px; border-radius: 999px; }
.btn--lg.btn--grad { box-shadow: 0 16px 38px -12px rgba(106, 36, 255, .6); }
.btn--lg.btn--outline { padding: 16px 28px; }
.btn--grad:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -12px rgba(106, 36, 255, .7); }
.btn--outline:hover { transform: translateY(-2px); border-color: #d9c9fb; }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  background: rgba(255, 255, 255, .78);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand__mark { height: 34px; width: auto; display: block; }
.brand__name { font-size: 21px; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }

.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__link { text-decoration: none; color: #3a3d5c; font-weight: 600; font-size: 15px; }
.nav__link:hover { color: var(--violet); }
.nav__cta { padding: 11px 22px; font-size: 15px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; }
.hero__glow { position: absolute; border-radius: 50%; pointer-events: none; }
.hero__glow--pink {
  top: -160px; right: -180px; width: 760px; height: 760px;
  background: radial-gradient(circle at 35% 35%, rgba(255,63,166,.20), rgba(106,36,255,.16) 38%, rgba(50,21,255,.10) 60%, rgba(255,255,255,0) 72%);
  filter: blur(8px);
  animation: drift 16s ease-in-out infinite;
}
.hero__glow--gold {
  top: 60px; left: -220px; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(255,138,0,.12), rgba(255,184,0,.08) 45%, rgba(255,255,255,0) 70%);
}
.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 72px 32px 96px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 15px;
  border-radius: 999px;
  background: #F4ECFF;
  border: 1px solid var(--line-2);
  margin-bottom: 26px;
}
.eyebrow--dark {
  background: rgba(255, 255, 255, .1);
  border: none;
  padding: 7px 14px;
  gap: 8px;
  margin-bottom: 22px;
}
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: linear-gradient(100deg, #FF3FA6, #FF8A00);
}
.eyebrow__text { font-size: 12.5px; font-weight: 700; letter-spacing: .16em; color: var(--violet); }
.eyebrow__text--light { font-size: 12px; letter-spacing: .14em; color: #e9deff; }

.hero__title {
  font-size: 62px;
  line-height: 1.04;
  letter-spacing: -.03em;
  font-weight: 800;
  margin: 0 0 22px;
}
.hero__lede {
  font-size: 19.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 34px;
  max-width: 520px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero__social { display: flex; align-items: center; gap: 14px; margin-top: 34px; }
.avatars { display: flex; }
.avatar { width: 34px; height: 34px; border-radius: 50%; border: 2px solid #fff; }
.avatar--1 { background: linear-gradient(135deg, #6A24FF, #FF3FA6); margin-right: -10px; }
.avatar--2 { background: linear-gradient(135deg, #FF8A00, #FFB800); margin-right: -10px; }
.avatar--3 { background: linear-gradient(135deg, #3215FF, #6A24FF); margin-right: -10px; }
.avatar--4 { background: linear-gradient(135deg, #FF3FA6, #FF8A00); }
.hero__social-text { font-size: 14.5px; color: var(--text-muted); font-weight: 600; }
.hero__social-text strong { color: var(--ink); }

/* hero artwork / phone */
.hero__art { position: relative; display: flex; justify-content: center; }
.sparkle { position: absolute; z-index: 5; }
.sparkle--lg { top: -6px; left: 8%; animation: twinkle 3.2s ease-in-out infinite; }
.sparkle--sm { bottom: 46px; right: 2%; animation: twinkle 2.6s ease-in-out infinite .6s; }

.phone { position: relative; width: 312px; animation: floatY 7s ease-in-out infinite; }
.phone__frame {
  background: linear-gradient(160deg, #0a0c3a, #1a0b4d);
  padding: 13px;
  border-radius: 48px;
  box-shadow: 0 50px 90px -30px rgba(50,21,255,.5), 0 12px 30px -10px rgba(5,7,47,.4);
}
.phone__screen {
  background: #fff;
  border-radius: 37px;
  overflow: hidden;
  height: 606px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.phone__wash {
  position: absolute; top: 0; left: 0; right: 0; height: 170px;
  background: linear-gradient(160deg, rgba(244,236,255,.9), rgba(255,255,255,0));
}

.invite {
  position: relative;
  padding: 48px 30px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.invite__ring {
  width: 66px; height: 66px; border-radius: 50%; padding: 2px;
  background: linear-gradient(135deg, #6A24FF, #FF3FA6, #FF8A00);
}
.invite__monogram {
  width: 100%; height: 100%; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 25px; font-weight: 600; color: var(--ink);
}
.invite__amp { color: var(--pink); margin: 0 1px; }
.invite__kicker { margin: 24px 0 0; font-size: 10.5px; letter-spacing: .28em; color: var(--text-lilac); font-weight: 700; }
.invite__names {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; line-height: 1.05; font-weight: 600; font-style: italic;
  margin: 14px 0 0; color: var(--ink);
}
.invite__rule { display: flex; align-items: center; gap: 10px; margin: 18px 0; }
.invite__rule-line { height: 1px; width: 36px; }
.invite__rule-line--l { background: linear-gradient(90deg, transparent, #dcd2f3); }
.invite__rule-line--r { background: linear-gradient(90deg, #dcd2f3, transparent); }
.invite__line { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 18px; color: var(--text-muted); margin: 0; }
.invite__date { margin: 20px 0 4px; font-size: 15px; font-weight: 800; letter-spacing: .04em; color: var(--ink); }
.invite__venue { margin: 0; font-size: 13px; color: var(--violet); font-weight: 700; }
.invite__footer { margin-top: auto; width: 100%; }
.invite__rsvp { padding: 14px; border-radius: 16px; background: var(--grad); color: #fff; font-weight: 700; font-size: 15px; }
.invite__reply { margin: 11px 0 0; font-size: 11px; color: var(--text-lilac); font-weight: 600; }

.floatcard {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 13px 15px;
  box-shadow: 0 22px 44px -16px rgba(5,7,47,.28);
}
.floatcard--rsvp {
  top: 54px; left: -58px;
  display: flex; align-items: center; gap: 11px;
  animation: floatY2 6s ease-in-out infinite .4s;
}
.floatcard--stat {
  bottom: 30px; right: -52px;
  animation: floatY2 6.6s ease-in-out infinite 1.1s;
}
.floatcard__icon {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.floatcard__icon--blue { background: linear-gradient(135deg, #3215FF, #6A24FF); }
.floatcard__title { margin: 0; font-size: 12px; font-weight: 800; color: var(--ink); }
.floatcard__sub { margin: 1px 0 0; font-size: 11px; color: var(--text-soft); }
.floatcard__label { margin: 0; font-size: 11px; color: var(--text-soft); font-weight: 700; }
.floatcard__big { margin: 3px 0 0; font-size: 22px; font-weight: 800; color: var(--ink); }
.floatcard__delta { font-size: 12px; color: #1F8A5B; }

/* ============================================================
   Trust bar
   ============================================================ */
.trust { border-top: 1px solid var(--line-3); border-bottom: 1px solid var(--line-3); background: #fff; }
.trust__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 30px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust__label { font-size: 13.5px; font-weight: 700; letter-spacing: .04em; color: var(--text-lilac); }
.trust__stats { display: flex; gap: 46px; flex-wrap: wrap; }
.stat__num { font-size: 24px; font-weight: 800; color: var(--ink); }
.stat__label { font-size: 13.5px; color: var(--text-soft); margin-left: 8px; font-weight: 600; }

/* ============================================================
   Section heads (shared)
   ============================================================ */
.section-head { max-width: 680px; margin-bottom: 54px; }
.section-head--center { text-align: center; max-width: 660px; margin: 0 auto 64px; }
.overline { font-size: 13px; font-weight: 700; letter-spacing: .18em; color: var(--violet); margin: 0 0 14px; }
.section-title { font-size: 46px; line-height: 1.08; letter-spacing: -.025em; font-weight: 800; margin: 0 0 16px; }
.section-head--center .section-title { margin: 0; }
.section-lede { font-size: 18.5px; line-height: 1.6; color: var(--text-muted); margin: 0; }

/* ============================================================
   Designs grid
   ============================================================ */
.designs { padding: 104px 0 100px; }
.designs__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.design-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 1px 3px rgba(5,7,47,.05);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.design-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px -24px rgba(106,36,255,.35);
  border-color: #e0d3fb;
}
.design-card__art {
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  position: relative;
}
.design-card__art--ivory   { background: linear-gradient(160deg, #fbf7ff, #f3ecff); }
.design-card__art--midnight { background: linear-gradient(160deg, #0a0c3a, #2a0f5e); }
.design-card__art--gold    { background: linear-gradient(160deg, #fff4ec, #ffe9de); }
.design-card__art--lilac   { background: linear-gradient(160deg, #f6f1ff, #efe6ff); }
.design-card__star { position: absolute; top: 22px; right: 24px; }

.design-card__kicker {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 14px; letter-spacing: .18em; color: var(--text-lilac); margin: 0 0 10px;
}
.design-card__kicker--light { letter-spacing: .16em; color: #c9b6ff; }
.design-card__kicker--amber { letter-spacing: .16em; color: #d08a55; }
.design-card__names {
  font-family: 'Cormorant Garamond', serif; font-size: 31px; font-weight: 600;
  color: var(--ink); margin: 0; line-height: 1.1;
}
.design-card__names--light { color: #fff; }
.design-card__names--brown { color: #7a3b12; }
.design-card__names--sm { font-size: 27px; }
.design-card__rule { width: 30px; height: 1px; background: #cdbef0; margin: 12px auto; }
.design-card__rule--grad { background: linear-gradient(90deg, #FF3FA6, #FF8A00); }
.design-card__rule--amber { background: #e6a877; }
.design-card__date { font-size: 11px; letter-spacing: .2em; font-weight: 700; margin: 0; }
.design-card__date--violet { color: var(--violet); }
.design-card__date--amber { color: #d2691e; }
.design-card__date--mt { margin: 12px 0 0; }
.design-card__crest {
  width: 46px; height: 46px; border-radius: 50%; margin: 0 auto 14px; padding: 2px;
  background: linear-gradient(135deg, #6A24FF, #FF3FA6);
}
.design-card__crest-inner {
  width: 100%; height: 100%; border-radius: 50%; background: #f6f1ff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 600; color: var(--violet);
}
.design-card__body { padding: 18px 20px; }
.design-card__title { margin: 0; font-weight: 800; font-size: 16px; }
.design-card__desc { margin: 4px 0 0; font-size: 13.5px; color: var(--text-soft); font-weight: 600; }

/* ============================================================
   How it works
   ============================================================ */
.how { padding: 100px 0; background: #F4ECFF; position: relative; overflow: hidden; }
.how__glow {
  position: absolute; bottom: -260px; left: -160px; width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(106,36,255,.12), rgba(255,255,255,0) 68%);
}
.how__container { position: relative; }
.how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; }

.step { background: #fff; border-radius: 22px; padding: 34px 30px; border: 1px solid #ece2fb; }
.step__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.step__icon {
  width: 52px; height: 52px; border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
}
.step__icon--violet { background: linear-gradient(135deg, #eee7ff, #f8f4ff); }
.step__icon--pink   { background: linear-gradient(135deg, #ffe9f5, #fff4ec); }
.step__icon--orange { background: linear-gradient(135deg, #fff1df, #fff8ee); }
.step__num { font-family: 'Cormorant Garamond', serif; font-size: 46px; font-weight: 600; line-height: 1; }
.step__num--violet { color: #e3d6fb; }
.step__num--pink   { color: #fbd6e9; }
.step__num--orange { color: #fbe3c4; }
.step__title { font-size: 21px; font-weight: 800; margin: 0 0 8px; }
.step__desc { font-size: 15.5px; line-height: 1.6; color: var(--text-muted); margin: 0; }

/* ============================================================
   Contact
   ============================================================ */
.contact {
  padding: 104px 0;
  background: linear-gradient(165deg, #0a0c3a 0%, #190b4d 60%, #2c1066 100%);
  position: relative;
  overflow: hidden;
}
.contact__glow { position: absolute; border-radius: 50%; }
.contact__glow--pink {
  top: -160px; right: -140px; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(255,63,166,.30), rgba(106,36,255,.16) 50%, rgba(255,255,255,0) 72%);
}
.contact__glow--gold {
  bottom: -200px; left: -160px; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(255,138,0,.16), rgba(255,184,0,.08) 48%, rgba(255,255,255,0) 72%);
}
.contact__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.contact__title { font-size: 44px; line-height: 1.1; letter-spacing: -.025em; font-weight: 800; color: #fff; margin: 0 0 18px; }
.contact__lede { font-size: 18px; line-height: 1.62; color: #c9c2e8; margin: 0 0 30px; max-width: 400px; }
.contact__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.contact__item { display: flex; align-items: center; gap: 12px; color: #e9deff; font-size: 15.5px; font-weight: 600; }
.contact__check {
  width: 30px; height: 30px; border-radius: 9px; background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact__email-link { color: #fff; text-decoration: underline; margin-left: 4px; }

.card {
  background: #fff;
  border-radius: 26px;
  padding: 36px;
  box-shadow: 0 40px 80px -30px rgba(5,7,47,.6);
}

/* form */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form__title { font-size: 22px; font-weight: 800; margin: 0 0 4px; }
.form__sub { font-size: 14.5px; color: var(--text-soft); margin: 0 0 24px; font-weight: 500; }
.field__label { display: block; font-size: 13px; font-weight: 700; color: #3a3d5c; margin-bottom: 7px; }
.field {
  width: 100%;
  padding: 14px 16px;
  border-radius: 13px;
  border: 1px solid var(--field-line);
  background: var(--field-bg);
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 18px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field:focus { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(106,36,255,.12); }
.field--area { resize: vertical; margin-bottom: 8px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
.form__row .field { margin-bottom: 0; }
.form__error { font-size: 13.5px; color: #d23b6e; font-weight: 600; margin: 6px 0 0; }
.form__submit {
  width: 100%;
  margin-top: 18px;
  padding: 16px;
  border-radius: 14px;
  font-size: 16px;
  box-shadow: 0 16px 34px -14px rgba(106,36,255,.6);
}
.form__submit[disabled] { opacity: .75; cursor: progress; }
.form__fineprint { font-size: 12px; color: var(--text-lilac); text-align: center; margin: 14px 0 0; font-weight: 500; }

/* success state */
.form-success { text-align: center; padding: 30px 10px; }
.form-success__icon {
  width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 22px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
}
.form-success__title { font-size: 26px; font-weight: 800; margin: 0 0 10px; }
.form-success__text { font-size: 16px; line-height: 1.6; color: var(--text-muted); margin: 0 0 24px; }
.form-success .btn--outline { padding: 13px 26px; font-size: 15px; border-color: #e0d3fb; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--ink); padding: 54px 0 40px; }
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer__brand { max-width: 320px; }
.footer__brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer__mark { height: 30px; width: auto; display: block; }
.footer__name { font-size: 19px; font-weight: 800; color: #fff; }
.footer__blurb { font-size: 14px; line-height: 1.6; color: #9a9cc0; margin: 0; }
.footer__cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__heading { font-size: 12px; font-weight: 700; letter-spacing: .12em; color: #6a6ca0; margin-bottom: 2px; }
.footer__link { text-decoration: none; color: #c7c9e6; font-size: 14.5px; font-weight: 500; }
.footer__link:hover { color: #fff; }
.footer__bar {
  max-width: var(--maxw);
  margin: 36px auto 0;
  padding: 24px 32px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__fine { font-size: 13px; color: #6a6ca0; font-weight: 500; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; padding: 56px 32px 80px; }
  .hero__title { font-size: 52px; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .designs__grid { grid-template-columns: repeat(2, 1fr); }
  .how__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }

  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute;
    top: 74px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px 32px 22px;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: saturate(1.4) blur(14px);
    -webkit-backdrop-filter: saturate(1.4) blur(14px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px -24px rgba(5,7,47,.25);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__link { padding: 10px 2px; font-size: 16px; }
  .nav__cta { text-align: center; padding: 13px 22px; }
}

@media (max-width: 620px) {
  .container, .nav__inner, .hero__inner, .trust__inner, .contact__inner, .footer__inner, .footer__bar { padding-left: 20px; padding-right: 20px; }
  .hero__title { font-size: 40px; }
  .hero__lede { font-size: 17.5px; }
  .section-title { font-size: 34px; }
  .contact__title { font-size: 34px; }
  .designs { padding: 72px 0; }
  .how { padding: 72px 0; }
  .contact { padding: 72px 0; }
  .designs__grid { grid-template-columns: 1fr; gap: 18px; }
  .trust__inner { justify-content: flex-start; }
  .trust__stats { gap: 28px; }
  .card { padding: 26px 22px; }
  .form__row { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1 1 auto; }
  .phone { width: 280px; }
}

@media (max-width: 360px) {
  .phone { width: 248px; }
}
