: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;
}

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

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

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

/* ============ NOISE TEXTURE OVERLAY ============ */
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 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s ease;
}

nav.scrolled {
  background: rgba(15, 26, 46, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--orange), var(--teal));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: -0.5px;
  box-shadow: 0 4px 20px rgba(232, 119, 58, 0.3);
}

.logo-text {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--cream);
  letter-spacing: -0.5px;
}

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

.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;
}

.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: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

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

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

@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); }
}

.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.75rem;
  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.2rem, 7vw, 5.5rem);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
  max-width: 780px;
  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.5;
}

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

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

.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;
}

.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;
}

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

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

/* ============ SCROLL INDICATOR ============ */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fade-in-up 0.8s ease-out 1.2s both;
}

.scroll-hint span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

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

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

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fade-in-up 0.6s ease-out forwards;
}

.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: 680px;
  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-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  background: rgba(250, 245, 237, 0.03);
  border: 1px solid rgba(250, 245, 237, 0.06);
  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;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pillar-card:hover {
  background: rgba(250, 245, 237, 0.05);
  border-color: rgba(250, 245, 237, 0.1);
  transform: translateY(-4px);
}

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

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.pillar-card:nth-child(1) .pillar-icon {
  background: rgba(232, 119, 58, 0.12);
}
.pillar-card:nth-child(2) .pillar-icon {
  background: rgba(42, 181, 160, 0.12);
}
.pillar-card:nth-child(3) .pillar-icon {
  background: rgba(240, 148, 84, 0.12);
}

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

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

/* ============ STATS BAR ============ */
.stats-section {
  padding: 4rem 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: 1rem;
}

.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(2rem, 4vw, 2.8rem);
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}

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

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

/* ============ 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.7rem);
  line-height: 1.6;
  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.2;
  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 CTA ============ */
.survey-section {
  padding: 5rem 2rem 6rem;
  text-align: center;
  position: relative;
  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-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.survey-section 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: 2rem;
  flex-wrap: wrap;
}

.survey-audience-tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.8rem;
  background: rgba(250, 245, 237, 0.08);
  border: 1.5px solid rgba(250, 245, 237, 0.15);
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(232, 119, 58, 0.1);
  position: relative;
  overflow: hidden;
}

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

.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);
}

.survey-audience-tag span.tag-icon {
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.survey-audience-tag:nth-child(1) span.tag-icon {
  color: var(--orange);
}

.survey-audience-tag:nth-child(2) span.tag-icon {
  color: var(--teal);
}

.survey-qr-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.qr-placeholder {
  width: 160px;
  height: 160px;
  background: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--navy);
  font-weight: 500;
  text-align: center;
  padding: 1rem;
  line-height: 1.4;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.qr-instruction {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}

.survey-time {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--teal-soft);
  font-weight: 500;
}

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

/* ============ WAITLIST / CTA ============ */
.waitlist-section {
  padding: 6rem 2rem 7rem;
  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%;
}

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

.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.08);
  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: 1rem;
  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 {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(250, 245, 237, 0.05);
  text-align: center;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-weight: 700;
  font-size: 1rem;
  color: var(--cream);
}

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

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

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

.patent-notice {
  width: 100%;
  text-align: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(250, 245, 237, 0.04);
  font-size: 0.62rem;
  color: rgba(122, 133, 153, 0.4);
  letter-spacing: 0.5px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.25rem;
  }

  /* Hero: hide scroll hint so it never overlaps buttons */
  .scroll-hint {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 7rem 1.5rem 5rem;
  }

  .hero h1 {
    letter-spacing: -0.5px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .what-section {
    padding: 4rem 1.5rem;
  }

  .what-section h2 br {
    display: none;
  }

  .pillars-section {
    padding: 3rem 1.5rem 4rem;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stats-section {
    padding: 3rem 1.5rem;
  }

  .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;
  }

  .founder-section {
    padding: 4rem 1.5rem;
  }

  .survey-section {
    padding: 3rem 1.25rem 4rem;
  }

  .survey-card {
    padding: 2rem 1.25rem;
  }

  .waitlist-section {
    padding: 4rem 1.5rem 5rem;
  }

  .email-form {
    flex-direction: column;
    max-width: 100%;
  }

  .email-form input[type="email"] {
    width: 100%;
  }

  .email-form button[type="submit"] {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.2rem);
  }

  .hero-badge {
    font-size: 0.68rem;
    letter-spacing: 1px;
  }

  .survey-audience-tag {
    font-size: 0.75rem;
    padding: 0.45rem 0.9rem;
  }

  .waitlist-section h2 {
    letter-spacing: -0.5px;
  }
}

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

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