:root {
  --gold: #CFAF63;
  --pink: #F7CDD9;
  --purple: #CBC3F4;
  --blue: #BEE3F8;
  --green: #C6F6D5;
  --midnight: #1C1F26;
  --graphite: #2f3644;
  --slate: #FAFAFC;
  --canvas: #FAFAFC;
  --surface: #ffffff;
  --surface-alt: #f4f5fb;
  --border: #e7e8f0;
  --text-primary: #1C1F26;
  --text-secondary: #2f3644;
  --text-muted: #596072;
  --card: rgba(255, 255, 255, 0.98);
  --shadow: 0 14px 40px rgba(31, 41, 62, 0.14);
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: radial-gradient(80% 80% at 20% 20%, rgba(207, 175, 99, 0.12), transparent),
    radial-gradient(70% 70% at 80% 0%, rgba(203, 195, 244, 0.24), transparent),
    radial-gradient(60% 60% at 10% 80%, rgba(190, 227, 248, 0.3), transparent),
    radial-gradient(60% 60% at 90% 60%, rgba(198, 246, 213, 0.32), transparent),
    var(--canvas);
  color: var(--text-primary);
  min-height: 100vh;
  transition: background 200ms ease, color 200ms ease;
}

a,
.section,
section[id] {
  scroll-margin-top: 90px;
}

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

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(44, 52, 72, 0.08);
  background: rgba(250, 250, 252, 0.98);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 999px;
}

.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.logo-img {
  height: 69px;
  width: auto;
  display: block;
}

.logo-img.header-tight {
  height: 106px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(31, 41, 62, 0.12);
}

.nav-links {
  display: flex;
  gap: 18px;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 15px;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links.open {
  display: grid;
  gap: 12px;
}

.cta-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(44, 52, 72, 0.08);
  font-weight: 700;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background 160ms ease;
  color: var(--text-primary);
  background: var(--surface);
}

.btn-primary {
  background: linear-gradient(135deg, #d8b15a, #c79a34);
  color: #1f2430;
  border: 1px solid rgba(199, 154, 52, 0.55);
  box-shadow: 0 18px 38px rgba(31, 41, 62, 0.22), 0 0 0 2px rgba(199, 154, 52, 0.18);
}

.btn-secondary {
  background: linear-gradient(135deg, rgba(203, 195, 244, 0.26), rgba(198, 246, 213, 0.3));
  border: 1px solid rgba(44, 52, 72, 0.12);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(31, 41, 62, 0.2);
}

.share-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(44, 52, 72, 0.1);
  background: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.share-btn img {
  width: 24px;
  height: 24px;
  display: block;
}

.share-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(31, 41, 62, 0.18);
}
main {
  flex: 1;
}

.section {
  padding: 18px 0 12px;
  scroll-margin-top: 90px;
}

.hero {
  padding: 90px 0 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: linear-gradient(135deg, rgba(247, 205, 217, 0.3), rgba(203, 195, 244, 0.26));
  color: var(--text-primary);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.3px;
  font-size: 13px;
}

.emphasis-pill {
  background: linear-gradient(135deg, rgba(199, 154, 52, 0.24), rgba(199, 154, 52, 0.18));
  border: 1px solid rgba(199, 154, 52, 0.35);
}

.headline {
  font-size: clamp(38px, 5vw, 54px);
  margin: 12px 0 14px;
  line-height: 1.05;
}

.subhead {
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.5;
  max-width: 640px;
}

.tagline {
  margin-top: 14px;
  color: var(--text-secondary);
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.section-title {
  font-size: 28px;
  margin: 0 0 18px;
  letter-spacing: 0.2px;
}

.feature-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.icon-badge {
  width: 64px;
  height: 64px;
  padding: 8px;
  display: grid;
  place-items: center;
}

.icon {
  width: 48px;
  height: 48px;
  padding: 6px;
  border-radius: 10px;
  background: #fff;
  display: block;
}

.logo-icon {
  width: 24px;
  height: 24px;
  display: block;
}

.account-left {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.badge {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(207, 175, 99, 0.22), rgba(203, 195, 244, 0.3));
  color: var(--midnight);
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 20px rgba(31, 41, 62, 0.15);
  border: 1px solid rgba(207, 175, 99, 0.28);
}

.feature p {
  margin: 0;
  color: var(--text-secondary);
}

.feature::before,
.feature::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(26px);
  opacity: 0.5;
  z-index: 0;
}

.feature::before {
  width: 120px;
  height: 120px;
  top: -20px;
  right: -30px;
  background: radial-gradient(circle, rgba(207, 175, 99, 0.32), rgba(203, 195, 244, 0));
}

.feature::after {
  width: 90px;
  height: 90px;
  bottom: -30px;
  left: -20px;
  background: radial-gradient(circle, rgba(190, 227, 248, 0.4), rgba(198, 246, 213, 0));
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.logo-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(207, 175, 99, 0.26), rgba(207, 175, 99, 0.16));
  border: 1px solid rgba(207, 175, 99, 0.35);
  box-shadow: 0 6px 16px rgba(31, 41, 62, 0.12);
  position: relative;
  z-index: 1;
}

.logo-icon {
  width: 48px;
  height: 48px;
  display: block;
  padding: 6px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(31, 41, 62, 0.12);
  object-fit: contain;
}

.carrier-logo {
  width: 128px;
  height: 48px;
  padding: 8px 10px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(31, 41, 62, 0.12);
  object-fit: contain;
}

.logo-icon.mono {
  background: var(--surface-alt);
  box-shadow: 0 2px 6px rgba(31, 41, 62, 0.1);
  filter: grayscale(1);
}

.logo-text {
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--text-primary);
  font-size: 13px;
}

.why {
  padding: 32px 0 16px;
}

.columns {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pricing-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.price {
  font-size: 32px;
  margin: 6px 0;
}

.muted {
  color: var(--text-muted);
}

.list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.list li {
  color: var(--text-secondary);
  display: flex;
  gap: 8px;
}

.footer {
  padding: 46px 0 32px;
  border-top: 1px solid var(--border);
  margin-top: 20px;
}

.footer .cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.footer .brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
}

.footer .brand-mark img {
  width: 80px;
  height: auto;
}

.footer .legal-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.cards-row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.accounts {
  display: grid;
  gap: 10px;
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion-header {
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 12px 14px;
  border: none;
  background: linear-gradient(135deg, rgba(203, 195, 244, 0.18), rgba(198, 246, 213, 0.2));
  font-weight: 700;
  color: var(--text-primary);
}

.accordion-item {
  border: 1px solid rgba(44, 52, 72, 0.12);
  border-radius: 14px;
  background: var(--surface);
}

.accordion-radio {
  display: none;
}

.accordion-header {
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 12px 14px;
  border: none;
  background: linear-gradient(135deg, rgba(203, 195, 244, 0.18), rgba(198, 246, 213, 0.2));
  font-weight: 700;
  color: var(--text-primary);
  display: block;
}

.accordion-radio:checked + .accordion-header {
  background: linear-gradient(135deg, var(--gold), var(--pink));
  color: var(--midnight);
  box-shadow: 0 12px 28px rgba(31, 41, 62, 0.18);
}

.accordion-panel {
  display: none;
  padding: 10px 12px 12px;
}

.accordion-radio:checked + .accordion-header + .accordion-panel {
  display: grid;
  gap: 10px;
}

.account {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
  padding: 10px 12px;
  background: var(--surface-alt);
  border-radius: 12px;
}

.account span {
  color: var(--text-secondary);
}

.account strong {
  margin-left: auto;
  text-align: right;
  word-break: break-word;
  color: var(--text-primary);
}

.form-control {
  display: grid;
  gap: 6px;
}

.form-control input,
.form-control textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 15px;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: var(--text-primary);
}

.chip {
  background: rgba(203, 195, 244, 0.26);
  color: var(--text-primary);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.profile-header {
  display: flex;
  gap: 14px;
  align-items: center;
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(247, 205, 217, 0.3), rgba(203, 195, 244, 0.3));
  display: grid;
  place-items: center;
  font-weight: 800;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  border: 2px solid rgba(160, 140, 220, 0.12);
}

.onboarding-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.onboard-step h4 {
  margin: 6px 0;
}

.onboard-step p {
  margin: 0;
  color: var(--text-secondary);
}

.small-text {
  font-size: 13px;
  line-height: 1.4;
}

.secure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  align-items: start;
}

.key-panel {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 240, 255, 0.95));
  border: 1px solid var(--border);
}

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

.text-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-weight: 700;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 8px;
}

.text-btn:hover {
  background: var(--surface-alt);
}

.text-btn.danger {
  color: #b64848;
}

.key-group {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
  background: var(--surface-alt);
  margin-bottom: 12px;
}

.key-group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  gap: 8px;
}

.key-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
}

.key-group .key-row:first-of-type {
  border-top: none;
  padding-top: 0;
}

.key-label {
  font-weight: 700;
}

.key-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.pill-compact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  background: rgba(207, 175, 99, 0.14);
  color: var(--text-primary);
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
}

.status-badge {
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.status-badge.verified {
  background: rgba(27, 182, 120, 0.14);
  color: #1bb678;
}

.status-badge.muted {
  background: var(--surface);
  color: var(--text-secondary);
}

.key-note {
  margin-top: 6px;
}

.compact-secure {
  margin-top: 16px;
}

.secure-public-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.secure-public-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 8px;
  margin: 10px 0;
}

.secure-public-chip {
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--surface-alt);
  font-weight: 700;
  color: var(--text-primary);
}

.phone-section .onboarding-grid {
  margin-bottom: 12px;
}

.phone-panels {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.phone-card .key-row {
  border-top: 1px solid var(--border);
}

.phone-card .key-row:first-of-type {
  border-top: none;
}

.hero-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(244, 240, 255, 0.96));
  border: 1px solid var(--border);
  position: absolute;
  bottom: 12%;
  right: 8%;
  max-width: 340px;
}

.example-page {
  padding: 52px 0 30px;
}

.example-page .hero-card {
  position: relative;
  right: auto;
  bottom: auto;
  margin: 0 auto;
  max-width: 900px;
}

.example-page .cards-row {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.after-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.wave {
  position: absolute;
  inset: 0;
  background: radial-gradient(40% 40% at 30% 20%, rgba(247, 205, 217, 0.3), transparent),
    radial-gradient(32% 32% at 80% 10%, rgba(203, 195, 244, 0.26), transparent),
    radial-gradient(32% 32% at 60% 70%, rgba(190, 227, 248, 0.26), transparent);
  filter: blur(60px);
  opacity: 0.8;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-illustration {
  width: 100%;
  max-width: 640px;
  height: auto;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.card-stack {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 18px;
}

.card-stack .small {
  max-width: 100%;
}

.trusted {
  color: var(--purple);
  font-weight: 700;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.stat {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 8px 26px rgba(160, 140, 220, 0.18);
}

@media (max-width: 1100px) {
  .cta-row {
    gap: 8px;
  }
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
  }
  .nav-links {
    position: absolute;
    top: 70px;
    right: 4vw;
    left: 4vw;
    background: var(--surface);
    border: 1px solid rgba(160, 140, 220, 0.2);
    border-radius: 12px;
    padding: 12px;
    display: none;
    box-shadow: var(--shadow);
  }
  .cta-row {
    align-items: center;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 60px;
  }
  .hero-card {
    position: static;
    margin-top: -18px;
    max-width: 100%;
  }
}
