:root {
  color-scheme: light;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --bg: #f6f7f9;
  --surface: #ffffff;
  --surface-alt: #f1f3f7;
  --text: #111111;
  --muted: #5b6574;
  --border: #dde2ea;
  --primary: #0f172a;
  --primary-contrast: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.announcement-bar {
  background: #0f172a;
  color: #dce7ff;
  font-size: 14px;
}

.announcement-bar .container {
  min-height: 44px;
  display: flex;
  align-items: center;
}

.announcement-bar p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 247, 249, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}

.nav-row {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.logo-wordmark {
  display: block;
  height: 30px;
  width: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  height: 46px;
  padding: 0 18px;
  cursor: pointer;
}

.btn-ghost {
  border-color: var(--border);
  background: var(--surface);
}

.header-actions .btn-ghost {
  height: 42px;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.header-actions .btn-ghost:hover {
  background: #f8fbff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.14);
}

.nav-cta {
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid #c9d2e3;
  background: #ffffff;
  color: #101828;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.nav-cta:hover {
  background: #f8fbff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.14);
}

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

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.hero {
  padding: 68px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
  color: #3f4a5d;
}

h1 {
  margin: 14px 0 12px;
  line-height: 1.15;
  font-size: clamp(32px, 5vw, 56px);
}

.accent-canada {
  color: #be2148;
}

h2 {
  margin: 10px 0 0;
  line-height: 1.2;
  font-size: clamp(28px, 4vw, 42px);
}

h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

p {
  margin: 0;
}

.subtext {
  max-width: 62ch;
  font-size: 19px;
  color: var(--muted);
}



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

.waitlist-form input {
  flex: 1 1 280px;
  height: 50px;
  border: 1px solid #cfd6e3;
  border-radius: 10px;
  padding: 0 14px;
  font-size: 16px;
}

.form-status {
  margin-top: 10px;
  min-height: 1.2em;
  color: #364152;
  font-size: 14px;
}



.section {
  padding: 80px 0;
}



.section-head {
  max-width: 720px;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}

.card p {
  color: var(--muted);
}



.support-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

#contact .btn-primary {
  height: 54px;
  padding: 0 24px;
  font-size: 16px;
}



.cta {
  padding-top: 34px;
}

.cta-panel {
  background: #0f172a;
  color: #e6eaf2;
  border-radius: 20px;
  border: 1px solid #22304b;
  padding: 34px;
}

.cta-panel h2 {
  margin-top: 0;
  color: #ffffff;
}

.cta-panel p {
  color: #d2d9e6;
}

.cta-panel .waitlist-form input {
  background: #0c1324;
  color: #ffffff;
  border-color: #324464;
}

.cta-panel .waitlist-form .btn-primary {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #ffffff;
}

.site-footer {
  padding: 30px 0 40px;
}

.footer-row {
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.footer-legal {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

.footer-legal a {
  color: #4e5968;
}

.footer-legal a:hover {
  text-decoration: underline;
}



.seo-links {
  margin-top: 6px;
  padding-top: 2px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 11px;
  color: #7b8594;
  opacity: 0.72;
}

.seo-links a {
  text-decoration: none;
}

.seo-links a:hover {
  text-decoration: underline;
}

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

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

  .hero-visual {
    order: -1;
  }
}

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

  .section,
  .hero {
    padding: 54px 0;
  }

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

  .footer-legal {
    flex-wrap: wrap;
  }

  .support-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Container to center the card in the hero visual space */
.css-card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 350px;
  perspective: 1000px; /* Enables the 3D effect */
}

/* The Card Itself */
.privi-virtual-card {
  width: 400px;
  height: 253px;
  max-width: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  
  /* 3D Tilt */
  transform: rotateY(-15deg) rotateX(10deg);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
}

/* Hover effect */
.privi-virtual-card:hover {
  transform: rotateY(0deg) rotateX(0deg);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Internal Card Layout */
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.card-badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
}

.card-chip {
  width: 42px;
  height: 30px;
  background: linear-gradient(135deg, #e0c38c 0%, #a68b4f 100%);
  border-radius: 6px;
  margin-top: 10px;
  opacity: 0.9;
}

.card-number {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.4rem;
  letter-spacing: 3px;
  margin-top: 16px;
  opacity: 0.9;
}

.card-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}

.card-info {
  display: flex;
  flex-direction: column;
}

.card-info.right {
  text-align: right;
}

.info-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.5;
  margin-bottom: 4px;
}

.info-value {
  font-size: 0.85rem;
  letter-spacing: 1px;
  opacity: 0.9;
}

@media (max-width: 720px) {
  .css-card-container {
    min-height: 300px;
    perspective: none;
  }

  .privi-virtual-card {
    width: min(360px, 92vw);
    transform: none;
  }
}
