/*
Theme Name: Para Theme
Description: Landing page for Para — vocabulary flashcard app. Pixel-perfect from Figma.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: para-theme
*/

/* =====================================================
   DESIGN TOKENS — source: Figma / Para / Land Dev
   ===================================================== */
:root {
  /* Colors */
  --c-purple:       #ad96ff;
  --c-black:        #181818;
  --c-gray:         #5f5f5f;
  --c-gray-light:   #aaa8a8;
  --c-white:        #ffffff;
  --c-card-frosted: rgba(231, 231, 231, 0.20);
  --c-card-bg:      rgba(231, 231, 231, 0.20);

  /* Font */
  --font: 'Plus Jakarta Sans', 'TT Norms', system-ui, sans-serif;

  /* Figma exact radii */
  --r-card:   42px;
  --r-inner:  28px;
  --r-btn:    24px;
  --r-badge:  18px;
  --r-zh:     20px;
}

/* =====================================================
   RESET
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--c-white);
  color: var(--c-black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* =====================================================
   HEADER
   ===================================================== */
.para-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 100px 0;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.para-logo { flex-shrink: 0; }
.para-logo img,
.para-logo-img {
  height: 60px;
  width: auto;
  max-width: none;
  display: block;
}

.para-btn-download {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--c-black);
  color: var(--c-white);
  border-radius: var(--r-btn);
  padding: 18px 24px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.44px;
  white-space: nowrap;
  transition: opacity 0.18s;
}
.para-btn-download:hover { opacity: 0.82; color: var(--c-white); }
.para-btn-download img { width: 18px; height: auto; flex-shrink: 0; }

/* =====================================================
   HERO
   ===================================================== */
.para-hero {
  text-align: center;
  padding-top: 160px;
  overflow: visible;
}

/* Row 1: "Level up [↑] your" */
.para-hero-row1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-weight: 700;
  font-size: clamp(52px, 7.5vw, 96px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-black);
  flex-wrap: wrap;
}

/* Desktop base: 58×58px, icon 28px, radius 18px */
.para-hero-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: var(--c-purple);
  border-radius: 18px;
  flex-shrink: 0;
  font-size: 28px;
  line-height: 1;
  margin-bottom: -22px;
}
.para-hero-icon-box img { width: 28px; height: auto; }

/* Row 2: "vocabulary" */
.para-hero-row2 {
  display: block;
  font-weight: 700;
  font-size: clamp(52px, 7.5vw, 96px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-black);
  margin-top: 4px;
}

/* Row 3: "文 with simple flashcards" */
.para-hero-tagline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

/* Desktop base: 58×58px, font 30px, radius 20px */
.para-card-zh {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: var(--c-purple);
  border-radius: var(--r-zh);
  transform: rotate(-30deg);
  flex-shrink: 0;
  margin-bottom: -15px;
  margin-right: 10px;
}
.para-card-zh span {
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
  color: var(--c-white);
  display: block;
}

.para-hero-tagline > span {
  font-weight: 500;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--c-gray);
}

/* =====================================================
   CARDS SCENE
   ===================================================== */
.para-cards-scene {
  position: relative;
  width: 634px;
  height: 415px;
  margin: 115px auto 0;
}

.para-card-hola {
  position: absolute;
  left: 0;
  top: 0;
  width: 360px;
  height: 260px;
  background: var(--c-purple);
  border-radius: var(--r-card);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.para-card-hola span {
  font-weight: 700;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-white);
}

.para-card-hello {
  position: absolute;
  left: 274px;
  top: 155px;
  width: 360px;
  height: 260px;
  background: rgba(238, 238, 238, 0.30);
  border-radius: var(--r-card);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(210, 210, 210, 0.45);
}
.para-card-hello > span {
  font-weight: 700;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-black);
  position: relative;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  transition: filter 0.15s ease;
}
.para-card-hello-panel {
  position: absolute;
  left: 221px;
  top: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.55) 0%, rgba(240,240,245,0.40) 100%);
  backdrop-filter: blur(24px) saturate(180%) brightness(1.08);
  -webkit-backdrop-filter: blur(24px) saturate(180%) brightness(1.08);
  border-left: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: -4px 0 18px rgba(180, 170, 220, 0.10), inset 1px 0 0 rgba(255,255,255,0.6);
  z-index: 1;
  touch-action: none;
}
.para-card-hello-scroll {
  position: absolute;
  left: 8px;
  top: 101px;
  width: 8px;
  height: 55px;
  background: var(--c-white);
  border-radius: 7px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.10);
}

/* =====================================================
   DESCRIPTION
   ===================================================== */
.para-description {
  font-weight: 500;
  font-size: clamp(20px, 2.8vw, 36px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--c-gray);
  text-align: center;
  max-width: 720px;
  margin: 60px auto 200px;
  padding: 0 16px;
}

/* =====================================================
   FEATURES
   ===================================================== */
.para-features {
  display: flex;
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto 250px;
  padding: 0 10px;
}

.para-feature-card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.para-feature-visual {
  width: 100%;
  aspect-ratio: 347 / 212;
  background: var(--c-card-bg);
  border-radius: var(--r-card);
  padding: 16px;
  position: relative;
}

.para-feature-inner {
  width: 100%;
  height: 100%;
  background: var(--c-white);
  border-radius: var(--r-inner);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.06);
}

.para-feat-translate { position: relative; width: 100%; height: 100%; }

.para-feat-badge {
  position: absolute;
  background: var(--c-purple);
  border-radius: 8px;
  padding: 11px 20px;
  font-weight: 800;
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1;
  color: var(--c-white);
  letter-spacing: -0.02em;
  white-space: nowrap;
  transform-origin: top left;
}
.para-feat-badge.badge-translate { left: 10.2%; top: 41.9%; transform: rotate(-15deg); }
.para-feat-badge.badge-traducir  { left: 43.8%; top: 65.9%; transform: rotate(-15deg); z-index: 3; }

.para-feat-translate-arrow {
  position: absolute;
  top: 52%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  z-index: 2;
}
.para-feat-translate-arrow img { width: 100%; height: 100%; object-fit: contain; }

.para-feat-flags {
  position: relative;
  width: 100%;
  height: 100%;
}
.para-feat-flags img {
  position: absolute;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.para-feat-ai {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.para-feat-ai-words {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  position: absolute;
  top: 10px;
  width: 100%;
}
.para-feat-ai-words span {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
  background: linear-gradient(to bottom, #c5c5c5 0%, #5f5f5f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.para-feat-ai-icon {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.para-feat-ai-icon img { width: 100%; height: 100%; object-fit: cover; }

.para-feat-ai-train {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
  font-size: 14px;
  color: var(--c-gray);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.para-feature-text { text-align: center; }
.para-feature-title {
  font-weight: 700;
  font-size: clamp(16px, 1.8vw, 24px);
  line-height: 1.35;
  color: var(--c-gray);
  letter-spacing: -0.02em;
}
.para-feature-subtitle {
  font-weight: 500;
  font-size: clamp(13px, 1.4vw, 18px);
  line-height: 1.5;
  color: var(--c-gray);
  letter-spacing: -0.02em;
  margin-top: 2px;
}

/* =====================================================
   CTA BOTTOM
   ===================================================== */
.para-cta-bottom {
  text-align: center;
  padding-bottom: 190px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.para-footer {
  text-align: center;
  padding-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.para-footer-links {
  display: flex;
  gap: 24px;
}
.para-footer-links a {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.8;
  color: var(--c-gray-light);
  transition: color 0.18s;
  letter-spacing: -0.02em;
}
.para-footer-links a:hover { color: var(--c-black); }
.para-footer-copy {
  font-weight: 500;
  font-size: 16px;
  color: var(--c-gray-light);
  letter-spacing: -0.02em;
}

/* =====================================================
   PRIVACY POLICY PAGE
   ===================================================== */
.para-policy {
  padding: 60px 100px 80px;
  max-width: 1280px;
  margin: 0 auto;
}
.para-policy h1 {
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--c-black);
  margin-bottom: 40px;
}
.para-policy-body {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--c-gray);
  max-width: 860px;
}
.para-policy-body p { margin-bottom: 1.2em; }
.para-policy-body h2 { font-weight: 700; font-size: 32px; line-height: 1.2; letter-spacing: -0.02em; color: var(--c-black); margin: 1.8em 0 0.5em; }
.para-policy-body ul { list-style: disc; padding-left: 1.6em; margin-bottom: 1.2em; }
.para-policy-body li { margin-bottom: 0.4em; }

/* =====================================================
   404 PAGE
   ===================================================== */
.para-404-main {
  min-height: calc(100vh - 260px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}
.para-404-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.para-404-cards {
  position: relative;
  width: 634px;
  height: 415px;
  margin: 0 auto 48px;
}
.para-404-card-hola {
  position: absolute;
  left: 0; top: 0;
  width: 360px;
  height: 260px;
  background: var(--c-purple);
  border-radius: var(--r-card);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.para-404-card-hola span {
  font-weight: 700;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-white);
}
.para-404-card-hello {
  position: absolute;
  left: 274px; top: 155px;
  width: 360px;
  height: 260px;
  background: rgba(238, 238, 238, 0.30);
  border-radius: var(--r-card);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(210, 210, 210, 0.45);
}
.para-404-card-hello > span {
  font-weight: 700;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-black);
  position: relative;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  transition: filter 0.15s ease;
}
.para-404-card-hello .para-card-hello-panel {
  left: 221px;
}

.para-404-title {
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.03em;
  color: var(--c-black);
  margin-bottom: 16px;
  line-height: 1.1;
}
.para-404-desc {
  font-weight: 500;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--c-gray);
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  line-height: 1.5;
}
.para-404-actions { display: flex; justify-content: center; }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.para-contact-main {
  padding: 80px 100px 100px;
  max-width: 1280px;
  margin: 0 auto;
}
.para-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.para-contact-title {
  font-weight: 700;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--c-black);
  margin-bottom: 24px;
}
.para-contact-desc {
  font-weight: 500;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.65;
  color: var(--c-gray);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.para-contact-email {
  display: inline-block;
  font-weight: 600;
  font-size: 18px;
  color: var(--c-purple);
  letter-spacing: -0.02em;
  transition: opacity 0.18s;
}
.para-contact-email:hover { opacity: 0.75; }

.para-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.para-form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.para-form-label {
  font-weight: 600;
  font-size: 15px;
  color: var(--c-black);
  letter-spacing: -0.01em;
}
.para-form-optional {
  font-weight: 400;
  color: var(--c-gray-light);
  font-size: 13px;
}
.para-form-input {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  color: var(--c-black);
  background: var(--c-white);
  border: 1.5px solid rgba(200, 200, 200, 0.8);
  border-radius: 16px;
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  -webkit-appearance: none;
  appearance: none;
}
.para-form-input::placeholder { color: var(--c-gray-light); }
.para-form-input:focus {
  border-color: var(--c-purple);
  box-shadow: 0 0 0 3px rgba(173, 150, 255, 0.18);
}
.para-form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}
.para-form-submit {
  align-self: flex-start;
  margin-top: 4px;
}

.para-form-success {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: rgba(173, 150, 255, 0.10);
  border: 1.5px solid rgba(173, 150, 255, 0.35);
  border-radius: 16px;
  color: var(--c-black);
  font-weight: 500;
  font-size: 16px;
}
.para-form-success-icon {
  width: 36px;
  height: 36px;
  background: var(--c-purple);
  color: var(--c-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.para-form-error {
  padding: 14px 20px;
  background: rgba(230, 57, 70, 0.07);
  border: 1.5px solid rgba(230, 57, 70, 0.25);
  border-radius: 12px;
  color: #c0392b;
  font-size: 15px;
  font-weight: 500;
}

/* =====================================================
   WP UTILS
   ===================================================== */
.screen-reader-text {
  position: absolute; clip: rect(1px,1px,1px,1px);
  width: 1px; height: 1px; overflow: hidden;
}

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

/* — 1100px: tighten padding — */
@media (max-width: 1100px) {
  .para-header    { padding: 40px 40px 0; }
  .para-features  { padding: 0 40px; gap: 14px; }
}

/* — 900px — */
@media (max-width: 900px) {
  .para-header { padding: 32px 24px 0; }
  .para-btn-download { font-size: 17px; padding: 14px 18px; gap: 10px; }
  .para-hero { padding-top: 120px; }

  /* icon-box: ~60% от desktop (58px → 44px) */
  .para-hero-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 22px;
    margin-bottom: -16px;
  }
  .para-hero-icon-box img { width: 22px; }

  /* card-zh: ~60% от desktop (58px → 44px) */
  .para-card-zh {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    margin-bottom: -11px;
    margin-right: 8px;
  }
  .para-card-zh span { font-size: 22px; }

  /* Cards scene */
  .para-cards-scene {
    width: 480px;
    height: 315px;
    transform-origin: top center;
  }
  .para-card-hola {
    width: 272px;
    height: 197px;
    border-radius: 32px;
  }
  .para-card-hola span { font-size: 38px; }
  .para-card-hello {
    width: 272px;
    height: 197px;
    border-radius: 32px;
    left: 208px;
    top: 118px;
  }
  .para-card-hello > span { font-size: 38px; }
  .para-card-hello-panel { left: 167px; }
  .para-card-hello-scroll { top: 77px; height: 42px; }

  .para-features { flex-direction: column; align-items: center; padding: 0 24px; margin-bottom: 80px; }
  .para-feature-card { width: 100%; max-width: 400px; }
  .para-policy { padding: 40px 24px; }
  .para-policy-body { font-size: 24px; }
  .para-policy-body h2 { font-size: 24px; }

  /* Contact */
  .para-contact-main { padding: 60px 40px 80px; }
  .para-contact-inner { grid-template-columns: 1fr; gap: 48px; }

  /* 404 cards */
  .para-404-cards { width: 480px; height: 315px; }
  .para-404-card-hola { width: 272px; height: 197px; border-radius: 32px; }
  .para-404-card-hola span { font-size: 38px; }
  .para-404-card-hello { width: 272px; height: 197px; border-radius: 32px; left: 208px; top: 118px; }
  .para-404-card-hello > span { font-size: 38px; }
  .para-404-card-hello .para-card-hello-panel { left: 167px; }
  .para-404-card-hello .para-card-hello-scroll { top: 77px; height: 42px; }
}

/* — 640px: full mobile — */
@media (max-width: 640px) {
  .para-header { padding: 24px 16px 0; }
  .para-logo img { height: 40px; }
  .para-btn-download { font-size: 15px; padding: 12px 16px; gap: 8px; }
  .para-btn-download img { width: 14px; }

  .para-hero { padding-top: 80px; }

  /* icon-box: ~45% от desktop (58px → 36px) */
  .para-hero-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    font-size: 18px;
    margin-bottom: -12px;
  }
  .para-hero-icon-box img { width: 18px; }

  /* card-zh: ~45% от desktop (58px → 36px) */
  .para-card-zh {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    margin-bottom: -8px;
    margin-right: 6px;
  }
  .para-card-zh span { font-size: 18px; }

  /* Cards scene */
  .para-cards-scene {
    width: 350px;
    height: 229px;
    display: block;
    margin-top: 40px;
  }
  .para-card-hola {
    position: absolute;
    width: 200px;
    height: 144px;
    border-radius: 23px;
  }
  .para-card-hola span { font-size: 29px; }
  .para-card-hello {
    position: absolute;
    width: 200px;
    height: 144px;
    border-radius: 23px;
    left: 152px;
    top: 86px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .para-card-hello > span { font-size: 29px; }
  .para-card-hello-panel {
    display: block;
    left: 122px;
  }
  .para-card-hello-scroll { top: 56px; height: 30px; }

  .para-description { margin: 40px auto 60px; }
  .para-cta-bottom { padding-bottom: 80px; }
  .para-footer-links { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .para-policy { padding: 32px 16px; }
  .para-policy h1 { font-size: 32px; }
  .para-policy-body { font-size: 18px; }
  .para-policy-body h2 { font-size: 18px; }

  .para-contact-main { padding: 40px 20px 60px; }
  .para-form-submit { width: 100%; justify-content: center; }

  .para-404-main { padding: 40px 20px; }
  .para-404-cards { width: 350px; height: 229px; }
  .para-404-card-hola { width: 200px; height: 144px; border-radius: 23px; }
  .para-404-card-hola span { font-size: 29px; }
  .para-404-card-hello { width: 200px; height: 144px; border-radius: 23px; left: 152px; top: 86px; }
  .para-404-card-hello > span { font-size: 29px; }
  .para-404-card-hello .para-card-hello-panel { left: 122px; }
  .para-404-card-hello .para-card-hello-scroll { top: 56px; height: 30px; }
}

/* — 400px: very small — */
@media (max-width: 400px) {
  .para-logo img { height: 32px; }
  .para-btn-download span { display: none; }
  .para-hero-row1,
  .para-hero-row2 { font-size: 40px; }

  /* icon-box: ~35% от desktop (58px → 30px) */
  .para-hero-icon-box {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    font-size: 15px;
    margin-bottom: -10px;
  }
  .para-hero-icon-box img { width: 15px; }

  /* card-zh: ~35% от desktop (58px → 30px) */
  .para-card-zh {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    margin-bottom: -6px;
    margin-right: 5px;
  }
  .para-card-zh span { font-size: 15px; }

  /* Cards scene */
  .para-cards-scene { width: 270px; height: 177px; }
  .para-card-hola,
  .para-card-hello { width: 154px; height: 111px; border-radius: 18px; }
  .para-card-hello { left: 117px; top: 66px; }
  .para-card-hola span,
  .para-card-hello > span { font-size: 22px; }
  .para-card-hello-panel { left: 94px; }
  .para-card-hello-scroll { top: 43px; height: 23px; }

  .para-404-cards { width: 270px; height: 177px; }
  .para-404-card-hola,
  .para-404-card-hello { width: 154px; height: 111px; border-radius: 18px; }
  .para-404-card-hello { left: 117px; top: 66px; }
  .para-404-card-hola span,
  .para-404-card-hello > span { font-size: 22px; }
  .para-404-card-hello .para-card-hello-panel { left: 94px; }
  .para-404-card-hello .para-card-hello-scroll { top: 43px; height: 23px; }
}

/* =====================================================
   SCROLL ANIMATIONS
   ===================================================== */

.para-card-hola,
.para-hero-row1,
.para-hero-row2 {
  will-change: transform;
}

.hero-enter {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.para-hero-row1.hero-enter  { transition-delay: 0s; }
.para-hero-row2.hero-enter  { transition-delay: 0.1s; }
.para-hero-tagline.hero-enter { transition-delay: 0.2s; }
.para-cards-scene.hero-enter { transition-delay: 0.35s; transform: translateY(40px); }

.hero-entered {
  opacity: 1;
  transform: translateY(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.para-feature-card.fade-up:nth-child(1) { transition-delay: 0s; }
.para-feature-card.fade-up:nth-child(2) { transition-delay: 0.12s; }
.para-feature-card.fade-up:nth-child(3) { transition-delay: 0.24s; }

.para-cta-bottom.fade-up { transition-delay: 0.1s; }

@media (prefers-reduced-motion: reduce) {
  .hero-enter,
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .para-card-hola,
  .para-hero-row1,
  .para-hero-row2 {
    will-change: auto;
  }
}