@import url("https://fonts.googleapis.com/css2?family=Wix+Madefor+Display:wght@400;500;600;700;800&family=Wix+Madefor+Text:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap");

:root {
  --bg: #f4f4f1;
  --surface: #232a39;
  --surface-strong: #232a39;
  --text: #fefefe;
  --muted: #d9d9d9;
  --accent: #ddb770;
  --accent-strong: #c8a15f;
  --line: rgba(221, 183, 112, 0.2);
  --shadow: 0 22px 60px rgba(35, 42, 57, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(221, 183, 112, 0.18), transparent 28%),
    linear-gradient(180deg, #2a3245 0%, var(--surface-strong) 100%);
  color: var(--text);
  font-family: "Wix Madefor Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
}

main {
  display: block;
}

.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(760px, 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(35, 42, 57, 0.82);
  border-bottom: 1px solid rgba(221, 183, 112, 0.12);
}

.nav-wrap,
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-wrap {
  min-height: 72px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--text);
}

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

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(254, 254, 254, 0.78);
  text-decoration: none;
  transition: background 150ms ease, color 150ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  background: var(--accent);
  color: #232a39;
}

.hero,
.page-hero {
  padding: 84px 0 28px;
}

.hero-grid,
.split-grid {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  align-items: start;
}

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

.section {
  padding: 28px 0 72px;
}

.page-main .section {
  padding-top: 12px;
}

.eyebrow,
.section-label,
.placeholder-label,
.detail-label {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Wix Madefor Display", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.15;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  line-height: 1.2;
}

.hero h1,
.page-hero h1 {
  color: var(--text);
}

.lede,
.panel p,
.content-card p,
.detail-value {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.feature-card,
.panel,
.content-card {
  color: #232a39;
}

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

.button {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #232a39;
  text-decoration: none;
  font-family: "Wix Madefor Text", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  transition: transform 150ms ease, background 150ms ease;
}

.button.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(254, 254, 254, 0.2);
}

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

.button:not(.secondary):hover,
.button:not(.secondary):focus-visible {
  background: var(--accent-strong);
}

.feature-card,
.panel,
.content-card,
.verification-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(244, 244, 241, 0.96);
  box-shadow: var(--shadow);
}

.feature-card,
.panel,
.content-card {
  padding: 28px;
}

.feature-card h2,
.panel h2,
.content-card h2 {
  color: #232a39;
}

.feature-card p,
.feature-list,
.panel p,
.content-card p {
  color: rgba(35, 42, 57, 0.78);
}

.policy-section + .policy-section {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(221, 183, 112, 0.16);
}

.policy-section h2 {
  margin-bottom: 12px;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.feature-list {
  margin: 18px 0 0;
  padding-left: 18px;
  line-height: 1.8;
}

.placeholder-block {
  margin-top: 22px;
  padding: 20px;
  border: 1px dashed rgba(221, 183, 112, 0.34);
  border-radius: 18px;
  background: rgba(221, 183, 112, 0.08);
}

.verification-card {
  padding: 30px;
  background: var(--surface-strong);
  color: var(--text);
}

.verification-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.verification-subtitle {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.verification-section {
  margin-top: 8px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #22c55e;
  color: #fefefe;
  border: 1px solid #16a34a;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

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

.detail-item {
  padding: 18px;
  border-radius: 18px;
  background: rgba(254, 254, 254, 0.04);
  border: 1px solid rgba(221, 183, 112, 0.14);
}

.detail-value {
  margin-bottom: 0;
  color: var(--text);
}

.verification-copy {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.verification-state {
  padding: 30px;
}

.info-section + .info-section {
  padding-top: 24px;
  border-top: 1px solid rgba(221, 183, 112, 0.14);
}

.top-gap {
  margin-top: 24px;
}

.site-footer {
  padding: 0 0 28px;
}

.footer-wrap {
  padding-top: 18px;
  border-top: 1px solid rgba(221, 183, 112, 0.12);
  color: rgba(254, 254, 254, 0.72);
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .hero-grid,
  .split-grid,
  .verification-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1100px);
  }

  .nav-wrap,
  .footer-wrap,
  .verification-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-card,
  .panel,
  .content-card,
  .verification-card {
    padding: 22px;
    border-radius: 20px;
  }

  .hero,
  .page-hero {
    padding-top: 56px;
  }
}
