/* ============================================================
   Bionest Landing Page — Jardin Vivo Design Language
   Scroll-driven video teaser + signup form
   ============================================================ */

/* --- Fonts --- */
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('fonts/PlusJakartaSans-Regular.woff2') format('woff2');
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('fonts/PlusJakartaSans-Medium.woff2') format('woff2');
  font-weight: 500; font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('fonts/PlusJakartaSans-SemiBold.woff2') format('woff2');
  font-weight: 600; font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('fonts/PlusJakartaSans-Bold.woff2') format('woff2');
  font-weight: 700; font-display: swap;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('fonts/PlusJakartaSans-ExtraBold.woff2') format('woff2');
  font-weight: 800; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600; font-display: swap;
}

/* --- Design Tokens --- */
:root {
  /* Surfaces */
  --bg-primary: #F0EDE8;
  --bg-sand: #F7F5F2;
  --bg-content: #FEFCFA;
  --bg-panel: #FAF8F5;

  /* Text */
  --text-primary: #1A1A18;
  --text-secondary: #8A8880;
  --text-muted: #B0A898;

  /* Brand */
  --brown-organic: #3D2B1F;
  --copper: #C07830;
  --copper-light: #D4943E;

  /* Section accents */
  --tierra: #D4873A;
  --viento: #6BBF59;
  --fuego: #E8654A;
  --agua: #4A9FD9;
  --raices: #5BAA4A;

  /* Vivencia neon (for orbs) */
  --viv-vitalidad: #A8E050;
  --viv-afectividad: #FF9A2E;
  --viv-sexualidad: #FF6B6B;
  --viv-creatividad: #4FC3F7;
  --viv-trascendencia: #B07FE0;

  /* Borders & Shadows */
  --border-default: #EBE8E3;
  --border-subtle: #F5F3F0;
  --shadow-card: 0 1px 6px rgba(61,43,31,0.10);
  --shadow-hover: 0 4px 16px rgba(61,43,31,0.12), 0 2px 6px rgba(212,135,58,0.08);
  --shadow-dialog: 0 16px 48px rgba(61,43,31,0.22);

  /* Radius */
  --radius-card: 16px;
  --radius-pill: 99px;
  --radius-input: 10px;
  --radius-modal: 18px;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Transitions */
  --duration-fast: 150ms;
  --duration-normal: 200ms;
  --duration-slow: 300ms;
  --easing-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: auto; /* No smooth scroll — we control it */
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.5;
  overflow-x: hidden;
}

/* --- Video Section --- */
.video-section {
  position: relative;
  height: 400vh; /* Scroll runway for 121 frames */
}

.video-canvas-container {
  position: sticky;
  top: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh; /* dynamic viewport height — accounts for mobile browser chrome */
  overflow: hidden;
  background: var(--bg-sand);
}

#video-canvas {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Bottom gradient vignette so scroll hint is always readable */
.video-canvas-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 100%);
  pointer-events: none;
  z-index: 4;
}

/* Scroll hint — prominent on dark video */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 1;
  transition: opacity 0.5s ease-out;
  z-index: 5;
}

.scroll-hint.hidden {
  opacity: 0;
  pointer-events: none;
}

.scroll-hint-text {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.scroll-hint-arrow {
  width: 28px;
  height: 28px;
  border: none;
  position: relative;
  animation: bounce-arrow 2.2s ease-in-out infinite;
}

/* Double chevron for visibility */
.scroll-hint-arrow::before,
.scroll-hint-arrow::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 14px;
  height: 14px;
  border-right: 2.5px solid rgba(255,255,255,0.85);
  border-bottom: 2.5px solid rgba(255,255,255,0.85);
  transform: translateX(-50%) rotate(45deg);
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.4));
}

.scroll-hint-arrow::before {
  top: 0;
}

.scroll-hint-arrow::after {
  top: 8px;
  opacity: 0.5;
}

@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* --- Reveal Section (after video) --- */
.reveal-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem 6rem;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(192,120,48,0.04) 0%, transparent 70%),
    var(--bg-sand);
  overflow: hidden;
}

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

.reveal-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo */
.reveal-logo {
  width: min(300px, 55vw);
  height: auto;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.reveal-logo.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Decorative nest curve between logo and text */
.reveal-curve {
  width: min(200px, 40vw);
  height: auto;
  margin-bottom: 2.5rem;
  opacity: 0;
  transition: opacity 1s ease-out 0.2s;
}

.reveal-curve.animate-in {
  opacity: 0.25;
}

/* Kicker — small copper label */
.reveal-kicker {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--copper);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease-out 0.25s, transform 0.8s ease-out 0.25s;
}

.reveal-kicker.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* The date — the hero moment */
.reveal-date {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 10vw, 6.5rem);
  color: var(--brown-organic);
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-bottom: 0.3em;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease-out 0.35s, transform 0.9s ease-out 0.35s;
}

.reveal-date.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Month — copper accent below the number */
.reveal-month {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.3rem, 3.5vw, 2.2rem);
  color: var(--copper);
  letter-spacing: 0.08em;
  text-transform: lowercase;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease-out 0.5s, transform 0.8s ease-out 0.5s;
}

.reveal-month.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Countdown */
.countdown {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s ease-out 0.55s, transform 0.8s ease-out 0.55s;
}

.countdown.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 3.2rem;
}

.countdown-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--brown-organic);
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.countdown-sep {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--copper);
  opacity: 0.4;
  line-height: 1;
  padding: 0 0.1rem;
  align-self: flex-start;
  margin-top: 0.15rem;
}

/* Five vivencia orbs — subtle inline separator */
.reveal-orbs {
  display: flex;
  gap: clamp(0.6rem, 1.5vw, 1rem);
  justify-content: center;
  margin-bottom: 2rem;
  opacity: 0;
  transition: opacity 0.8s ease-out 0.6s;
}

.reveal-orbs.animate-in {
  opacity: 1;
}

.orb-sphere {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: breathe-sphere 5s ease-in-out infinite;
}

.orb-sphere:nth-child(1) { background: var(--viv-vitalidad); animation-delay: 0s; }
.orb-sphere:nth-child(2) { background: var(--viv-afectividad); animation-delay: 1s; }
.orb-sphere:nth-child(3) { background: var(--viv-sexualidad); animation-delay: 2s; }
.orb-sphere:nth-child(4) { background: var(--viv-creatividad); animation-delay: 3s; }
.orb-sphere:nth-child(5) { background: var(--viv-trascendencia); animation-delay: 4s; }

.orb-sphere:nth-child(1) { background: var(--viv-vitalidad); animation-delay: 0s; }
.orb-sphere:nth-child(2) { background: var(--viv-afectividad); animation-delay: 1s; }
.orb-sphere:nth-child(3) { background: var(--viv-sexualidad); animation-delay: 2s; }
.orb-sphere:nth-child(4) { background: var(--viv-creatividad); animation-delay: 3s; }
.orb-sphere:nth-child(5) { background: var(--viv-trascendencia); animation-delay: 4s; }

@keyframes breathe-sphere {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* Tagline */
.reveal-tagline {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.78rem, 1.4vw, 0.95rem);
  color: var(--text-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s ease-out 0.75s, transform 0.8s ease-out 0.75s;
}

.reveal-tagline.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* --- Background Orbs (floating) --- */
.bg-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(45px);
  opacity: 0.18;
  animation: float-orb 10s ease-in-out infinite;
}

.bg-orb:nth-child(1) {
  width: 240px; height: 240px;
  background: var(--viv-vitalidad);
  top: 15%; left: 5%;
  animation-delay: 0s;
  animation-duration: 12s;
}
.bg-orb:nth-child(2) {
  width: 200px; height: 200px;
  background: var(--viv-afectividad);
  top: 55%; right: 5%;
  animation-delay: 2s;
  animation-duration: 14s;
}
.bg-orb:nth-child(3) {
  width: 180px; height: 180px;
  background: var(--viv-creatividad);
  bottom: 10%; left: 25%;
  animation-delay: 4s;
  animation-duration: 11s;
}
.bg-orb:nth-child(4) {
  width: 160px; height: 160px;
  background: var(--viv-trascendencia);
  top: 25%; right: 20%;
  animation-delay: 1s;
  animation-duration: 13s;
}
.bg-orb:nth-child(5) {
  width: 190px; height: 190px;
  background: var(--viv-sexualidad);
  bottom: 25%; left: 55%;
  animation-delay: 3s;
  animation-duration: 9s;
}

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

/* --- Wave Separator --- */
.wave-separator {
  width: 100%;
  height: 60px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.wave-separator svg {
  width: 100%;
  height: 100%;
}

/* --- Form Section --- */
.form-section {
  position: relative;
  padding: 4rem 1.5rem 5rem;
  background: var(--bg-primary);
  overflow: hidden;
}

.form-container {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0 auto;
}

.form-kicker {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--copper);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.6rem;
}

.form-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--brown-organic);
  text-align: center;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.form-subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

/* Form card */
.form-card {
  background: var(--bg-content);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-modal);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.form-grid {
  display: grid;
  gap: 1.2rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--text-primary);
}

.form-label .optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.form-input,
.form-select {
  width: 100%;
  padding: 0.6rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  background: var(--bg-sand);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-input);
  outline: none;
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}

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

.form-input:focus,
.form-select:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(192, 120, 48, 0.15);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238A8880' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* Checkbox row */
.form-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border-default);
  border-radius: 4px;
  appearance: none;
  background: var(--bg-sand);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  transition: border-color var(--duration-fast), background var(--duration-fast);
}

.form-checkbox:checked {
  background: var(--copper);
  border-color: var(--copper);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='10' viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5L4.5 8.5L11 1.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.form-checkbox:focus-visible {
  box-shadow: 0 0 0 3px rgba(192, 120, 48, 0.2);
}

.form-checkbox-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.4;
  cursor: pointer;
}

/* Submit button */
.form-submit {
  width: 100%;
  margin-top: 0.8rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--bg-sand);
  background: var(--brown-organic);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform var(--duration-fast) var(--easing-bounce),
              box-shadow var(--duration-fast);
  letter-spacing: -0.01em;
}

.form-submit:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 6px 20px rgba(61,43,31,0.25);
}

.form-submit:active {
  transform: translateY(0) scale(0.99);
}

.form-submit:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.form-success.visible {
  display: block;
}

.form-success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: rgba(107, 191, 89, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success-icon svg {
  width: 28px;
  height: 28px;
  color: var(--viento);
}

.form-success-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--brown-organic);
  margin-bottom: 0.5rem;
}

.form-success-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --- Social Section --- */
.social-section {
  padding: 2rem 1.5rem 3rem;
  text-align: center;
  background: var(--bg-primary);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-content);
  border: 1px solid var(--border-default);
  color: var(--text-secondary);
  text-decoration: none;
  transition: transform var(--duration-fast) var(--easing-bounce),
              box-shadow var(--duration-fast),
              color var(--duration-fast);
}

.social-link:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-hover);
  color: var(--brown-organic);
}

.social-link svg {
  width: 22px;
  height: 22px;
}

/* --- Footer --- */
.footer {
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
}

.footer-logo {
  width: 100px;
  height: auto;
  opacity: 0.4;
  margin-bottom: 0.8rem;
}

.footer-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* --- Slogan --- */
.slogan {
  max-width: 500px;
  margin: 0 auto 2rem;
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-style: italic;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.6;
}

.slogan::before,
.slogan::after {
  content: '"';
  color: var(--copper-light);
  font-weight: 600;
}

/* --- Loading state (before video ready) --- */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bg-sand);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.5s ease-out;
}

.loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loading-logo {
  width: 160px;
  height: auto;
  opacity: 0.6;
}

.loading-bar-track {
  width: 120px;
  height: 3px;
  background: var(--border-default);
  border-radius: 2px;
  overflow: hidden;
}

.loading-bar {
  height: 100%;
  width: 0%;
  background: var(--copper);
  border-radius: 2px;
  transition: width 0.3s ease-out;
}

/* --- Language Switcher --- */
.lang-switcher {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 50;
  display: flex;
  gap: 2px;
  background: rgba(254,252,250,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-pill);
  padding: 3px;
  box-shadow: 0 2px 8px rgba(61,43,31,0.08);
}

.lang-btn {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 0.3rem 0.5rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: color var(--duration-fast), background var(--duration-fast);
}

.lang-btn:hover {
  color: var(--text-primary);
}

.lang-btn.active {
  color: var(--bg-sand);
  background: var(--brown-organic);
}

/* --- Responsive --- */
@media (max-width: 640px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 1.5rem;
  }

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

  .reveal-logo {
    width: min(220px, 65vw);
  }

  .reveal-date {
    font-size: clamp(2.5rem, 14vw, 4.5rem);
  }

  .bg-orb {
    filter: blur(40px);
    opacity: 0.08;
  }
}

@media (max-width: 380px) {
  .form-card {
    padding: 1.2rem;
    border-radius: var(--radius-card);
  }
}
