:root {
  --bg-1: #f3f7ff;
  --bg-2: #eef5ef;
  --text-1: #162235;
  --text-2: #465468;
  --line: #d7e1ef;
  --card: rgba(255, 255, 255, 0.86);
  --primary: #0f355f;
  --primary-hover: #0a2745;
  --success: #0f9960;
  --danger: #bb2849;
  --shadow: 0 24px 70px rgba(13, 33, 63, 0.16);
  --radius: 20px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: "Segoe UI", "Inter", "Arial", sans-serif;
  color: var(--text-1);
  background: linear-gradient(120deg, var(--bg-1), var(--bg-2));
  line-height: 1.45;
}

.background-glow {
  position: fixed;
  inset: -200px;
  z-index: -1;
  background:
    radial-gradient(circle at 14% 20%, rgba(73, 124, 255, 0.28), transparent 36%),
    radial-gradient(circle at 84% 10%, rgba(19, 169, 138, 0.2), transparent 35%),
    radial-gradient(circle at 70% 80%, rgba(23, 94, 255, 0.1), transparent 44%);
}

.topbar,
.container,
.footer {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0 14px;
}

.logo {
  width: clamp(136px, 21vw, 186px);
  height: auto;
}

.lang {
  display: flex;
  gap: 6px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.lang button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 8px 10px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.lang button:hover,
.lang button:focus-visible {
  background: rgba(15, 53, 95, 0.1);
  color: var(--text-1);
  outline: none;
}

.lang button.active {
  background: var(--primary);
  color: #fff;
}

.container {
  display: grid;
  gap: 22px;
  padding: 10px 0 20px;
}

.card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero {
  padding: clamp(24px, 4vw, 44px);
}

.eyebrow {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
}

h1 {
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.06;
  margin-bottom: 14px;
}

.lead {
  max-width: 65ch;
  color: var(--text-2);
  font-size: clamp(16px, 2.4vw, 19px);
}

.waitlist {
  margin-top: 24px;
  display: flex;
  gap: 10px;
}

.waitlist input,
.waitlist button {
  border-radius: 12px;
  min-height: 52px;
  font-size: 16px;
}

.waitlist input {
  flex: 1;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  padding: 0 14px;
  color: var(--text-1);
}

.waitlist input::placeholder {
  color: #7d8a9d;
}

.waitlist input:focus-visible {
  border-color: #3f6fb0;
  outline: 3px solid rgba(63, 111, 176, 0.22);
}

.waitlist button {
  border: 0;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0 20px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.waitlist button:hover,
.waitlist button:focus-visible {
  background: var(--primary-hover);
}

.waitlist button:active {
  transform: translateY(1px);
}

.waitlist button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.privacy,
.status-message {
  margin-top: 12px;
  color: var(--text-2);
  font-size: 13px;
}

.status-message.error {
  color: var(--danger);
}

.success {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(15, 153, 96, 0.18);
  background: rgba(15, 153, 96, 0.08);
  border-radius: 12px;
  animation: fade-up 0.24s ease;
}

.success-icon {
  color: var(--success);
  font-weight: 800;
  margin-bottom: 4px;
}

.features {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature {
  padding: 22px;
}

.feature h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.feature p {
  color: var(--text-2);
}

.faq {
  padding: 24px;
}

.faq h2 {
  margin-bottom: 14px;
  font-size: clamp(24px, 3.8vw, 32px);
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 10px 0;
}

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

.faq summary {
  font-weight: 600;
  cursor: pointer;
}

.faq p {
  margin-top: 6px;
  color: var(--text-2);
}

.footer {
  padding: 24px 0 36px;
  color: #5f6f84;
  font-size: 13px;
}

.honeypot,
.hidden {
  display: none;
}

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

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .features {
    grid-template-columns: 1fr;
  }
}

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

  .container {
    gap: 16px;
  }

  .waitlist {
    flex-direction: column;
  }

  .waitlist button {
    width: 100%;
  }

  .hero,
  .feature,
  .faq {
    padding: 18px;
    border-radius: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.thank-layout {
  min-height: calc(100vh - 140px);
  align-content: center;
}

.thank-card {
  padding: clamp(24px, 4vw, 44px);
}

.thank-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.thank-cta:hover,
.thank-cta:focus-visible {
  background: var(--primary-hover);
}

.conversion-hints {
  margin-top: 16px;
  color: var(--text-2);
  font-size: 13px;
}

.cookie-section {
  padding: 24px;
}

.cookie-section h2 {
  margin-bottom: 10px;
  font-size: clamp(22px, 3.4vw, 30px);
}

.cookie-section p {
  color: var(--text-2);
  margin-bottom: 12px;
}

.cookie-link-btn {
  border: 0;
  background: transparent;
  color: var(--primary);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0;
}

.footer-cookie-btn {
  margin-top: 8px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 18, 31, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 50;
}

.cookie-modal-content {
  width: min(720px, 96vw);
  padding: 24px;
  position: relative;
}

.cookie-modal-close {
  border: 0;
  background: transparent;
  color: var(--text-2);
  cursor: pointer;
  font-size: 22px;
  position: absolute;
  top: 10px;
  right: 14px;
}

.cookie-modal-content h2 {
  margin-bottom: 8px;
  font-size: clamp(24px, 3.6vw, 34px);
}

.cookie-modal-content p {
  color: var(--text-2);
}

.cookie-list {
  margin: 14px 0;
  padding-left: 18px;
  color: var(--text-2);
  display: grid;
  gap: 7px;
}

.cookie-list strong {
  color: var(--text-1);
}

.cookie-modal-actions,
.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-secondary-btn {
  background: rgba(15, 53, 95, 0.08);
  color: var(--text-1);
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: min(980px, 94vw);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(9, 29, 56, 0.16);
  border-radius: 14px;
  padding: 14px;
  z-index: 60;
  display: grid;
  gap: 10px;
}

.cookie-banner p {
  color: var(--text-2);
  font-size: 14px;
}

@media (max-width: 640px) {
  .cookie-modal-content,
  .cookie-section {
    padding: 18px;
  }
}

.footer-links {
  margin-top: 8px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #4d6078;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-modal-actions button,
.cookie-banner-actions button {
  border: 0;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  min-height: 40px;
  padding: 0 14px;
  font-weight: 700;
  cursor: pointer;
}

.cookie-modal.hidden,
.cookie-banner.hidden {
  display: none;
}

/* Neo-brutalism overrides */
:root {
  --bg-1: #fef7e7;
  --bg-2: #f4d6ff;
  --text-1: #101010;
  --text-2: #2a2a2a;
  --line: #101010;
  --card: #ffffff;
  --primary: #111111;
  --primary-hover: #000000;
  --accent: #ffcb00;
  --success: #1b8f5a;
  --danger: #d82f45;
  --shadow: 8px 8px 0 #111111;
  --radius: 10px;
}

body {
  font-family: "Space Grotesk", "IBM Plex Mono", "Segoe UI", sans-serif;
  background:
    repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.06) 0 2px, transparent 2px 12px),
    linear-gradient(120deg, var(--bg-1), var(--bg-2));
}

.background-glow {
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 203, 0, 0.35), transparent 35%),
    radial-gradient(circle at 90% 10%, rgba(20, 20, 20, 0.18), transparent 32%),
    radial-gradient(circle at 70% 85%, rgba(255, 70, 120, 0.2), transparent 40%);
}

.card {
  border: 3px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: none;
}

.eyebrow {
  display: inline-block;
  background: var(--accent);
  color: #000;
  padding: 4px 8px;
  border-radius: 999px;
  border: 2px solid var(--line);
}

.lang {
  background: #fff;
  border: 2px solid var(--line);
  backdrop-filter: none;
}

.lang button {
  color: var(--text-1);
  border: 2px solid transparent;
  font-weight: 800;
}

.lang button:hover,
.lang button:focus-visible {
  background: var(--accent);
  color: #000;
}

.lang button.active {
  background: #000;
  color: #fff;
  border-color: #000;
}

.waitlist input {
  border: 3px solid var(--line);
  background: #fff;
}

.waitlist input:focus-visible {
  border-color: #000;
  outline: 3px solid var(--accent);
}

.waitlist button {
  border: 3px solid #000;
  background: var(--accent);
  color: #000;
  box-shadow: 4px 4px 0 #000;
}

.waitlist button:hover,
.waitlist button:focus-visible {
  background: #ffd94d;
}

.waitlist button:active {
  transform: translateY(1px);
  box-shadow: 2px 2px 0 #000;
}

.success {
  border: 3px solid var(--success);
  background: #e9ffe5;
  border-radius: 10px;
}

.feature h3 {
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.faq details {
  border-top: 2px solid var(--line);
}

.faq details:last-child {
  border-bottom: 2px solid var(--line);
}

.footer {
  color: #2b2b2b;
}

.thank-cta {
  border: 3px solid #000;
  background: var(--accent);
  color: #000;
  box-shadow: 4px 4px 0 #000;
}

.thank-cta:hover,
.thank-cta:focus-visible {
  background: #ffd94d;
}

.cookie-link-btn {
  color: #000;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.cookie-modal {
  background: rgba(0, 0, 0, 0.55);
}

.cookie-modal-close {
  border: 2px solid #000;
  border-radius: 999px;
  width: 36px;
  height: 36px;
  line-height: 30px;
  text-align: center;
}

.cookie-modal-actions button,
.cookie-banner-actions button {
  border: 3px solid #000;
  background: var(--accent);
  color: #000;
  box-shadow: 4px 4px 0 #000;
}

.cookie-secondary-btn {
  background: #fff6cc;
}

.cookie-banner {
  border: 3px solid var(--line);
  box-shadow: 6px 6px 0 #000;
  border-radius: 10px;
}

/* Neo-brutalism logo frame */
.brand {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  background: var(--accent);
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 #000000;
  border-radius: 8px;
}

.logo {
  display: block;
}




/* Extra brutalism: angles + sharp corners + hard dividers */
.card {
  border-radius: 4px;
}

.container > section + section {
  border-top: 4px solid #000;
  padding-top: 18px;
}

.features .feature:nth-child(1) {
  transform: rotate(-2.2deg);
  transform-origin: 20% 20%;
}

.features .feature:nth-child(2) {
  transform: rotate(2.0deg);
  transform-origin: 80% 20%;
}

.features .feature:nth-child(3) {
  transform: rotate(-1.6deg);
  transform-origin: 20% 80%;
}

@media (max-width: 920px) {
  .features .feature {
    transform: none;
  }
}

