:root {
  --bg: #08080d;
  --bg-soft: #0e0e16;
  --surface: rgba(20, 20, 32, .72);
  --surface-solid: #12121c;
  --surface-hover: #181827;

  --text: #f7f7fb;
  --text-soft: #b9b9c8;
  --text-muted: #86869a;

  --primary: #b245ff;
  --primary-light: #d68cff;
  --secondary: #ff3f96;
  --cyan: #4ce4ff;
  --success: #55e6a5;

  --border: rgba(255, 255, 255, .1);
  --border-strong: rgba(255, 255, 255, .18);

  --gradient: linear-gradient(135deg, #b245ff 0%, #ff3f96 52%, #ff8154 100%);
  --gradient-text: linear-gradient(100deg, #fff 0%, #d68cff 40%, #ff75b6 72%, #ffaf73 100%);

  --shadow: 0 24px 80px rgba(0, 0, 0, .4);
  --shadow-primary: 0 18px 50px rgba(178, 69, 255, .24);

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-height: 78px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 8%, rgba(178, 69, 255, .14), transparent 30rem),
    radial-gradient(circle at 90% 22%, rgba(255, 63, 150, .12), transparent 28rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  color: #fff;
  background: rgba(178, 69, 255, .55);
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 104px 0;
}

.section--compact {
  padding: 72px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--primary-light);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 1px;
  background: currentColor;
  content: "";
}

.gradient-text {
  color: transparent;
  background: var(--gradient-text);
  background-clip: text;
  -webkit-background-clip: text;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 12px 18px;
  color: #09090f;
  background: #fff;
  border-radius: 10px;
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading h2,
.process-copy h2,
.audience-copy h2,
.faq-intro h2 {
  margin: 0 0 16px;
  line-height: 1.06;
  letter-spacing: -.05em;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.section-heading p,
.process-copy > p,
.audience-copy > p,
.faq-intro > p {
  color: var(--text-soft);
}

.section-heading p {
  max-width: 650px;
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

/* Buttons */

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms var(--ease), background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, .22) 48%, transparent 76%);
  content: "";
  transform: translateX(-120%);
  transition: transform 600ms var(--ease);
}

.button:hover::before {
  transform: translateX(120%);
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms var(--ease);
}

.button:hover svg {
  transform: translateX(3px);
}

.button--primary {
  color: #fff;
  background: var(--gradient);
  box-shadow: var(--shadow-primary);
}

.button--primary:hover {
  box-shadow: 0 20px 58px rgba(178, 69, 255, .35);
}

.button--secondary {
  color: var(--text);
  background: rgba(255, 255, 255, .05);
  border-color: var(--border);
}

.button--secondary:hover {
  background: rgba(255, 255, 255, .09);
  border-color: var(--border-strong);
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background-color 200ms ease, border-color 200ms ease, backdrop-filter 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 8, 13, .82);
  border-color: var(--border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .22);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  font-weight: 900;
  letter-spacing: -.03em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--gradient);
  box-shadow: 0 8px 26px rgba(178, 69, 255, .3);
}

.brand-mark svg {
  width: 22px;
  height: 22px;
}

.brand-name {
  font-size: 1.08rem;
}

.brand-name span {
  color: var(--primary-light);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a:not(.button) {
  position: relative;
  color: var(--text-soft);
  font-size: .93rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.main-nav a:not(.button):hover,
.main-nav a[aria-current="true"] {
  color: #fff;
}

.main-nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 999px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--ease);
}

.main-nav a:not(.button):hover::after,
.main-nav a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  color: var(--text);
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
}

.menu-button svg {
  width: 23px;
  height: 23px;
}

/* Hero */

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 72px) 0 90px;
}

.hero::before {
  position: absolute;
  top: 14%;
  left: 52%;
  width: min(620px, 70vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, .015), 0 0 0 140px rgba(255, 255, 255, .012);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(400px, .98fr);
  gap: clamp(48px, 7vw, 96px);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 8px 13px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 700;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(85, 230, 165, .11);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.1rem, 7vw, 6.4rem);
  line-height: .96;
  letter-spacing: -.066em;
}

.hero-description {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--text-soft);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 20px 0 0;
  color: var(--text-muted);
  font-size: .86rem;
}

.hero-note svg {
  width: 17px;
  flex: 0 0 17px;
  color: var(--success);
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.visual-glow {
  position: absolute;
  inset: 12% 8%;
  background: radial-gradient(circle, rgba(178, 69, 255, .35), rgba(255, 63, 150, .12) 42%, transparent 68%);
  filter: blur(40px);
}

.creator-card {
  position: absolute;
  inset: 44px 22px 56px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .025));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transform: rotate(2.2deg);
  backdrop-filter: blur(18px);
}

.creator-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(178, 69, 255, .25), transparent 36%), linear-gradient(330deg, rgba(255, 63, 150, .2), transparent 38%);
  content: "";
  pointer-events: none;
}

.creator-card__bar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}

.creator-card__bar span {
  width: 9px;
  height: 9px;
  background: #ff6481;
  border-radius: 50%;
}

.creator-card__bar span:nth-child(2) {
  background: #ffca57;
}

.creator-card__bar span:nth-child(3) {
  background: #55e6a5;
}

.creator-card__body {
  position: relative;
  display: grid;
  height: calc(100% - 46px);
  place-items: center;
  padding: 34px;
  text-align: center;
}

.banner-wrap {
  width: 100%;
}

.banner-wrap img {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
  margin-inline: auto;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, .28));
}

.banner-fallback {
  display: none;
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 950;
  line-height: .95;
  letter-spacing: -.06em;
}

.creator-card__caption {
  margin: 28px 0 0;
  color: var(--text-soft);
  font-weight: 700;
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  padding: 14px 16px;
  background: rgba(15, 15, 24, .88);
  border: 1px solid var(--border-strong);
  border-radius: 17px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, .3);
  backdrop-filter: blur(16px);
}

.floating-card--top {
  top: 12px;
  right: -4px;
}

.floating-card--bottom {
  bottom: 16px;
  left: -8px;
}

.floating-icon {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  place-items: center;
  color: #fff;
  background: var(--gradient);
  border-radius: 12px;
}

.floating-icon svg {
  width: 20px;
  height: 20px;
}

.floating-copy {
  display: grid;
}

.floating-copy strong {
  font-size: .9rem;
}

.floating-copy span {
  color: var(--text-muted);
  font-size: .76rem;
}

/* Trust */

.trust-strip {
  position: relative;
  z-index: 2;
  border-block: 1px solid var(--border);
  background: rgba(255, 255, 255, .025);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
}

.trust-item {
  display: flex;
  min-height: 118px;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
  border-right: 1px solid var(--border);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item--intro {
  color: var(--text-soft);
  font-size: .93rem;
}

.trust-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  color: var(--primary-light);
  background: rgba(178, 69, 255, .1);
  border: 1px solid rgba(178, 69, 255, .19);
  border-radius: 13px;
  font-size: 1.35rem;
}

.trust-copy {
  display: grid;
}

.trust-copy strong {
  font-size: .93rem;
}

.trust-copy span {
  color: var(--text-muted);
  font-size: .8rem;
}

/* Benefits */

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 250ms var(--ease), border-color 250ms ease, background-color 250ms ease;
}

.benefit-card:hover {
  background: var(--surface-hover);
  border-color: rgba(178, 69, 255, .35);
  transform: translateY(-7px);
}

.benefit-card::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 210px;
  height: 210px;
  background: var(--card-color, var(--primary));
  border-radius: 50%;
  content: "";
  filter: blur(90px);
  opacity: .18;
  pointer-events: none;
}

.benefit-card:nth-child(2) {
  --card-color: var(--cyan);
}

.benefit-card:nth-child(3) {
  --card-color: var(--secondary);
}

.benefit-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 48px;
  place-items: center;
  color: #fff;
  background: var(--gradient);
  border-radius: 17px;
  box-shadow: 0 13px 34px rgba(178, 69, 255, .24);
  font-size: 1.7rem;
}

.benefit-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
}

.benefit-card p {
  margin: 0;
  color: var(--text-soft);
}

.benefit-card small {
  display: block;
  margin-top: 18px;
  color: var(--text-muted);
}

/* Process */

.process-layout {
  display: grid;
  align-items: start;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(50px, 9vw, 110px);
}

.process-copy {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.process-copy h2 {
  font-size: clamp(2.3rem, 4.5vw, 4rem);
}

.process-copy > p {
  margin: 0;
  font-size: 1.07rem;
}

.process-steps {
  position: relative;
  display: grid;
  gap: 18px;
}

.process-steps::before {
  position: absolute;
  top: 42px;
  bottom: 42px;
  left: 34px;
  width: 1px;
  background: linear-gradient(var(--primary), var(--secondary), rgba(255, 255, 255, .06));
  content: "";
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 22px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  color: #fff;
  background: #151521;
  border: 1px solid var(--border-strong);
  border-radius: 19px;
  font-weight: 900;
}

.step:first-child .step-number {
  background: var(--gradient);
  border-color: transparent;
}

.step h3 {
  margin: 3px 0 8px;
  font-size: 1.18rem;
}

.step p {
  margin: 0;
  color: var(--text-soft);
}

/* Audience */

.audience-panel {
  overflow: hidden;
  background: linear-gradient(135deg, rgba(178, 69, 255, .12), rgba(255, 63, 150, .05)), var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
}

.audience-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
}

.audience-copy {
  padding: clamp(36px, 6vw, 70px);
}

.audience-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.audience-copy p {
  margin: 0;
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-left: 1px solid var(--border);
}

.audience-item {
  padding: 30px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.audience-item:nth-child(even) {
  border-right: 0;
}

.audience-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.audience-symbol {
  display: block;
  margin-bottom: 26px;
  color: var(--primary-light);
  font-size: 1.7rem;
}

.audience-item h3 {
  margin: 0 0 7px;
  font-size: 1rem;
}

.audience-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: .88rem;
}

/* Heritage */

.heritage-card {
  position: relative;
  display: grid;
  overflow: hidden;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding: clamp(34px, 6vw, 66px);
  background: radial-gradient(circle at 85% 15%, rgba(76, 228, 255, .13), transparent 22rem), linear-gradient(135deg, rgba(178, 69, 255, .12), rgba(255, 63, 150, .07));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
}

.heritage-card h2 {
  max-width: 800px;
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.heritage-card p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--text-soft);
}

/* FAQ */

.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(48px, 8vw, 100px);
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.faq-intro h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.faq-intro p {
  margin: 0 0 24px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 17px;
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  color: var(--text);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
}

.faq-question:hover {
  background: rgba(255, 255, 255, .025);
}

.faq-plus {
  color: var(--primary-light);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 220ms var(--ease);
}

.faq-question[aria-expanded="true"] .faq-plus {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms var(--ease);
}

.faq-answer p {
  overflow: hidden;
  padding: 0 24px;
  margin: 0;
  color: var(--text-soft);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 22px;
}

/* CTA */

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(52px, 8vw, 94px) 24px;
  background: var(--gradient);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-primary);
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  width: 340px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  content: "";
}

.final-cta::before {
  top: -190px;
  left: -110px;
}

.final-cta::after {
  right: -130px;
  bottom: -210px;
}

.final-cta__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-inline: auto;
}

.final-cta .eyebrow {
  justify-content: center;
  color: rgba(255, 255, 255, .8);
}

.final-cta h2 {
  margin: 0 0 16px;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -.055em;
}

.final-cta p:not(.eyebrow) {
  max-width: 610px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, .86);
  font-size: 1.08rem;
}

.final-cta .button {
  color: #11111a;
  background: #fff;
  box-shadow: 0 16px 38px rgba(69, 16, 71, .22);
}

.final-cta .button:hover {
  color: #11111a;
  background: #fff;
  box-shadow: 0 20px 48px rgba(69, 16, 71, .34);
}

/* Footer */

.site-footer {
  padding: 50px 0 32px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--border);
}

.footer-brand p {
  max-width: 430px;
  margin: 16px 0 0;
  color: var(--text-muted);
  font-size: .9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
}

.footer-links a {
  color: var(--text-soft);
  font-size: .9rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 25px;
  color: var(--text-muted);
  font-size: .82rem;
}

/* Animaciones */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

/* Responsive */

@media (max-width: 960px) {
  :root {
    --header-height: 72px;
  }

  .section {
    padding: 84px 0;
  }

  .menu-button {
    display: grid;
  }

  .main-nav {
    position: fixed;
    top: calc(var(--header-height) + 10px);
    right: 20px;
    left: 20px;
    display: grid;
    gap: 0;
    padding: 14px;
    background: rgba(14, 14, 22, .97);
    border: 1px solid var(--border-strong);
    border-radius: 20px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms var(--ease);
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a:not(.button) {
    padding: 14px 13px;
  }

  .main-nav a:not(.button)::after {
    display: none;
  }

  .main-nav .button {
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .status-pill,
  .hero-actions {
    justify-content: center;
  }

  .hero-description {
    margin-inline: auto;
  }

  .hero-note {
    justify-content: center;
  }

  .hero-visual {
    width: min(100%, 650px);
    min-height: 560px;
    margin-inline: auto;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
  }

  .process-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .process-copy,
  .faq-intro {
    position: static;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .audience-list {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .heritage-card {
    grid-template-columns: 1fr;
  }

  .heritage-card .button {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .brand-name {
    font-size: 1rem;
  }

  .hero {
    padding-top: calc(var(--header-height) + 54px);
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .hero-description {
    font-size: 1.03rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 440px;
  }

  .creator-card {
    inset: 38px 4px 46px;
  }

  .creator-card__body {
    padding: 22px;
  }

  .floating-card {
    min-width: 170px;
    padding: 11px 13px;
  }

  .floating-card--top {
    right: -5px;
  }

  .floating-card--bottom {
    left: -5px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .benefit-card {
    padding: 26px;
  }

  .step {
    grid-template-columns: 52px 1fr;
    gap: 16px;
    padding: 20px;
  }

  .step-number {
    width: 52px;
    height: 52px;
    border-radius: 15px;
  }

  .process-steps::before {
    left: 26px;
  }

  .audience-list {
    grid-template-columns: 1fr;
  }

  .audience-item,
  .audience-item:nth-child(even),
  .audience-item:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .audience-item:last-child {
    border-bottom: 0;
  }

  .final-cta {
    padding-inline: 20px;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
