:root {
  --orange: #fc4f00;
  --orange-dark: #d74200;
  --ink: #0b0b0b;
  --muted: #5f5f5f;
  --paper: #fbfaf7;
  --card: #ffffff;
  --line: rgba(11, 11, 11, 0.1);
  --line-strong: rgba(11, 11, 11, 0.16);
  --shadow: 0 24px 80px rgba(11, 11, 11, 0.08);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(252, 79, 0, 0.14), transparent 34rem),
    linear-gradient(180deg, #fffefd 0%, var(--paper) 42%, #ffffff 100%);
  line-height: 1.65;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--orange);
  z-index: 20;
}

a {
  color: inherit;
  text-decoration-color: rgba(252, 79, 0, 0.45);
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--orange-dark);
  text-decoration-color: currentColor;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

p,
ul {
  margin: 0;
}

p + p,
p + ul,
ul + p {
  margin-top: 1rem;
}

ul {
  padding-left: 1.15rem;
}

li + li {
  margin-top: 0.65rem;
}

strong {
  font-weight: 800;
}

.site-shell {
  width: min(100% - 40px, var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(11, 11, 11, 0.08);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 92px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 70px;
  text-decoration: none;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.5rem 0.9rem;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--orange-dark);
  background: rgba(252, 79, 0, 0.08);
  border-color: rgba(252, 79, 0, 0.16);
}

.main-nav a.nav-cta {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 12px 26px rgba(252, 79, 0, 0.22);
}

.main-nav a.nav-cta:hover,
.main-nav a.nav-cta:focus-visible {
  color: #fff;
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.hero {
  padding: clamp(1.5rem, 4vw, 3.5rem) 0 clamp(1.75rem, 4vw, 3.75rem);
}

.hero-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(170px, 320px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.75rem, 5vw, 4.25rem);
  overflow: hidden;
  padding: clamp(1.6rem, 5vw, 4rem);
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at 18% 24%, rgba(252, 79, 0, 0.18), transparent 20rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 30rem;
  height: 30rem;
  right: -18rem;
  top: -14rem;
  border-radius: 50%;
  background: rgba(252, 79, 0, 0.1);
  z-index: -2;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(252, 79, 0, 0.14);
  border-radius: calc(var(--radius-lg) - 12px);
  pointer-events: none;
  z-index: -1;
}

.hero-logo {
  width: min(100%, 292px);
  margin-inline: auto;
  filter: drop-shadow(0 20px 38px rgba(252, 79, 0, 0.14));
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.95rem;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  flex: 0 0 auto;
  width: 0.85rem;
  height: 0.85rem;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: none;
}

.hero-copy > .eyebrow {
  margin-bottom: 0.7rem;
  font-size: clamp(0.68rem, 0.9vw, 0.8rem);
  letter-spacing: 0.18em;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.1rem, 5.2vw, 4.75rem);
}

h2 {
  font-size: clamp(2rem, 4.2vw, 4.3rem);
}

h3 {
  font-size: clamp(1.16rem, 1.5vw, 1.45rem);
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.hero-lead {
  max-width: 620px;
  margin-top: 1rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.65rem;
}

.hero-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-legal-links a {
  color: inherit;
  text-decoration-color: rgba(11, 11, 11, 0.25);
}

.hero-legal-links a:hover,
.hero-legal-links a:focus-visible {
  color: var(--orange-dark);
  text-decoration-color: currentColor;
}

.hero-legal-links span {
  color: rgba(11, 11, 11, 0.25);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.1rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 14px 28px rgba(252, 79, 0, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: #fff;
  background: var(--orange-dark);
}

.button-secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line-strong);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--orange-dark);
  border-color: rgba(252, 79, 0, 0.45);
  box-shadow: 0 12px 24px rgba(11, 11, 11, 0.07);
}

.pulse-bars {
  position: absolute;
  right: clamp(1.5rem, 5vw, 5rem);
  bottom: -8px;
  display: flex;
  align-items: flex-end;
  gap: 0.7rem;
  opacity: 0.16;
  z-index: -1;
}

.pulse-bars span {
  display: block;
  width: clamp(2.4rem, 5vw, 4.8rem);
  background: var(--orange);
  border-radius: 999px 999px 0 0;
}

.pulse-bars span:nth-child(1) { height: 4.5rem; }
.pulse-bars span:nth-child(2) { height: 9rem; }
.pulse-bars span:nth-child(3) { height: 15rem; }
.pulse-bars span:nth-child(4) { height: 5.6rem; }

.section {
  padding: clamp(3rem, 7vw, 6.5rem) 0;
  scroll-margin-top: 100px;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.intro-layout,
.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.42fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: start;
}

.section-heading {
  position: sticky;
  top: 112px;
}

.section-heading > p:not(.eyebrow) {
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 1.04rem;
}

.story-card {
  position: relative;
  padding: clamp(1.4rem, 4vw, 3rem);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 70px rgba(11, 11, 11, 0.06);
}

.story-card::before {
  content: "";
  position: absolute;
  left: clamp(1.4rem, 4vw, 3rem);
  top: -0.45rem;
  width: 4.5rem;
  height: 0.9rem;
  background: var(--orange);
  border-radius: 999px;
}

.text-stack {
  color: #242424;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.legal-list {
  display: grid;
  gap: 1rem;
}

.legal-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 44px rgba(11, 11, 11, 0.045);
}

.legal-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--orange);
  opacity: 0.9;
}

.legal-card h3 + p,
.legal-card h3 + ul {
  margin-top: 1rem;
}

.legal-card p,
.legal-card li {
  color: #2f2f2f;
}

.plain-list {
  padding-left: 0;
  list-style: none;
}

.compact-list li + li {
  margin-top: 0.35rem;
}

.note {
  display: inline-flex;
  margin-top: 1.25rem;
  padding: 0.7rem 0.9rem;
  color: var(--ink) !important;
  font-weight: 900;
  background: rgba(252, 79, 0, 0.1);
  border: 1px solid rgba(252, 79, 0, 0.2);
  border-radius: 999px;
}


.section-survey {
  padding-top: clamp(2.5rem, 6vw, 5.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 5.5rem);
}

.survey-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  overflow: hidden;
  padding: clamp(1.35rem, 4vw, 3rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.9)),
    radial-gradient(circle at 10% 100%, rgba(252, 79, 0, 0.16), transparent 22rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.survey-card::before {
  content: "";
  position: absolute;
  right: -3.5rem;
  bottom: -5.5rem;
  width: 14rem;
  height: 14rem;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}

.survey-copy {
  position: relative;
  z-index: 1;
}

.survey-copy p:not(.eyebrow) {
  max-width: 36rem;
  margin-top: 1.15rem;
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 650;
}

.survey-actions {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.survey-button {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.15rem;
  min-height: 180px;
  padding: clamp(1.25rem, 3vw, 2rem);
  text-decoration: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.survey-button::after {
  content: "→";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-top: auto;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  border-radius: 999px;
}

.survey-button:hover,
.survey-button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(11, 11, 11, 0.1);
}

.survey-button span {
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  line-height: 1.25;
  text-transform: uppercase;
}

.survey-button strong {
  max-width: 14rem;
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  font-weight: 950;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.survey-button-primary {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 18px 34px rgba(252, 79, 0, 0.22);
}

.survey-button-primary:hover,
.survey-button-primary:focus-visible {
  color: #fff;
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.survey-button-primary::after {
  color: var(--orange);
  background: #fff;
}

.survey-button-secondary {
  color: var(--ink);
  background: #fff;
}

.survey-button-secondary:hover,
.survey-button-secondary:focus-visible {
  color: var(--orange-dark);
  border-color: rgba(252, 79, 0, 0.42);
}

.survey-button-secondary span {
  color: var(--orange-dark);
}

.survey-button-secondary::after {
  color: #fff;
  background: var(--ink);
}

.legal-compact-section {
  padding-top: clamp(1.8rem, 4vw, 3.25rem);
  padding-bottom: clamp(2.5rem, 5vw, 4.75rem);
  background: #fff;
}

.legal-disclosures {
  display: grid;
  max-width: 980px;
  gap: 0;
}

.legal-disclosure {
  scroll-margin-top: 112px;
  border-top: 1px solid var(--line);
}

.legal-disclosure:last-child {
  border-bottom: 1px solid var(--line);
}

.legal-disclosure summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: underline;
  text-decoration-color: rgba(11, 11, 11, 0.22);
  text-underline-offset: 0.22em;
  cursor: pointer;
  list-style: none;
}

.legal-disclosure summary::-webkit-details-marker {
  display: none;
}

.legal-disclosure summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 1.6rem;
  height: 1.6rem;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.legal-disclosure summary:hover,
.legal-disclosure summary:focus-visible {
  color: var(--orange-dark);
  text-decoration-color: currentColor;
  outline: none;
}

.legal-disclosure[open] summary {
  color: var(--orange-dark);
}

.legal-disclosure[open] summary::after {
  content: "−";
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.legal-disclosure-content {
  padding: 0.85rem 0 clamp(1.4rem, 4vw, 2.4rem);
}

.legal-intro {
  max-width: 760px;
  margin-bottom: 1.1rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.section-contest {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(252, 79, 0, 0.05)),
    #fff;
}

.site-footer {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  color: #fff;
  background: var(--ink);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-logo {
  display: block;
  width: 116px;
  padding: 0.7rem;
  background: #fff;
  border-radius: 20px;
}

.site-footer p + p {
  margin-top: 0.25rem;
}

.site-footer a {
  color: #fff;
  text-decoration-color: rgba(252, 79, 0, 0.8);
}

@media (max-width: 920px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 0;
  }

  .brand {
    width: 70px;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero-card,
  .intro-layout,
  .legal-layout,
  .survey-card {
    grid-template-columns: 1fr;
  }

  .hero-card {
    text-align: left;
  }

  .hero-logo {
    width: min(52vw, 220px);
    margin-inline: 0;
  }

  .section-heading {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 28px, var(--shell));
  }

  html {
    scroll-padding-top: 140px;
  }

  .main-nav a {
    min-height: 38px;
    padding: 0.45rem 0.7rem;
    font-size: 0.86rem;
  }

  .hero {
    padding-top: 1.4rem;
  }

  .hero-card {
    padding: 1.35rem;
    border-radius: 24px;
  }

  .hero-card::after {
    inset: 12px;
    border-radius: 16px;
  }

  h1 {
    font-size: clamp(1.85rem, 8.8vw, 2.65rem);
  }

  h1,
  h2 {
    letter-spacing: -0.06em;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    flex: 1 1 10rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions .button {
    width: auto;
  }

  .survey-actions {
    grid-template-columns: 1fr;
  }

  .survey-button {
    min-height: 152px;
  }

  .story-card,
  .legal-card {
    border-radius: 20px;
  }

  .note {
    align-items: center;
    border-radius: var(--radius-sm);
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
