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

:root {
  --bg: #03040a;
  --bg-alt: #050814;
  --bg-card: #090c18;
  --border-subtle: #202637;
  --border-strong: #30384d;
  --gold: #f4c15f;
  --gold-soft: #f0d498;
  --blue: #4c7fff;
  --text-main: #f7f8ff;
  --text-muted: #a9afc2;
  --text-soft: #7b8298;
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.85);
  --shadow-strong: 0 32px 80px rgba(0, 0, 0, 0.95);
  --radius-lg: 20px;
  --radius-pill: 999px;
  --transition-fast: 150ms ease-out;
  --transition-med: 220ms ease-out;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background:
    radial-gradient(circle at 0% 0%, rgba(244, 193, 95, 0.08), transparent 55%),
    radial-gradient(circle at 90% 0%, rgba(76, 127, 255, 0.12), transparent 55%),
    radial-gradient(circle at 50% 120%, #03040a 0, #02030a 60%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 40px;
  display: flex;
  flex-direction: column;
}

/* Header */

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  gap: 16px;
}

.brand-mark {
  font-family: "UnifrakturCook", "Times New Roman", serif;
  font-size: 30px;
  letter-spacing: 0.05em;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.9);
}

.brand-tagline {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 6px;
  color: var(--text-soft);
}

.zone-pill {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(244, 193, 95, 0.55);
  background:
    radial-gradient(circle at 0 0, rgba(244, 193, 95, 0.22), transparent 60%),
    linear-gradient(120deg, #050814, #020309);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.9);
}

/* Layout */

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
  gap: 28px;
  margin-bottom: 40px;
}

.col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Typography & hero */

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 10px;
}

.hero-title {
  font-size: 34px;
  line-height: 1.18;
  margin-bottom: 10px;
}

.hero-substrap {
  font-size: 15px;
  color: var(--gold-soft);
  margin-bottom: 12px;
}

.hero-copy {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* Cards */

.card {
  position: relative;
  background:
    radial-gradient(circle at 0 0, rgba(244, 193, 95, 0.14), transparent 60%),
    radial-gradient(circle at 100% 0, rgba(76, 127, 255, 0.14), transparent 60%),
    linear-gradient(145deg, #050814, #020308);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.card::before {
  pointer-events: none;

  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.03), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-med);
}

.card:hover::before {
  opacity: 1;
}

.card-flagship {
  background:
    radial-gradient(circle at 0 0, rgba(244, 193, 95, 0.24), transparent 60%),
    linear-gradient(150deg, #080c16, #020308);
}

.card-why {
  background:
    radial-gradient(circle at 0 0, rgba(76, 127, 255, 0.22), transparent 60%),
    linear-gradient(150deg, #080b19, #020308);
}

.card-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.card-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-soft);
}

.flagship-subtitle {
  font-size: 16px;
}

.card-caption {
  font-size: 12px;
  color: var(--text-soft);
}

.card-copy {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 10px;
}

.card-list {
  list-style: none;
  margin-left: 0;
  margin-top: 4px;
}

.card-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 6px;
}

.card-list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--gold-soft);
}

/* Forms */

.form-inline {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.form-vertical {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.field span {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
  color: var(--text-soft);
}

.input {
  width: 100%;
  padding: 9px 11px;
  border-radius: 11px;
  border: 1px solid #23283a;
  background: #050716;
  color: var(--text-main);
  font-size: 13px;
}

.input::placeholder {
  color: #6d7385;
}

.input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(244, 193, 95, 0.4);
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
  color: var(--text-soft);
}

.checkbox-field input {
  margin-top: 3px;
}

/* Buttons */

.btn {
  border-radius: 13px;
  border: none;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    color var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(120deg, #f4c15f, #f0d498);
  color: #151515;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.75);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.95);
}

.btn-full {
  width: 100%;
  background: linear-gradient(120deg, #f4c15f, #e3b147);
  color: #151515;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.9);
}

.btn-full:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 1);
}

/* Helper & success text */

.helper-text {
  margin-top: 8px;
  font-size: 12px;
  min-height: 16px;
}

.helper-text--inside {
  color: #79ffb0;
}

.helper-text--london {
  color: #f4c15f;
}

.helper-text--outside {
  color: #ff8a8a;
}

.success-text {
  margin-top: 8px;
  font-size: 12px;
  color: #79ffb0;
  min-height: 16px;
}

.submissions-note {
  margin-top: 10px;
  font-size: 11px;
  color: var(--text-soft);
}

/* Trust badges */

.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.badge {
  background:
    linear-gradient(145deg, #060816, #02030b);
  border-radius: 14px;
  border: 1px solid #232637;
  padding: 10px 12px;
}

.badge h3 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin-bottom: 4px;
  color: var(--gold-soft);
}

.badge p {
  font-size: 11px;
  color: var(--text-soft);
}

/* Static pages */

.static-layout {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.static-card {
  background:
    radial-gradient(circle at 0 0, rgba(244, 193, 95, 0.14), transparent 60%),
    linear-gradient(150deg, #050814, #020308);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 20px 22px 20px;
  box-shadow: var(--shadow-soft);
}

.static-title {
  font-size: 20px;
  margin-bottom: 8px;
}

.static-meta {
  font-size: 12px;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.static-body h2 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin-top: 18px;
  margin-bottom: 8px;
  color: var(--gold-soft);
}

.static-body p,
.static-body li {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.static-body ul {
  margin-left: 18px;
  margin-top: 4px;
}

/* Footer */

.site-footer {
  border-top: 1px solid #151824;
  padding-top: 16px;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 11px;
  color: var(--text-soft);
}

.footer-line {
  margin-top: 4px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-nav a {
  color: var(--text-soft);
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--gold-soft);
}

/* Responsive */

@media (max-width: 960px) {
  .layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .col-right {
    order: -1;
  }

  .static-card {
    padding: 18px 16px 18px;
  }
}

@media (max-width: 600px) {
  .page {
    padding: 20px 16px 30px;
  }

  .hero-title {
    font-size: 28px;
  }

  .form-inline {
    flex-direction: column;
  }

  .trust-badges {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .zone-pill {
    align-self: flex-start;
  }

  .site-footer {
    flex-direction: column;
  }
}
