@import url('https://api.fontshare.com/v2/css?f[]=euclid-circular-a@300,400,500,600,700&display=swap');

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

:root {
  --navy: #08090F;
  --navy-mid: #12141F;
  --orange: #FF5C35;
  --orange-light: #FF7A59;
  --white: #FFFFFF;
  --off-white: #F6F7FB;
  --muted: #8B8FA8;
  --border: #E8E9F0;
  --text: #1A1B26;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Euclid Circular A', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 9, 15, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo span { color: var(--orange); }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }

.nav-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

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

/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: 96px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,92,53,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
  background: rgba(255,92,53,0.1);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,92,53,0.2);
}

.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #FF5C35, #FF9A7B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 400;
}

.cta-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  font-family: 'Euclid Circular A', sans-serif;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255,92,53,0.35);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}

.hero-badge {
  margin-top: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  font-weight: 500;
}

.badge-item .dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  display: none;
}

.badge-item:not(:last-child)::after {
  content: '·';
  color: rgba(255,255,255,0.2);
  margin-left: 28px;
}

/* ── FEATURES ── */
.features {
  padding: 96px 0;
  background: var(--white);
}

.section-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 60px;
  line-height: 1.2;
}

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

.feature-card {
  background: var(--off-white);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(255,92,53,0.12), rgba(255,92,53,0.04));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  border: 1px solid rgba(255,92,53,0.12);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── DESTINATIONS ── */
.destinations {
  padding: 96px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

.dest-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s;
}

.dest-chip:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,92,53,0.04);
}

.dest-flag { font-size: 16px; }

/* ── STATS ── */
.stats {
  padding: 72px 0;
  background: var(--navy);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 48px;
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span { color: var(--orange); }

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

/* ── FOOTER ── */
footer {
  background: var(--navy-mid);
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.footer-logo span { color: var(--orange); }

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-copy {
  color: rgba(255,255,255,0.25);
  font-size: 13px;
  width: 100%;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 8px;
}

/* ── INTERIOR PAGES ── */
.page-hero {
  background: var(--navy);
  padding: 72px 0 60px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto;
}

.page-content {
  padding: 64px 0 96px;
}

.page-content .inner {
  max-width: 680px;
  margin: 0 auto;
}

/* support */
.support-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  margin-bottom: 32px;
}

.support-card .icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.support-card h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.4px;
}

.support-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.support-card a.email-link {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
}

.support-card a.email-link:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255,92,53,0.3);
}

.support-faq { margin-top: 48px; }

.support-faq h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.4px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-item:last-child { border-bottom: none; }

.faq-item h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* privacy */
.privacy-content h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.privacy-content p, .privacy-content li {
  font-size: 15px;
  color: #4A4B5E;
  line-height: 1.75;
  margin-bottom: 12px;
}

.privacy-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.privacy-content li { margin-bottom: 6px; }

.privacy-content a {
  color: var(--orange);
  text-decoration: none;
}

.privacy-content a:hover { text-decoration: underline; }

.privacy-content .updated {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

/* ── DELETE ACCOUNT ── */
.delete-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
}

.delete-card-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.delete-card h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.4px;
}

.delete-card > p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.delete-form {
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.phone-input-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s;
}

.phone-input-wrap:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,92,53,0.12);
}

.phone-prefix {
  padding: 0 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  border-right: 1.5px solid var(--border);
  line-height: 48px;
  white-space: nowrap;
  background: var(--off-white);
}

.phone-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 14px;
  font-size: 15px;
  font-family: 'Euclid Circular A', sans-serif;
  color: var(--text);
  height: 48px;
  background: transparent;
  letter-spacing: 0.5px;
}

.phone-input-wrap input::placeholder {
  color: var(--muted);
  font-weight: 400;
}

.form-hint {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

.btn-danger {
  width: 100%;
  justify-content: center;
  background: #D92B2B;
  color: var(--white);
  font-size: 15px;
  padding: 14px 28px;
}

.btn-danger:hover {
  background: #c02020;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(217,43,43,0.28);
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: #1A1B26;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  white-space: nowrap;
  z-index: 999;
  font-family: 'Euclid Circular A', sans-serif;
}

.toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.toast--success { border-left: 4px solid #22C55E; }
.toast--error   { border-left: 4px solid #D92B2B; }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .hero { padding: 72px 0 60px; }
  .hero-badge { gap: 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .support-card { padding: 32px 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .destinations-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
}
