:root {
  --ink: #101820;
  --paper: #fffaf1;
  --paper-soft: #f4e7d2;
  --navy: #07131f;
  --navy-2: #0d2231;
  --rose: #c7535d;
  --rose-dark: #9d3740;
  --green: #6d7f52;
  --blue: #8eb7ff;
  --amber: #f2b14c;
  --muted: #6f7069;
  --line: rgba(16, 24, 32, 0.14);
  --line-dark: rgba(255, 250, 241, 0.16);
  --shadow: 0 24px 70px rgba(7, 19, 31, 0.18);
  --font-sans: "Manrope", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(7, 19, 31, 0.86);
  color: var(--paper);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--rose), var(--amber));
  color: #fff;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 250, 241, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  gap: 20px;
  color: rgba(255, 250, 241, 0.82);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a:hover {
  color: var(--paper);
}

.nav-cta {
  padding: 10px 14px;
  border: 1px solid rgba(255, 250, 241, 0.28);
  border-radius: 999px;
  white-space: nowrap;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.08);
  flex: 0 0 auto;
}

.language-option {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 5px 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 250, 241, 0.76);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
}

.language-option[aria-pressed="true"] {
  background: rgba(255, 250, 241, 0.16);
  color: var(--paper);
}

.language-option img {
  width: 24px;
  height: 16px;
  border-radius: 4px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: 86vh;
  overflow: hidden;
  padding: clamp(70px, 8vw, 112px) clamp(18px, 6vw, 86px);
  background:
    radial-gradient(circle at 15% 15%, rgba(199, 83, 93, 0.22), transparent 28rem),
    radial-gradient(circle at 86% 16%, rgba(142, 183, 255, 0.2), transparent 24rem),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--paper);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  content: "";
}

.hero::before {
  inset: 10% -34% 32%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    transparent 34%,
    rgba(242, 177, 76, 0.08) 42%,
    rgba(199, 83, 93, 0.22) 48%,
    rgba(142, 183, 255, 0.24) 53%,
    rgba(242, 177, 76, 0.12) 59%,
    transparent 68%,
    transparent 100%
  );
  filter: blur(18px);
  opacity: 0.9;
  transform: translateX(-54%) skewY(-4deg);
  animation: lead-wave 7.2s cubic-bezier(0.72, 0, 0.24, 1) infinite;
}

.hero::after {
  top: 38%;
  left: -20%;
  width: 42%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(242, 177, 76, 0.15),
    rgba(255, 250, 241, 0.72),
    rgba(142, 183, 255, 0.42),
    transparent
  );
  border-radius: 999px;
  box-shadow:
    0 0 20px rgba(242, 177, 76, 0.4),
    0 0 44px rgba(142, 183, 255, 0.28);
  transform: translateX(-40%) rotate(-2deg);
  animation: lead-trace 7.2s cubic-bezier(0.72, 0, 0.24, 1) infinite;
}

.hero-field {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 250, 241, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 241, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 35%, #000 0%, transparent 70%);
  animation: field-drift 18s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--amber);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

h1 {
  max-width: 18ch;
  margin-bottom: 34px;
  font-family: var(--font-display);
  font-size: clamp(2.85rem, 5.6vw, 5.25rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 0.88;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 5.5vw, 5.8rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 720px;
  color: rgba(255, 250, 241, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.32;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 14px 30px rgba(199, 83, 93, 0.25);
}

.button-primary:hover {
  background: var(--rose-dark);
}

.button-secondary {
  border: 1px solid rgba(255, 250, 241, 0.22);
  background: rgba(255, 250, 241, 0.08);
  color: var(--paper);
}

.launch-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 380px);
  margin-top: 46px;
  padding: 20px;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background: rgba(255, 250, 241, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.status-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 24px var(--amber);
}

.launch-panel dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.launch-panel div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.launch-panel dt {
  color: rgba(255, 250, 241, 0.62);
}

.launch-panel dd {
  margin: 0;
  font-weight: 900;
}

@keyframes lead-wave {
  0%,
  18% {
    opacity: 0;
    transform: translateX(-54%) skewY(-4deg);
  }

  30% {
    opacity: 0.92;
  }

  58% {
    opacity: 0.78;
  }

  78%,
  100% {
    opacity: 0;
    transform: translateX(54%) skewY(-4deg);
  }
}

@keyframes lead-trace {
  0%,
  18% {
    opacity: 0;
    transform: translateX(-40%) rotate(-2deg);
  }

  32%,
  56% {
    opacity: 1;
  }

  78%,
  100% {
    opacity: 0;
    transform: translateX(330%) rotate(-2deg);
  }
}

@keyframes field-drift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 64px 64px, 64px 64px;
  }
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px clamp(18px, 6vw, 86px);
  background: var(--paper-soft);
}

.trust-strip span {
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.section {
  padding: clamp(70px, 9vw, 128px) clamp(18px, 6vw, 86px);
}

.section-heading,
.problem {
  display: grid;
  gap: 28px;
}

.problem {
  background: var(--paper);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.problem-grid,
.offer-grid,
.pricing-grid,
.timeline {
  display: grid;
  gap: 16px;
}

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

.problem article,
.offer-grid article,
.pricing-grid article,
.timeline article,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 12px 32px rgba(16, 24, 32, 0.06);
}

.problem article,
.offer-grid article,
.timeline article {
  padding: 22px;
}

.problem span,
.timeline span,
.package-label,
.featured-card span,
.more-examples span {
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.problem p,
.offer-grid p,
.featured-card p,
.timeline p,
.contact p,
.international-note,
.market-note {
  color: var(--muted);
  line-height: 1.65;
}

.offer {
  background: var(--paper-soft);
}

.offer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
}

.examples {
  background: var(--navy);
  color: var(--paper);
}

.examples .eyebrow,
.examples .featured-card span,
.examples .more-examples span {
  color: var(--amber);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.featured-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  background: rgba(255, 250, 241, 0.08);
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.featured-card:hover,
.compact-card:hover {
  border-color: rgba(242, 177, 76, 0.52);
  background: rgba(255, 250, 241, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}

.featured-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.featured-card div {
  padding: 22px;
}

.more-examples {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.compact-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  min-height: 112px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background: rgba(255, 250, 241, 0.06);
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.compact-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 112px;
  object-fit: cover;
  object-position: left center;
}

.compact-card div {
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 16px 18px;
}

.compact-card strong {
  font-size: 1.06rem;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.pricing-grid article {
  padding: 24px;
}

.pricing-grid .is-featured {
  background: var(--navy);
  color: var(--paper);
  transform: translateY(-10px);
}

.pricing-grid h3 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: -0.04em;
}

.pricing-grid ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.international-note {
  max-width: 720px;
  margin: 24px 0 0;
}

.process {
  background: var(--paper-soft);
}

.process-copy {
  max-width: 900px;
}

.timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: 30px;
  background:
    radial-gradient(circle at 20% 20%, rgba(199, 83, 93, 0.12), transparent 30rem),
    var(--navy);
  color: var(--paper);
}

.contact-intro,
.contact-forms {
  display: grid;
  gap: 22px;
}

.contact .eyebrow {
  color: var(--amber);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: rgba(255, 250, 241, 0.08);
  border-color: var(--line-dark);
}

.request-type-field {
  display: grid;
  gap: 12px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.request-type-field legend {
  margin-bottom: 12px;
  color: rgba(255, 250, 241, 0.86);
  font-weight: 900;
}

.request-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.request-option {
  position: relative;
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: 12px;
  background: rgba(255, 250, 241, 0.06);
  color: var(--paper);
  font-size: 0.92rem;
  line-height: 1.25;
  cursor: pointer;
}

.request-option input {
  width: 16px;
  min-height: 16px;
  flex: 0 0 16px;
  padding: 0;
  accent-color: var(--amber);
}

.request-option:has(input:checked) {
  border-color: rgba(242, 177, 76, 0.72);
  background: rgba(242, 177, 76, 0.14);
}

.request-helper {
  margin: 0;
  padding: 12px 14px;
  border-left: 3px solid var(--amber);
  border-radius: 8px;
  background: rgba(7, 19, 31, 0.26);
  color: rgba(255, 250, 241, 0.76);
  font-weight: 700;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 241, 0.78);
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: rgba(255, 250, 241, 0.96);
  color: var(--ink);
}

.contact-form .request-option {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  color: var(--paper);
}

.contact-form .request-option input {
  width: 16px;
  min-height: 16px;
  padding: 0;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--amber);
  outline: 3px solid rgba(242, 177, 76, 0.22);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-widget {
  min-height: 65px;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--paper);
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  padding: 22px clamp(18px, 6vw, 86px);
  background: var(--navy);
  color: rgba(255, 250, 241, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-footer a:hover {
  color: var(--paper);
}

.cookie-notice {
  position: fixed;
  right: clamp(14px, 4vw, 28px);
  bottom: clamp(14px, 4vw, 28px);
  z-index: 40;
  display: none;
  width: min(440px, calc(100vw - 28px));
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 16px;
  background: rgba(7, 19, 31, 0.94);
  color: var(--paper);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.cookie-notice.is-visible {
  display: flex;
}

.cookie-notice p {
  margin: 0;
  color: rgba(255, 250, 241, 0.78);
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-notice a {
  color: var(--amber);
  font-weight: 900;
}

.cookie-close {
  flex: 0 0 auto;
  min-width: 52px;
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--amber);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.legal-page {
  background: var(--paper);
}

.legal-main {
  display: grid;
  gap: 24px;
  max-width: 900px;
  padding: clamp(70px, 9vw, 118px) clamp(18px, 6vw, 86px);
}

.legal-main h1 {
  max-width: none;
  font-size: clamp(2.6rem, 9vw, 5rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.legal-main .button-secondary {
  width: fit-content;
  border-color: var(--line);
  color: var(--ink);
}

.legal-main section {
  display: grid;
  gap: 10px;
}

.legal-main p,
.legal-main li {
  color: var(--muted);
  line-height: 1.7;
}

@media (min-width: 980px) {
  .hero {
    grid-template-columns: minmax(0, 0.95fr) 380px;
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
  }

  .launch-panel {
    margin-top: 0;
  }

  .section-heading {
    grid-template-columns: 260px minmax(0, 1fr);
  }
}

@media (max-width: 980px) {
  .site-nav a:not(.nav-cta) {
    display: none;
  }

  .problem,
  .featured-grid,
  .pricing-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .offer-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid .is-featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: center;
    gap: 10px;
    padding: 12px clamp(12px, 3vw, 18px);
  }

  .brand small {
    display: none;
  }

  .site-nav {
    flex: 0 0 auto;
    gap: 0;
  }

  .nav-cta {
    padding: 9px 13px;
  }

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

  .language-option {
    justify-content: flex-start;
    width: auto;
    min-height: 32px;
    padding: 5px 9px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .problem-grid,
  .offer-grid,
  .timeline,
  .more-examples {
    grid-template-columns: 1fr;
  }

  .request-options {
    grid-template-columns: 1fr;
  }

  .cookie-notice.is-visible {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .site-header {
    justify-content: space-between;
  }

  .site-nav {
    display: none;
  }
}

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