:root {
  --page-bg: #fffdf6;
  --surface: #ffffff;
  --surface-muted: #fff8d9;
  --surface-strong: #111111;
  --text: #121212;
  --text-soft: #505050;
  --border: rgba(18, 18, 18, 0.08);
  --shadow: 0 24px 60px rgba(18, 18, 18, 0.08);
  --yellow: #f6c200;
  --yellow-deep: #d9a800;
  --yellow-soft: rgba(246, 194, 0, 0.18);
  --success: #0f8a4b;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --content-width: 1480px;
  --heading-font: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  --body-font: "Segoe UI", "Helvetica Neue", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(246, 194, 0, 0.22), transparent 36%),
    linear-gradient(180deg, #fffef9 0%, var(--page-bg) 44%, #fffbe8 100%);
}

html.no-js .js-only {
  display: none !important;
}

html.js .no-js-note {
  display: none;
}

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

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.site-shell::before {
  width: 320px;
  height: 320px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(246, 194, 0, 0.24) 0%, rgba(246, 194, 0, 0) 72%);
}

.site-shell::after {
  width: 280px;
  height: 280px;
  bottom: 22%;
  left: -130px;
  background: radial-gradient(circle, rgba(17, 17, 17, 0.08) 0%, rgba(17, 17, 17, 0) 74%);
}

.topbar,
.content-section,
.split-section,
.site-footer,
.legal-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2.5rem), var(--content-width));
  margin: 0 auto;
}

.hero {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2.5rem), 1520px);
  margin: 0 auto;
}

.topbar {
  padding: 1.15rem 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand img {
  flex-shrink: 0;
}

.brand-wordmark {
  width: clamp(260px, 26vw, 450px);
  height: auto;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-lockup strong {
  font-family: var(--heading-font);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.brand-lockup small {
  font-size: 0.84rem;
  color: var(--text-soft);
}

.language-switcher {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
}

.language-switcher a {
  min-width: 44px;
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  font-size: 0.86rem;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.language-switcher a:hover,
.language-switcher a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(18, 18, 18, 0.18);
}

.language-switcher a[aria-current="page"] {
  background: var(--surface-strong);
  color: #ffffff;
  border-color: var(--surface-strong);
}

.hero {
  padding: 2.3rem 0 3.4rem;
  display: grid;
  gap: 1.3rem;
}

.hero-copy,
.form-card,
.info-card,
.notice-card,
.legal-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 46px rgba(18, 18, 18, 0.06);
  backdrop-filter: blur(12px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 2rem 2.1rem;
  max-width: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 251, 235, 0.96)),
    radial-gradient(circle at top left, rgba(246, 194, 0, 0.08), transparent 46%);
}

.eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-size: 0.8rem;
  line-height: 1.1;
  max-width: none;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--yellow);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--heading-font);
  line-height: 1.04;
}

.hero-copy h1 {
  font-size: clamp(2.95rem, 4.8vw, 5rem);
  letter-spacing: -0.04em;
  line-height: 0.92;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.hero-lead {
  margin: 0;
  max-width: 24rem;
  font-size: clamp(1.04rem, 2.2vw, 1.32rem);
  line-height: 1.7;
  color: var(--text-soft);
  text-wrap: pretty;
}

.transparency-note {
  margin: 0.1rem 0 0;
  max-width: 27rem;
  padding: 1.05rem 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(246, 194, 0, 0.09);
  font-size: 0.98rem;
  line-height: 1.6;
}

.hero-badges {
  margin: 0.55rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-badges span {
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 18, 18, 0.08);
  background: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  font-size: 0.92rem;
}

.form-card {
  padding: 1.85rem 1.95rem;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 58px rgba(18, 18, 18, 0.08);
}

.form-card h2 {
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.form-intro {
  margin: 0.65rem 0 1.35rem;
  max-width: 58rem;
  color: var(--text-soft);
  font-size: 1.03rem;
  line-height: 1.6;
}

.field-grid {
  display: grid;
  gap: 1.05rem;
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field label {
  font-size: 0.93rem;
  font-weight: 700;
}

.field select {
  width: 100%;
  appearance: none;
  border: 1px solid rgba(18, 18, 18, 0.14);
  border-radius: var(--radius-sm);
  min-height: 60px;
  padding: 1rem 1rem;
  font: inherit;
  color: var(--text);
  background:
    linear-gradient(45deg, transparent 50%, var(--text) 50%),
    linear-gradient(135deg, var(--text) 50%, transparent 50%),
    linear-gradient(to right, transparent, transparent);
  background-position:
    calc(100% - 22px) calc(1.1rem + 1px),
    calc(100% - 16px) calc(1.1rem + 1px),
    0 0;
  background-size: 6px 6px, 6px 6px, 100% 100%;
  background-repeat: no-repeat;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.field select:focus-visible,
.field select:hover {
  outline: none;
  border-color: rgba(18, 18, 18, 0.28);
  box-shadow: 0 0 0 5px rgba(246, 194, 0, 0.18);
}

.field select[aria-invalid="true"] {
  border-color: rgba(178, 48, 48, 0.5);
  box-shadow: 0 0 0 5px rgba(178, 48, 48, 0.08);
}

.form-hint,
.inline-privacy,
.form-feedback,
.card-text,
.section-text,
.legal-body p,
.legal-list,
.notice-list {
  line-height: 1.65;
}

.form-hint {
  margin: 1rem 0 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.form-actions {
  margin-top: 1.3rem;
  display: grid;
  gap: 0.8rem;
}

.form-actions .cta-button {
  width: 100%;
  min-height: 62px;
  font-size: 1.04rem;
}

.cta-button,
.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.95rem 1.25rem;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.cta-button {
  color: #111111;
  background: linear-gradient(180deg, #ffd94f 0%, var(--yellow) 100%);
  box-shadow: 0 16px 34px rgba(246, 194, 0, 0.34);
}

.cta-button:hover,
.cta-button:focus-visible,
.ghost-link:hover,
.ghost-link:focus-visible {
  transform: translateY(-1px);
}

.cta-button:disabled {
  cursor: wait;
  opacity: 0.84;
}

.ghost-link {
  color: #ffffff;
  background: var(--surface-strong);
}

.inline-privacy,
.form-feedback {
  margin: 0;
  font-size: 0.93rem;
  color: var(--text-soft);
}

.form-feedback {
  min-height: 1.45rem;
}

.content-section {
  padding: 0 0 2.2rem;
}

.section-heading {
  margin-bottom: 1rem;
  display: grid;
  gap: 0.65rem;
}

.section-heading h2 {
  font-size: clamp(1.7rem, 4vw, 2.45rem);
  letter-spacing: -0.035em;
}

.section-text {
  margin: 0;
  max-width: 44rem;
  color: var(--text-soft);
}

.route-grid,
.benefit-grid {
  display: grid;
  gap: 1rem;
}

.info-card {
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.info-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 194, 0, 0.2) 0%, rgba(246, 194, 0, 0) 72%);
}

.card-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  background: var(--surface-muted);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.info-card h3 {
  margin-top: 0.9rem;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.card-text {
  margin: 0.8rem 0 0;
  color: var(--text-soft);
}

.benefit-card {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(18, 18, 18, 0.06);
}

.benefit-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--heading-font);
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.split-section {
  padding: 0 0 2.8rem;
  display: grid;
  gap: 1rem;
}

.notice-card {
  padding: 1.6rem;
}

.notice-card--accent {
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.96), rgba(34, 34, 34, 0.96));
  color: #ffffff;
}

.notice-card h2 {
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.notice-list,
.legal-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.notice-list li,
.legal-list li {
  margin-bottom: 0.55rem;
}

.site-footer {
  padding: 0 0 2rem;
  display: grid;
  gap: 0.75rem;
  color: var(--text-soft);
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
}

.legal-shell {
  padding: 2rem 0 3rem;
}

.legal-card {
  padding: 1.5rem;
}

.legal-title {
  max-width: none;
  font-size: clamp(2rem, 5vw, 3.3rem);
}

.legal-meta {
  margin: 0.9rem 0 1.25rem;
  color: var(--text-soft);
}

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

.legal-body h2 {
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.legal-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.ghost-link--light {
  color: var(--text);
  background: transparent;
  border: 1px solid rgba(18, 18, 18, 0.12);
}

.redirect-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at top, rgba(246, 194, 0, 0.24), transparent 30%),
    linear-gradient(180deg, #fffef8 0%, #fff7d1 100%);
}

.redirect-card {
  width: min(100%, 560px);
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(18, 18, 18, 0.08);
  box-shadow: var(--shadow);
  text-align: center;
}

.redirect-card h1 {
  max-width: none;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
}

.redirect-card p {
  line-height: 1.6;
  color: var(--text-soft);
}

.redirect-links {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.redirect-multilingual {
  margin-top: 1rem;
  display: grid;
  gap: 0.45rem;
  font-size: 0.92rem;
}

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

@media (min-width: 720px) {
  .hero {
    padding-top: 2.6rem;
  }

  .field-grid,
  .route-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-card .field:last-child {
    grid-column: 1 / -1;
  }

  .split-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

@media (max-width: 820px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .language-switcher {
    justify-content: flex-start;
  }

  .hero,
  .topbar,
  .content-section,
  .split-section,
  .site-footer,
  .legal-shell {
    width: min(calc(100% - 1.25rem), var(--content-width));
  }
}

@media (min-width: 980px) {
  .hero {
    grid-template-columns: minmax(380px, 0.62fr) minmax(860px, 1.38fr);
    align-items: start;
    gap: 1rem;
  }

  .hero-copy,
  .form-card {
    padding: 2.3rem;
  }

  .form-card {
    max-width: 1080px;
    justify-self: stretch;
  }

  .route-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .hero {
    grid-template-columns: minmax(430px, 0.68fr) minmax(940px, 1.32fr);
  }

  .hero-copy {
    padding: 2.3rem 2.35rem;
  }

  .form-card {
    padding: 2.45rem;
  }

  .form-card h2 {
    font-size: 1.72rem;
  }
}
