:root {
  --navy:        #1a2744;
  --navy-deep:   #0f1a2e;
  --cream:       #faf5ed;
  --cream-warm:  #f5ead8;
  --orange:      #e8773a;
  --orange-glow: #f09454;
  --teal:        #2ab5a0;
  --teal-soft:   #3dcdb5;
  --text-muted:  #7a8599;
  --white:       #ffffff;
  --card-bg:     rgba(250,245,237,0.03);
  --card-border: rgba(250,245,237,0.07);
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--navy-deep);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

/* noise texture */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999;
}

/* ============ NAVIGATION ============ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

nav.scrolled {
  background: rgba(15, 26, 46, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 4px 32px rgba(0,0,0,0.2);
}

.logo {
  display: block;
  text-decoration: none;
  flex-shrink: 0;
  width: 148px;
  height: 65px;
  overflow: hidden;
  position: relative;
}

.logo-image {
  position: absolute;
  width: 228px;
  height: 228px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover { color: var(--cream); }

.nav-cta {
  padding: 0.6rem 1.5rem;
  background: transparent;
  border: 1.5px solid rgba(250,245,237,0.25);
  color: var(--cream);
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(232,119,58,0.4);
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,119,58,0.11) 0%, transparent 60%);
  top: -100px; right: -150px;
  border-radius: 50%;
  animation: float-orb 12s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(42,181,160,0.08) 0%, transparent 55%);
  bottom: -80px; left: -120px;
  border-radius: 50%;
  animation: float-orb 15s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes float-orb {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(30px,-20px) scale(1.05); }
  66%      { transform: translate(-20px,15px) scale(0.95); }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.2rem;
  background: rgba(232,119,58,0.1);
  border: 1px solid rgba(232,119,58,0.25);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--orange-glow);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  animation: fade-in-up 0.8s ease-out 0.2s both;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
  max-width: 820px;
  animation: fade-in-up 0.8s ease-out 0.4s both;
}

.hero h1 em {
  font-style: italic;
  color: var(--orange);
  position: relative;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  border-radius: 2px;
  opacity: 0.45;
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 300;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  animation: fade-in-up 0.8s ease-out 0.6s both;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3.5rem;
  animation: fade-in-up 0.8s ease-out 0.8s both;
}

/* hero service icons */
.hero-services {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  animation: fade-in-up 0.8s ease-out 1s both;
}

.hero-svc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-svc-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,176,107,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s;
}

.hero-svc-icon svg {
  width: 20px; height: 20px;
  color: rgba(201,176,107,0.6);
}

.hero-svc:hover .hero-svc-icon {
  background: rgba(201,176,107,0.1);
  border-color: rgba(201,176,107,0.45);
}

.hero-svc span {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* ============ BUTTONS ============ */
.btn-primary {
  padding: 0.9rem 2.2rem;
  background: linear-gradient(135deg, var(--orange), var(--orange-glow));
  color: var(--white);
  border: none;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(232,119,58,0.35);
  letter-spacing: 0.3px;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(232,119,58,0.5);
}

.btn-secondary {
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(250,245,237,0.2);
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal-soft);
  background: rgba(42,181,160,0.06);
}

/* ============ TRUST STRIP ============ */
.trust-strip {
  padding: 2rem 2.5rem;
  border-bottom: 1px solid rgba(250,245,237,0.06);
}

.trust-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 17px; height: 17px;
}

.trust-teal  { background: rgba(42,181,160,0.15);  color: var(--teal-soft); }
.trust-orange{ background: rgba(232,119,58,0.15);  color: var(--orange-glow); }
.trust-cream { background: rgba(250,245,237,0.08); color: var(--cream); }

.trust-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
}

.trust-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 1px;
}

/* ============ DIVIDER ============ */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(250,245,237,0.07), transparent);
}

/* ============ VISION ============ */
.what-section {
  padding: 7rem 2rem;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
  display: block;
}

.what-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.5px;
  margin-bottom: 2rem;
}

.what-section p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 660px;
  margin: 0 auto 1.5rem;
}

.what-section p strong {
  color: var(--cream);
  font-weight: 500;
}

/* ============ PILLARS ============ */
.pillars-section {
  padding: 5rem 2rem 7rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pillars-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.pillars-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-top: 0.75rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pillar-card:nth-child(1)::before { background: var(--orange); }
.pillar-card:nth-child(2)::before { background: var(--teal); }
.pillar-card:nth-child(3)::before { background: rgba(201,176,107,0.8); }

.pillar-card:hover {
  background: rgba(250,245,237,0.055);
  border-color: rgba(250,245,237,0.12);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

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

/* svg icon box replacing emoji */
.pillar-icon-box {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.pillar-icon-box svg {
  width: 22px; height: 22px;
}

.pillar-icon-orange { background: rgba(232,119,58,0.15); color: var(--orange); }
.pillar-icon-teal   { background: rgba(42,181,160,0.15);  color: var(--teal-soft); }
.pillar-icon-gold   { background: rgba(201,176,107,0.15); color: rgba(201,176,107,0.85); }

.pillar-card h3 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.2px;
}

.pillar-card p {
  font-size: 0.9rem;
  line-height: 1.72;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.pillar-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}

.pillar-tag-orange { background: rgba(232,119,58,0.15); color: var(--orange-glow); }
.pillar-tag-teal   { background: rgba(42,181,160,0.15);  color: var(--teal-soft); }
.pillar-tag-gold   { background: rgba(201,176,107,0.12); color: rgba(201,176,107,0.85); }

/* ============ PET PASSPORT ============ */
.passport-section {
  padding: 4rem 2rem 6rem;
  max-width: 1100px;
  margin: 0 auto;
}

.passport-inner {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.passport-text {
  flex: 1;
  min-width: 280px;
}

.passport-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
  margin-top: 0.75rem;
}

.passport-text p {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.78;
  margin-bottom: 1.75rem;
}

.passport-features {
  list-style: none;
  padding: 0;
}

.passport-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.55rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
}

.passport-features li svg {
  color: var(--teal-soft);
  flex-shrink: 0;
  margin-top: 2px;
}

/* mock passport card */
.passport-card {
  flex: 1;
  min-width: 300px;
  max-width: 360px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45), 0 4px 16px rgba(0,0,0,0.2);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
  transition: transform 0.5s ease;
}

.passport-card:hover {
  transform: perspective(1200px) rotateY(0) rotateX(0);
}

.pp-header {
  background: var(--navy-deep);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.pp-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  border: 2px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.pp-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  font-family: 'Poppins', sans-serif;
}

.pp-breed {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
  font-family: 'Poppins', sans-serif;
}

.pp-completeness {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 7px;
}

.pp-bar-wrap {
  width: 72px; height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}

.pp-bar-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 3px;
  width: 72%;
}

.pp-bar-label {
  font-size: 0.6rem;
  color: var(--text-muted);
  font-family: 'Poppins', sans-serif;
}

.pp-body { padding: 1rem; }

.pp-alert {
  background: #FDE8E8;
  border: 1px solid rgba(204,0,0,0.12);
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.pp-alert-label {
  font-size: 0.58rem;
  font-weight: 700;
  color: #CC0000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Poppins', sans-serif;
}

.pp-alert-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: #990000;
  font-family: 'Poppins', sans-serif;
}

.pp-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f2f2f2;
  font-size: 0.75rem;
  font-family: 'Poppins', sans-serif;
}

.pp-row-label { color: #999; }
.pp-row-val   { font-weight: 600; color: #333; overflow-wrap: break-word; word-break: break-all; text-align: right; max-width: 60%; }
.pp-row-val.good { color: #0d7a61; }
.pp-row-val.warn { color: #b8860b; }

.pp-vacc { margin-top: 0.75rem; }

.pp-vacc-title {
  font-size: 0.62rem;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
}

.pp-vacc-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
  font-size: 0.75rem;
  font-family: 'Poppins', sans-serif;
  color: #4a4a4a;
}

.pp-badge {
  font-size: 0.6rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 99px;
}

.pp-badge.current { background: #e6f5f1; color: #0d7a61; }
.pp-badge.soon    { background: #fff8e6; color: #b8860b; }

/* ============ STATS ============ */
.stats-section {
  padding: 4.5rem 2rem;
  background: rgba(250,245,237,0.02);
  border-top: 1px solid rgba(250,245,237,0.05);
  border-bottom: 1px solid rgba(250,245,237,0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.stat-item {
  padding: 1.25rem;
}

.stat-item:not(:last-child) {
  border-right: 1px solid rgba(250,245,237,0.08);
}

.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.2px;
}

.stat-source {
  font-size: 0.6rem;
  color: rgba(122,133,153,0.5);
  margin-top: 0.25rem;
  font-style: italic;
}

/* ============ PROVIDERS ============ */
.providers-section {
  padding: 5rem 2rem 7rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.providers-section::before {
  content: '';
  position: absolute;
  top: -60px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,119,58,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.providers-inner {
  display: flex;
  align-items: center;
  gap: 5rem;
  position: relative;
}

.providers-text { flex: 1; }

.providers-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.providers-text p {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.78;
  margin-bottom: 2rem;
}

.prov-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.prov-feat {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.prov-feat svg {
  width: 18px; height: 18px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.prov-feat span {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
}

.prov-stats {
  flex: 0 0 300px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.prov-stat {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
}

.prov-stat:hover {
  background: rgba(250,245,237,0.06);
  transform: translateY(-2px);
}

.prov-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.prov-accent { color: var(--orange); }

.prov-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.4;
}

/* ============ FOUNDER NOTE ============ */
.founder-section {
  padding: 7rem 2rem;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.founder-quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  line-height: 1.65;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--cream-warm);
  position: relative;
  padding: 0 1rem;
}

.founder-quote::before {
  content: '\201C';
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 5rem;
  color: var(--orange);
  opacity: 0.18;
  font-family: 'DM Serif Display', serif;
  line-height: 1;
}

.founder-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.founder-title {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ============ SURVEY ============ */
.survey-section {
  padding: 5rem 2rem 6rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(42,181,160,0.04) 0%, rgba(42,181,160,0) 100%);
}

.survey-card {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(42,181,160,0.06);
  border: 1px solid rgba(42,181,160,0.15);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.survey-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
}

.survey-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1rem;
  background: rgba(42,181,160,0.12);
  border: 1px solid rgba(42,181,160,0.2);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--teal-soft);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.survey-card h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  font-weight: 400;
}

.survey-card h2 em {
  color: var(--teal-soft);
  font-style: italic;
}

.survey-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.survey-audiences {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.survey-audience-tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.8rem;
  background: rgba(250,245,237,0.06);
  border: 1.5px solid rgba(250,245,237,0.12);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.survey-audience-tag:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(232,119,58,0.2);
}

.survey-audience-tag:nth-child(1) {
  background: linear-gradient(135deg, rgba(232,119,58,0.15), rgba(240,148,84,0.08));
  border-color: rgba(232,119,58,0.3);
}

.survey-audience-tag:nth-child(1):hover {
  background: linear-gradient(135deg, rgba(232,119,58,0.25), rgba(240,148,84,0.15));
  border-color: rgba(232,119,58,0.5);
}

.survey-audience-tag:nth-child(2) {
  background: linear-gradient(135deg, rgba(42,181,160,0.15), rgba(61,205,181,0.08));
  border-color: rgba(42,181,160,0.3);
}

.survey-audience-tag:nth-child(2):hover {
  background: linear-gradient(135deg, rgba(42,181,160,0.25), rgba(61,205,181,0.15));
  border-color: rgba(42,181,160,0.5);
}

.tag-icon { font-size: 1.2rem; }

.survey-time {
  font-size: 0.75rem;
  color: var(--teal-soft);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.survey-privacy {
  font-size: 0.65rem;
  color: rgba(122,133,153,0.5);
}

/* ============ TEAM ============ */
.team-section {
  padding: 6rem 2rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.team-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.5px;
  margin-bottom: 3rem;
  margin-top: 0.75rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.team-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover {
  background: rgba(250,245,237,0.055);
  border-color: rgba(250,245,237,0.12);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

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

.team-avatar {
  width: 68px; height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  border: 2px solid rgba(201,176,107,0.22);
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.team-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(201,176,107,0.8);
  margin-bottom: 0.85rem;
  letter-spacing: 0.02em;
}

.team-bio {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ============ WAITLIST ============ */
.waitlist-section {
  padding: 7rem 2rem 8rem;
  text-align: center;
  position: relative;
}

.waitlist-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,119,58,0.06) 0%, transparent 60%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}

.waitlist-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 1rem;
  position: relative;
  letter-spacing: -1px;
  font-weight: 400;
}

.waitlist-section p {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  position: relative;
}

.email-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}

.email-form input[type="email"] {
  flex: 1;
  padding: 0.95rem 1.4rem;
  background: rgba(250,245,237,0.06);
  border: 1.5px solid rgba(250,245,237,0.12);
  border-radius: 100px;
  color: var(--cream);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: all 0.3s ease;
}

.email-form input[type="email"]::placeholder {
  color: var(--text-muted);
}

.email-form input[type="email"]:focus {
  border-color: var(--orange);
  background: rgba(250,245,237,0.09);
  box-shadow: 0 0 0 4px rgba(232,119,58,0.1);
}

.email-form button[type="submit"] {
  padding: 0.95rem 1.8rem;
  background: linear-gradient(135deg, var(--orange), var(--orange-glow));
  color: var(--white);
  border: none;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(232,119,58,0.3);
}

.email-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,119,58,0.45);
}

.email-form button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.waitlist-note {
  font-size: 0.7rem;
  color: rgba(122,133,153,0.6);
  margin-top: 1.25rem;
  position: relative;
}

.form-message {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
}

.form-message.success { color: var(--teal-soft); }
.form-message.error   { color: #e87a7a; }

/* ============ FOOTER ============ */
footer {
  background: #08101e;
  border-top: 1px solid rgba(250,245,237,0.05);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

.footer-top {
  display: flex;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}

.footer-brand-col {
  flex: 0 0 280px;
}

.footer-logo {
  display: block;
  text-decoration: none;
  width: 148px;
  height: 65px;
  overflow: hidden;
  position: relative;
  margin-bottom: 0.5rem;
}

.footer-logo-image {
  position: absolute;
  width: 228px;
  height: 228px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 0.75rem;
}

.footer-desc {
  font-size: 0.78rem;
  color: rgba(122,133,153,0.65);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.footer-aus {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 400;
}

.footer-links-cols {
  flex: 1;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.83rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
}

.footer-legal {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 300;
}

.patent-notice {
  font-size: 0.62rem;
  color: rgba(122,133,153,0.4);
  letter-spacing: 0.4px;
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */

/* Tablet: 1024px — relax tight multi-column layouts */
@media (max-width: 1024px) {
  nav { padding: 1.1rem 1.75rem; }

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

  .passport-inner { gap: 3rem; }
  .passport-card { max-width: 320px; }

  .providers-inner { gap: 3rem; }
  .prov-stats { flex: 0 0 250px; }
}

/* Mobile: 768px — full single-column */
@media (max-width: 768px) {

  /* Nav */
  nav { padding: 0.85rem 1.25rem; }
  .nav-links { display: none; }
  .logo { width: 125px; height: 55px; }
  .logo-image { width: 192px; height: 192px; }
  .nav-cta { padding: 0.55rem 1.1rem; font-size: 0.8rem; }

  /* Hero */
  .hero { padding: 7rem 1.25rem 4rem; min-height: auto; }
  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.6rem);
    letter-spacing: -0.5px;
    line-height: 1.25;
  }
  .hero h1 br { display: none; }
  .hero-sub { font-size: 0.97rem; }
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
  }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
  .hero-services {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-svc-icon { width: 42px; height: 42px; }
  .hero-svc span { font-size: 0.62rem; }

  /* Trust strip */
  .trust-strip { padding: 1.5rem 1.25rem; }
  .trust-inner { gap: 1rem; justify-content: flex-start; }
  .trust-item { flex: 1 1 calc(50% - 0.5rem); min-width: 0; }
  .trust-label { font-size: 0.8rem; }
  .trust-sub { font-size: 0.68rem; }

  /* Vision */
  .what-section { padding: 4rem 1.25rem; }
  .what-section h2 { font-size: clamp(1.6rem, 6vw, 2rem); }
  .what-section h2 br { display: none; }
  .what-section p { font-size: 0.95rem; }

  /* Pillars */
  .pillars-section { padding: 3rem 1.25rem 4rem; }
  .pillars-header h2 br { display: none; }
  .pillars-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Passport */
  .passport-section { padding: 3rem 1.25rem 4rem; }
  .passport-inner { flex-direction: column; gap: 2.5rem; }
  .passport-card { min-width: 0; max-width: 100%; width: 100%; transform: none !important; }
  .passport-text h2 { font-size: clamp(1.6rem, 6vw, 2rem); }

  /* Stats */
  .stats-section { padding: 3rem 1.25rem; }
  .stats-grid { grid-template-columns: 1fr; gap: 0; }
  .stat-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(250,245,237,0.08);
  }
  .stat-item { padding: 1.5rem 1rem; }

  /* Providers */
  .providers-section { padding: 3rem 1.25rem 4rem; }
  .providers-inner { flex-direction: column; gap: 2.5rem; }
  .providers-text h2 { font-size: clamp(1.6rem, 6vw, 2rem); }
  .prov-features { grid-template-columns: 1fr; gap: 0.75rem; }
  .prov-stats { width: 100%; grid-template-columns: 1fr 1fr; gap: 0.75rem; }

  /* Founder */
  .founder-section { padding: 4rem 1.25rem; }
  .founder-quote { font-size: clamp(1.1rem, 4.5vw, 1.35rem); padding: 0 0.25rem; }

  /* Survey */
  .survey-section { padding: 3rem 1.25rem 4rem; }
  .survey-card { padding: 2rem 1.25rem; }
  .survey-audiences { flex-direction: column; align-items: stretch; }
  .survey-audience-tag { width: 100%; justify-content: center; }

  /* Team */
  .team-section { padding: 4rem 1.25rem 3rem; }
  .team-section h2 br { display: none; }
  .team-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Waitlist */
  .waitlist-section { padding: 4rem 1.25rem 5rem; }
  .email-form { flex-direction: column; max-width: 100%; }
  .email-form input[type="email"],
  .email-form button[type="submit"] { width: 100%; border-radius: 12px; }
  .email-form input[type="email"] { text-align: center; }

  /* Footer */
  .footer-inner { padding: 3rem 1.25rem 1.5rem; }
  .footer-top { flex-direction: column; gap: 2rem; }
  .footer-brand-col { flex: none; }
  .footer-links-cols { justify-content: flex-start; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
}

/* Small phones: 400px */
@media (max-width: 400px) {
  .hero h1 { font-size: clamp(1.85rem, 9vw, 2.1rem); line-height: 1.28; }
  .hero-badge { font-size: 0.62rem; letter-spacing: 1px; }
  .trust-item { flex: 1 1 100%; }
  .prov-stats { grid-template-columns: 1fr 1fr; }
  .footer-links-cols { flex-direction: column; gap: 1.5rem; }
}
