@import url("../fonts/fonts.css");

/* ==========================================================================
   Swag App AI — design tokens
   Values transcribed from the live Bubble build (computed styles @1440/834/390)
   ========================================================================== */
:root {
  --magenta: rgb(162, 1, 110);
  --magenta-06: rgba(162, 1, 110, 0.6);
  --magenta-02: rgba(162, 1, 110, 0.2);
  --magenta-005: rgba(162, 1, 110, 0.05);
  --ink: rgb(34, 54, 61);
  --ink-40: rgba(34, 54, 61, 0.4);
  --ink-20: rgba(34, 54, 61, 0.2);
  --ink-05: rgba(34, 54, 61, 0.05);
  --nav: rgba(37, 37, 37, 0.6);
  --blue: rgb(46, 0, 212);
  --blue-06: rgba(46, 0, 212, 0.6);
  --blue-01: rgba(46, 0, 212, 0.1);
  --red-06: rgba(255, 0, 17, 0.6);
  --red-01: rgba(255, 0, 17, 0.1);
  --purple-06: rgba(149, 0, 116, 0.6);
  --purple-01: rgba(149, 0, 116, 0.1);
  --pure-blue-06: rgba(0, 0, 255, 0.6);
  --pure-blue-01: rgba(0, 0, 255, 0.1);
  --white: #fff;

  --grad-hero: radial-gradient(circle farthest-side at 10% 10%, rgb(253, 153, 161), rgb(153, 153, 255));
  --grad-dark: linear-gradient(to right, rgb(0, 0, 0), rgb(46, 0, 3), rgb(26, 0, 0));
  --grad-soft: linear-gradient(to right, rgb(254, 242, 244), rgb(243, 243, 255));

  --font: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-form: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-legal-head: "SpaceGrotesque-Regular", "Montserrat", Arial, sans-serif;

  --col-gap: 60px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ==========================================================================
   Reset / base
   ========================================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; border: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea { font-family: inherit; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, p { margin: 0; }

:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 3px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--magenta);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
  font-size: 14px;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* container: the live site uses 85% width with 7.5% side margins */
.container {
  width: 85%;
  margin: 0 auto;
}

/* ==========================================================================
   Header
   ========================================================================== */
/* The live site's header scrolls away with the page (verified against
   swagapp.ai) — it is deliberately NOT sticky. */
.site-header {
  position: relative;
  z-index: 120;
  background: var(--white);
  padding: 17px 0 16px;
}

.site-header__inner {
  background: rgba(255, 255, 255, 0.93);
  height: 67px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}

.brand { display: inline-flex; align-items: center; }
.brand img { width: 178px; height: 67px; object-fit: contain; }

.nav { display: flex; align-items: center; gap: 20px; }

.nav__link {
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  color: var(--nav);
  padding: 4px 0;
  transition: color 0.22s var(--ease);
}
.nav__link:hover { color: var(--magenta); }
.nav__link.is-active { font-weight: 600; color: var(--magenta); }

.nav-toggle {
  display: none;
  width: 35px;
  height: 35px;
  padding: 0;
  border: 0;
  background: none;
  color: rgb(39, 39, 39);
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 28px; height: 28px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* ==========================================================================
   Buttons + form controls
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 22px;
  border-radius: 200px;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), background-color 0.22s var(--ease), color 0.22s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--white {
  background: var(--white);
  border: 2px solid var(--white);
  color: var(--magenta);
}
.btn--white:hover { box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14); }

.btn--outline {
  background: var(--white);
  border: 1px solid var(--ink-20);
  color: var(--magenta);
}
.btn--outline:hover { box-shadow: 0 8px 20px rgba(34, 54, 61, 0.12); }

.btn--blue {
  background: var(--blue);
  border: 2px solid var(--white);
  color: var(--white);
}
.btn--blue:hover { box-shadow: 0 10px 24px rgba(46, 0, 212, 0.3); }

.field {
  height: 50px;
  border-radius: 200px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 400;
  border: 2px solid var(--white);
  background: rgba(255, 255, 255, 0.4);
  color: var(--white);
  transition: box-shadow 0.22s var(--ease), background-color 0.22s var(--ease);
}
.field::placeholder { color: rgba(255, 255, 255, 0.85); }
.field:focus { outline: none; box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25); }

.field--light {
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--white);
}
.field--light::placeholder { color: rgba(37, 37, 37, 0.45); }
.field--light:focus { box-shadow: 0 0 0 4px var(--blue-01); }

.field--tint {
  background: var(--magenta-005);
  border: 2px solid var(--magenta-02);
  color: rgb(95, 95, 95);
}
.field--tint::placeholder { color: rgba(95, 95, 95, 0.75); }
.field--tint:focus { box-shadow: 0 0 0 4px var(--magenta-005); }

/* subscribe row: input + button side by side */
.subscribe { display: flex; gap: 20px; align-items: center; }
.subscribe .field { flex: 0 1 auto; }

.form-note {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 10px;
  min-height: 18px;
}
.form-note[data-state="ok"] { color: #1a7f4b; }
.form-note[data-state="err"] { color: #c0182b; }
.hero .form-note, .cta .form-note { color: #fff; }

/* store badges */
.badges { display: flex; gap: 20px; align-items: center; }
.badges img { width: 150px; height: 50px; object-fit: contain; transition: transform 0.25s var(--ease); }
.badges a:hover img { transform: translateY(-3px) scale(1.02); }

/* ==========================================================================
   Home — hero
   ========================================================================== */
.hero { padding-bottom: 240px; }

.hero__box {
  position: relative;
  border-radius: 40px;
  background: var(--grad-hero);
  height: 1280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  overflow: visible;
}

.hero__title {
  width: 650px;
  max-width: 100%;
  font-size: 60px;
  font-weight: 700;
  line-height: 72px;
  color: var(--white);
  text-align: center;
}

.hero__sub {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: var(--white);
  text-align: center;
}

.hero__form { margin-top: 24px; }
.hero__form .field { width: 340px; }
.hero__form .btn { width: 190px; padding: 0; }

.hero .badges { margin-top: 24px; gap: 45px; }
.hero .badges img { width: 240px; height: 80px; }

.hero__phone {
  position: absolute;
  top: 470px;
  left: 50%;
  transform: translateX(-50%);
  width: 530px;
  height: 1050px;
  object-fit: contain;
}

/* ==========================================================================
   Home — feature cards
   ========================================================================== */
.features { padding: 100px 0; background: var(--white); }

.section-head { text-align: center; }
.section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 43.2px;
  color: var(--ink);
}
.section-sub {
  margin-top: 11px;
  font-size: 18px;
  font-weight: 400;
  line-height: 21.6px;
  color: var(--ink-40);
}

.cards {
  /* ref: sub bottom 1796 -> card row top 1845 */
  margin-top: 49px;
  display: grid;
  grid-template-columns: repeat(3, 300px);
  justify-content: center;
  gap: 20px;
}

.card { text-align: center; }
.card--offset { margin-top: 10px; }
.card--wide { grid-column: 2; }

.card__icon { width: 120px; height: 120px; margin: 0 auto; object-fit: contain; transition: transform 0.3s var(--ease); }
.card:hover .card__icon { transform: translateY(-4px) scale(1.04); }

.card__title {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 25.2px;
}
.card__body {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 19.6px;
}

.card--red .card__title, .card--red .card__body { color: var(--red-06); }
.card--purple .card__title, .card--purple .card__body { color: var(--purple-06); }
.card--blue .card__title, .card--blue .card__body { color: var(--blue-06); }
.card--pureblue .card__title, .card--pureblue .card__body { color: var(--pure-blue-06); }

/* ==========================================================================
   Logo strips
   ========================================================================== */
.press { background: var(--ink-05); padding: 74px 0 0; height: 300px; }
.press .section-title { margin-bottom: 52px; text-align: center; }

.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 75px;
}
.logo-row img { object-fit: contain; }

.brands { padding: 51px 0; }
.brands .section-sub { margin-top: 20px; }
.brands .logo-row {
  margin-top: 39px;
  gap: 70px;
  opacity: 0.2;
  height: 74px;
  align-items: center;
}

/* ==========================================================================
   Split (image + text) sections
   ========================================================================== */
/* ref bands: every split is 50px top/bottom with the two columns
   vertically centred on each other (image 576x476 at 1425 viewport). */
.split { padding: 50px 0; }
.split--pad-top { padding-top: 100px; }
.split--pad-bottom { padding-bottom: 100px; }
.split__grid {
  display: flex;
  align-items: center;
  gap: var(--col-gap);
}
.split__col { flex: 1 1 0; min-width: 0; }
.split__img {
  width: 100%;
  height: auto;
  aspect-ratio: 576 / 476;
  object-fit: cover;
  border-radius: 15px;
}
.split__title {
  font-size: 47px;
  font-weight: 700;
  line-height: 56.4px;
  color: var(--ink);
}
.split__body {
  white-space: pre-line;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 25.2px;
  color: var(--ink-40);
}

.split .btn { margin-top: 20px; width: 180px; padding: 0; }

/* pill labels on How It Works */
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 19.6px;
}
.pill--red { background: var(--red-01); color: var(--red-06); }
.pill--purple { background: var(--purple-01); color: var(--purple-06); }
.pill--blue { background: var(--blue-01); color: var(--blue-06); }
.pill--pureblue { background: var(--pure-blue-01); color: var(--pure-blue-06); }

.split--how .split__title {
  margin-top: 10px;
  font-size: 36px;
  line-height: 43.2px;
}
.split--how .split__body { margin-top: 10px; }

/* ==========================================================================
   Soft banner (Be Part of the Movement / About philosophy / Contact form)
   ========================================================================== */
.banner { padding: 0; }
.softpanel {
  background: var(--grad-soft);
  border-radius: 10px;
  padding: 68px 0 73px;
  text-align: center;
}
.softpanel .section-sub { margin-top: 20px; }
.softpanel .subscribe { justify-content: center; margin-top: 24px; }
.softpanel .field { width: 390px; }
.softpanel .btn { width: 140px; padding: 0; }

/* ==========================================================================
   Dark CTA
   ========================================================================== */
/* the dark panel sits flush against the previous band on every page
   except the home page, which has an 80px lead-in. */
.cta { padding: 0; }
.cta--lead { padding-top: 80px; }
.cta__box {
  position: relative;
  border-radius: 30px;
  background: var(--grad-dark);
  min-height: 643px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.cta__text {
  flex: 1 1 auto;
  padding: 148px 0 0 60px;
  max-width: 600px;
}
.cta__title {
  width: 540px;
  max-width: 100%;
  font-size: 60px;
  font-weight: 700;
  line-height: 72px;
  color: var(--white);
}
.cta__sub {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: var(--white);
}
.cta__form { margin-top: 24px; }
.cta__form .field { width: 380px; }
.cta__form .btn { width: 140px; padding: 0; }
.cta .badges { margin-top: 24px; }
.cta__phone {
  align-self: flex-start;
  width: 530px;
  height: 643px;
  object-fit: contain;
  margin-left: auto;
  margin-right: 60px;
  flex: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--white); padding: 50px 0 0; }
.site-footer__grid {
  display: flex;
  align-items: center;
  gap: 60px;
  min-height: 200px;
}
.footer-brand { flex: 0 0 178px; }
.footer-brand img { width: 178px; height: 63px; object-fit: contain; }

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0 0 auto;
  margin-left: 187px;
}
.footer-nav a {
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  color: var(--nav);
  transition: color 0.22s var(--ease);
}
.footer-nav a:hover { color: var(--magenta); }

.footer-news {
  margin-left: auto;
  width: 550px;
  height: 200px;
  border-radius: 20px;
  background: var(--blue-01);
  padding: 50px 30px;
}
.footer-news__label {
  font-size: 16px;
  font-weight: 600;
  line-height: 22.4px;
  color: var(--blue-06);
}
.footer-news .subscribe { margin-top: 24px; }
.footer-news .field { width: 330px; }
.footer-news .btn { width: 140px; padding: 0; }

.footer-bottom {
  margin-top: 40px;
  padding: 24px 0 28px;
  border-top: 1px solid var(--ink-05);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--nav);
}
.footer-bottom a { color: var(--magenta); font-weight: 600; }
.footer-bottom a:hover { text-decoration: underline; }
.credit-heart { color: #e0245e; font-style: normal; }

/* ==========================================================================
   About page
   ========================================================================== */
.page-head { padding: 50px 0 0; text-align: center; }
/* Contact's hero sits 4px higher and its intro rides closer to the sub. */
.page-head--sm { padding-top: 46px; }
.page-head--sm .contact-intro { margin-top: 46px; }
/* How It Works has no intro paragraph, so the band keeps its own tail. */
.page-head--how { padding-bottom: 58px; }
/* About's intro sits well below the sub-heading. */
.page-head--about .page-intro { margin-top: 130px; }
.page-head__title {
  font-size: 60px;
  font-weight: 700;
  line-height: 72px;
  color: #000;
}
.page-head--sm .page-head__title { font-size: 50px; line-height: 60px; }
.page-head--how .page-head__sub { color: var(--ink); }
.page-head__sub {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: var(--ink-40);
}
.page-intro {
  white-space: pre-line;
  text-align: start;
  margin: 85px auto 0;
  width: 705px;
  max-width: 100%;
  font-size: 18px;
  font-weight: 400;
  line-height: 25.2px;
  color: var(--ink-40);
}

.philosophy { padding: 50px 0; }
.philosophy__box {
  position: relative;
  border-radius: 10px;
  background: var(--grad-soft);
  min-height: 441px;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 0 0 50px;
  overflow: hidden;
}
.philosophy__text { flex: 1 1 auto; min-width: 0; padding: 0; }
.philosophy__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 43.2px;
  color: var(--magenta);
}
.philosophy__body {
  white-space: pre-line;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  color: var(--magenta-06);
}
.philosophy__body p + p { margin-top: 16px; }
.philosophy__img {
  flex: none;
  width: 581px;
  height: 435px;
  object-fit: cover;
  border-radius: 15px;
  align-self: center;
}

.prose-section { padding: 50px 0; }
.prose-section__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 43.2px;
  color: var(--ink);
}
.prose-section__body {
  white-space: pre-line;
  margin-top: 20px;
  width: 900px;
  max-width: 100%;
  font-size: 18px;
  font-weight: 400;
  line-height: 25.2px;
  color: var(--ink-40);
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-intro {
  white-space: pre-line;
  text-align: start;
  margin: 74px auto 0;
  width: 918px;
  max-width: 100%;
  font-size: 18px;
  font-weight: 400;
  line-height: 25.2px;
  color: var(--ink-40);
}

.contact { padding: 50px 0; }
.contact__box {
  background: var(--grad-soft);
  border-radius: 10px;
  /* ref panel: 628px tall — 50 top, 60 bottom */
  padding: 50px 0 60px;
}
.contact__form {
  width: 750px;
  max-width: 86%;
  margin: 0 auto;
}
.contact__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 43.2px;
  color: var(--magenta);
  margin-bottom: 15px;
}
.contact__form .field {
  display: block;
  width: 100%;
  height: 55px;
  font-family: var(--font-form);
  border-width: 1px;
  margin-bottom: 20px;
}
.contact__form textarea.field {
  height: 240px;
  border-radius: 20px;
  padding: 18px 20px;
  resize: vertical;
  line-height: 1.5;
}
.contact__form .btn { width: 190px; padding: 0; }

/* ==========================================================================
   Legal
   ========================================================================== */
.legal { padding: 50px 0 100px; }
.legal__inner { padding-left: 76px; }
.legal__title {
  font-family: var(--font-legal-head);
  font-size: 36px;
  font-weight: 700;
  line-height: 43.2px;
  color: var(--magenta);
}
.legal__list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9.5px;
}
.legal__list a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 19.6px;
  color: var(--magenta);
  text-decoration: underline;
  transition: opacity 0.2s var(--ease);
}
.legal__list a:hover { opacity: 0.65; }
.legal__subtitle {
  margin-top: 39px;
  font-family: var(--font-legal-head);
  font-size: 22px;
  font-weight: 700;
  line-height: 26.4px;
  color: var(--magenta);
}

/* legal document pages */
.legaldoc { padding: 30px 0 80px; }
.legaldoc__title {
  font-family: var(--font-legal-head);
  font-size: 36px;
  font-weight: 700;
  line-height: 43.2px;
  color: #000;
  text-transform: uppercase;
}
.legaldoc__effective {
  margin-top: 22px;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #000;
}
.legaldoc__body {
  margin-top: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 19.6px;
  color: #000;
}
.legaldoc__body div[align="justify"],
.legaldoc__body [style*="pre-line"] { white-space: pre-line; }
.legaldoc__body p { margin: 0 0 10px; }
.legaldoc__body a { color: var(--magenta); text-decoration: underline; word-break: break-word; }
.legaldoc__body ol, .legaldoc__body ul { padding-left: 34px; margin: 8px 0; }
.legaldoc__body li { margin-bottom: 4px; }
.legaldoc__body table { max-width: 100%; border-collapse: collapse; }
.legaldoc__body td, .legaldoc__body th { border: 1px solid #ccc; padding: 6px 8px; vertical-align: top; }
.legaldoc__body img { max-width: 100%; height: auto; }
.legaldoc__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  font-size: 14px;
  font-weight: 600;
  color: var(--magenta);
}
.legaldoc__back:hover { text-decoration: underline; }

/* ==========================================================================
   Tablet  (<= 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
  .site-header__inner { padding: 0 30px; }
  .nav { gap: 18px; }
  .nav__link { font-size: 15px; }

  .hero__title { width: 100%; padding: 0 40px; }
  .hero__box { padding-left: 24px; padding-right: 24px; }

  .cards { grid-template-columns: repeat(2, 300px); }
  .card--wide { grid-column: auto; }
  .card--offset { margin-top: 10px; }

  .press { height: auto; padding-bottom: 74px; }
  .logo-row { gap: 40px; }
  .logo-row img { max-width: 130px; }
  .brands .logo-row { gap: 40px; }

  /* ref tablet: title 79px below the panel top, phone 28px under the
     badges and 21px clear of the panel bottom. */
  .cta__box { flex-direction: column; align-items: center; text-align: left; min-height: 0; }
  .cta__text { padding: 79px 35px 0; max-width: 100%; width: 100%; }
  .cta__title { width: 100%; }
  .cta__phone { margin: 28px auto 21px; width: 530px; max-width: 90%; height: auto; }

  .philosophy__box { flex-direction: column; padding: 0 30px 30px; gap: 24px; }
  .philosophy__text { padding: 40px 0 0; max-width: 100%; }
  .philosophy__img { width: 100%; height: auto; aspect-ratio: 581 / 435; margin-right: 0; }

  /* ref tablet footer is a two-column row — the link column is dropped. */
  .site-footer { padding: 40px 0 0; }
  .site-footer__grid { gap: 30px; min-height: 0; }
  .footer-nav { display: none; }
  .footer-news { width: 322px; height: auto; padding: 30px 24px; }
  .footer-news .subscribe { flex-direction: column; align-items: stretch; gap: 20px; }
  .footer-news .field, .footer-news .btn { width: 100%; }

  .prose-section__body { width: 100%; }
  .legal__inner { padding-left: 20px; }
}

/* ==========================================================================
   Mobile  (<= 767px)
   ========================================================================== */
@media (max-width: 767px) {
  .container { width: 93.4%; }

  .site-header { padding: 17px 0 16px; }
  .site-header__inner { padding: 0 6px; height: 67px; }
  .brand img { width: 178px; height: 67px; }

  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    border-top: 1px solid rgba(162, 1, 110, 0.25);
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1);
    padding: 20px 21px 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.24s var(--ease), transform 0.24s var(--ease), visibility 0.24s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }

  /* hero */
  .hero { padding-bottom: 180px; }
  .hero .container { width: 100%; }
  .hero__box {
    border-radius: 0;
    height: auto;
    min-height: 1102px;
    padding: 80px 14px 0;
  }
  .hero__title { font-size: 40px; line-height: 48px; padding: 0; }
  .hero__sub { margin-top: 20px; font-size: 14px; line-height: 20px; }
  .hero__form { margin-top: 20px; width: 100%; flex-direction: column; align-items: stretch; }
  .hero__form .field, .hero__form .btn { width: 100%; }
  .hero .badges { flex-direction: column; gap: 20px; margin-top: 20px; }
  .hero__phone { position: static; transform: none; width: 100%; max-width: 363px; height: auto; margin: 20px auto 0; }

  /* sections */
  .features { padding: 70px 0; }
  .section-title { font-size: 28px; line-height: 34px; }
  .section-sub { font-size: 16px; line-height: 19px; }

  .cards { grid-template-columns: minmax(0, 300px); margin-top: 50px; gap: 46px; }
  .card--offset { margin-top: 0; }
  .card__title { font-size: 16px; line-height: 22px; }
  .card__body { font-size: 12px; line-height: 16.8px; max-width: 300px; margin-left: auto; margin-right: auto; }

  .press { padding: 60px 0; }
  .press .section-title { font-size: 24px; line-height: 29px; margin-bottom: 40px; }
  .logo-row { gap: 34px 40px; }
  .brands { padding: 60px 0; }
  .brands .section-title { font-size: 28px; line-height: 34px; }
  .brands .logo-row { margin-top: 46px; gap: 30px 40px; }

  .split { padding: 60px 0; }
  .split__grid { flex-direction: column; gap: 30px; }
  .split__title { font-size: 24px; line-height: 29px; }
  .split__body { font-size: 16px; line-height: 22.4px; }
  .split .btn { width: 180px; }
  .split--how .split__title { font-size: 24px; line-height: 29px; }

  .softpanel { padding: 46px 20px; }
  .softpanel .subscribe { flex-direction: column; align-items: stretch; }
  .softpanel .field, .softpanel .btn { width: 100%; }

  .cta { padding: 60px 0; }
  .cta .container { width: 95.5%; }
  .cta__box { min-height: 0; border-radius: 20px; }
  .cta__text { padding: 80px 16px 0; }
  .cta__title { font-size: 44px; line-height: 53px; }
  .cta__sub { font-size: 18px; line-height: 25px; }
  .cta__form { flex-direction: column; align-items: stretch; width: 100%; }
  .cta__form .field, .cta__form .btn { width: 100%; }
  .cta .badges { gap: 20px; }
  .cta__phone { width: 100%; max-width: 100%; margin: 30px 0 0; }

  /* footer */
  .site-footer { padding: 30px 0 0; }
  .site-footer__grid { flex-direction: column; align-items: center; gap: 22px; min-height: 0; }
  .footer-brand { flex: none; }
  .footer-nav { display: none; }
  .footer-news { margin-left: 0; width: 100%; max-width: 340px; padding: 22px 20px; }
  .footer-news__label { font-size: 12px; line-height: 17px; }
  .footer-news .subscribe { flex-direction: column; align-items: center; }
  .footer-news .field { width: 100%; }
  .footer-news .btn { width: 140px; }
  .footer-bottom { margin-top: 34px; justify-content: center; text-align: center; flex-direction: column; gap: 8px; }

  /* inner pages */
  .page-head__title { font-size: 34px; line-height: 41px; }
  .page-head__sub { font-size: 16px; line-height: 22px; }
  .page-intro { margin-top: 46px; font-size: 16px; line-height: 22.4px; }
  .philosophy { padding: 40px 0; }
  .philosophy__title { font-size: 26px; line-height: 32px; }
  .philosophy__body { font-size: 14px; line-height: 20px; }
  .prose-section { padding: 34px 0; }
  .prose-section__title { font-size: 26px; line-height: 32px; }
  .prose-section__body { font-size: 16px; line-height: 22.4px; }

  .contact-intro { margin-top: 50px; font-size: 16px; line-height: 22.4px; }
  .contact__box { padding: 34px 0; }
  .contact__form { max-width: 90%; }
  .contact__title { font-size: 26px; line-height: 32px; }
  .contact__form .btn { width: 100%; }

  .legal__inner { padding-left: 0; }
  .legal__title { font-size: 30px; line-height: 36px; }
  .legaldoc__title { font-size: 26px; line-height: 32px; }
  .legaldoc__effective { font-size: 17px; }
}

/* ==========================================================================
   Motion — subtle entrance, never gates visibility
   ========================================================================== */
/* Sections are ALWAYS fully visible — no opacity or transform is ever used to
   gate content. Motion is limited to interactive states (see .btn, a, .field). */
.reveal { opacity: 1; transform: none; }
