:root {
  --bg: #050812;
  --panel: rgba(8, 13, 27, .66);
  --panel-strong: rgba(9, 14, 29, .84);
  --line: rgba(242, 211, 190, .25);
  --line-blue: rgba(142, 185, 222, .22);
  --text: #f7eadf;
  --muted: rgba(247, 234, 223, .77);
  --soft: rgba(230, 220, 218, .62);
  --pink: #ff7ca8;
  --pink-soft: #ff9fbd;
  --pink-text: #ff8bb0;
  --gold: #e6c8a7;
  --blue: #95c8ff;
  --shadow: rgba(0, 0, 0, .52);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Lora", Georgia, serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.home-mode {
  min-height: 100svh;
}

body.project-mode {
  height: auto;
}

body.home-mode main > section:not(.hero) {
  display: none;
}

body.project-mode .hero {
  display: none;
}

/* En project-mode, solo la sección activa es visible */
body.project-mode .text-scene {
  display: none;
}

body.project-mode .text-scene.section-active {
  display: flex;
}

/* Lanzamiento y cierre van juntos */
body.project-mode .scene-cierre.section-active,
body.project-mode .scene-lanzamiento.section-active {
  display: flex;
}

/* Footer eliminado */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 50% 10%, rgba(76, 103, 171, .22), transparent 38%),
    linear-gradient(180deg, #030711 0%, #050812 48%, #080914 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 9s steps(8) infinite;
}

@keyframes grain {
  to { background-position: 38px 27px; }
}

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

.page-shell {
  min-height: 100vh;
  overflow-x: clip;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: clamp(26px, 4.5vw, 68px);
  min-height: 82px;
  padding: 18px clamp(28px, 4.6vw, 82px);
  background: linear-gradient(180deg, rgba(4, 6, 14, .82), rgba(4, 6, 14, .36) 62%, rgba(4, 6, 14, 0));
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.brand {
  font-family: "IM Fell English", Georgia, serif;
  font-size: clamp(2.75rem, 4vw, 4.35rem);
  color: #ffc2d4;
  letter-spacing: .035em;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(255, 111, 158, .22), 0 3px 16px var(--shadow);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 3.4vw, 58px);
  font-family: "IM Fell English", Georgia, serif;
  font-size: clamp(1.12rem, 1.22vw, 1.34rem);
  color: rgba(255, 238, 230, .88);
}

body.home-mode .nav-links {
  justify-content: center;
  font-family: "IM Fell English", Georgia, serif;
  font-size: clamp(2rem, 2.45vw, 2.75rem);
}

body.home-mode .project-link {
  display: none;
}

body.project-mode .home-link {
  display: none;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  text-shadow: 0 2px 9px rgba(0, 0, 0, .76);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--pink);
  box-shadow: 0 0 12px rgba(255, 124, 168, .8);
  transform: translateX(-50%);
  transition: width .24s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 34px;
}

.social-mini,
.footer-social div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.social-mini a,
.footer-social a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--pink-text);
  filter: drop-shadow(0 0 8px rgba(255, 139, 176, .28));
  transition: color .25s ease, filter .25s ease;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 34px;
  padding: 0 4px;
  color: rgba(255, 139, 176, .58);
  font-family: "IM Fell English", Georgia, serif;
  font-size: .9rem;
  letter-spacing: .04em;
  text-shadow: 0 0 10px rgba(255, 139, 176, .18);
}

.lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 205, 220, .56);
  font: inherit;
  letter-spacing: inherit;
  padding: 3px 2px;
  cursor: pointer;
  transition: color .22s ease, text-shadow .22s ease, opacity .22s ease;
}

.lang-btn:hover,
.lang-btn.is-active {
  color: var(--pink-text);
  text-shadow: 0 0 12px rgba(255, 139, 176, .5);
}

.lang-btn:not(.is-active) {
  opacity: .72;
}

.social-mini a:hover {
  color: var(--gold);
  filter: drop-shadow(0 0 14px rgba(230, 200, 167, .52));
}

.social-mini a svg {
  width: 18px;
  height: 18px;
  opacity: .88;
  transition: opacity .25s ease;
}

.social-mini a:hover svg {
  opacity: 1;
}

/* ── Email follow form (fallback para browsers sin notificaciones) ── */
.email-follow-form {
  margin-top: clamp(.6rem, 1.2vh, 1rem);
  max-width: min(480px, 100%);
  animation: riseIn .5s ease both;
}

.email-follow-label {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: rgba(255, 235, 228, .82);
  margin: 0 0 .65rem;
  text-shadow: 0 2px 10px rgba(0,0,0,.62);
}

.email-follow-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.email-follow-input {
  flex: 1;
  min-width: 200px;
  height: 44px;
  padding: 0 16px;
  background: rgba(6, 8, 20, .62);
  border: 1px solid rgba(255, 139, 176, .28);
  border-radius: 7px;
  color: var(--text);
  font-family: "Lora", Georgia, serif;
  font-size: .95rem;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.email-follow-input::placeholder {
  color: rgba(255, 220, 232, .38);
}

.email-follow-input:focus {
  border-color: rgba(255, 139, 176, .6);
  box-shadow: 0 0 14px rgba(255, 139, 176, .14);
}

.email-follow-btn {
  height: 44px;
  padding: 0 22px;
  background: linear-gradient(135deg, rgba(255, 105, 155, .88), rgba(197, 51, 111, .84));
  border: none;
  border-radius: 7px;
  color: rgba(255, 245, 240, .96);
  font-family: "IM Fell English", Georgia, serif;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(219, 66, 125, .28);
  transition: transform .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}

.email-follow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(219, 66, 125, .38);
}

.email-follow-success {
  margin: .75rem 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  color: var(--pink-text);
  font-size: clamp(.95rem, 1.1vw, 1.08rem);
  text-shadow: 0 0 18px rgba(255, 124, 168, .28);
}

/* ── TikTok peek tooltip ── */
#tiktok-tooltip {
  position: fixed;
  top: 72px;
  right: clamp(18px, 3vw, 52px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s cubic-bezier(.22,1,.36,1), transform .3s cubic-bezier(.22,1,.36,1);
  z-index: 200;
}

#tiktok-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
}

.peek-chibi {
  width: 90px;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,.52));
}

.peek-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: .88rem;
  color: rgba(255, 223, 232, .88);
  text-align: center;
  text-shadow: 0 2px 10px rgba(0,0,0,.72);
  background: rgba(6, 8, 18, .72);
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 139, 176, .18);
  white-space: nowrap;
  margin: 0;
}

.section-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero {
  display: flex;
  align-items: flex-start;
  min-height: 100svh;
  height: auto;
  padding: clamp(88px, 11vh, 110px) clamp(28px, 4.8vw, 88px) 18px;
  background: #050812;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/hana-hero.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.018);
  filter: brightness(.8) saturate(.92);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 46% 78% at 70% 48%, rgba(7, 11, 20, .02), rgba(7, 11, 20, .28) 63%, rgba(7, 11, 20, .56) 100%),
    linear-gradient(90deg, rgba(4, 7, 15, .9) 0%, rgba(5, 9, 20, .62) 36%, rgba(5, 9, 20, .12) 63%, rgba(4, 7, 15, .34) 100%),
    linear-gradient(180deg, rgba(3, 6, 14, .42), rgba(3, 6, 14, .1) 44%, rgba(4, 6, 14, .84));
}

.hero-content {
  width: min(860px, 56vw);
  position: relative;
  z-index: 1;
  animation: riseIn .9s ease both;
}

body.home-mode #inicio .hero-content {
  max-width: min(760px, 58vw);
  min-height: 100svh;
  padding-top: clamp(22px, 3vw, 36px);
  padding-bottom: clamp(3.8rem, 8vh, 5.8rem);
  padding-left: clamp(0rem, 1vw, .6rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); filter: blur(5px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.eyebrow {
  margin: 0 0 18px;
  font-family: "IM Fell English", Georgia, serif;
  color: var(--pink-text);
  text-transform: uppercase;
  letter-spacing: .055em;
  font-size: clamp(1rem, 1.14vw, 1.24rem);
  text-shadow: 0 0 18px rgba(255, 124, 168, .34);
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(5rem, 8vw, 9.2rem);
  font-weight: 600;
  line-height: .9;
  letter-spacing: 0;
  color: var(--gold);
  text-shadow: 0 4px 24px rgba(0, 0, 0, .74), 0 0 34px rgba(255, 196, 204, .14);
}

body.home-mode #inicio .hero-content h1 {
  font-size: clamp(4rem, 7.1vw, 6rem);
  line-height: .92;
  letter-spacing: 0;
  margin: 0 0 clamp(.85rem, 1.8vh, 1.2rem);
}

body.home-mode #inicio .hero-content h1 span {
  display: inline-block;
  font-size: .42em;
  line-height: 1;
  vertical-align: middle;
  margin-left: .12em;
  transform: translateY(-.05em);
}

h1 span {
  display: inline-block;
  margin-left: .04em;
  color: var(--pink);
  font-size: .46em;
  transform: translateY(-.05em);
  text-shadow: 0 0 22px rgba(255, 124, 168, .6);
}

.lead {
  margin-bottom: 13px;
  font-size: clamp(1.42rem, 1.85vw, 2rem);
  line-height: 1.2;
  color: rgba(255, 246, 239, .94);
  text-shadow: 0 3px 16px var(--shadow);
}

body.home-mode #inicio .eyebrow {
  font-size: clamp(1.32rem, 1.55vw, 1.66rem);
  line-height: 1.2;
  margin: 0 0 clamp(.55rem, 1.05vh, .8rem);
  letter-spacing: .055em;
}

body.home-mode #inicio .lead {
  font-size: clamp(1.45rem, 2.05vw, 1.82rem);
  line-height: 1.28;
  margin: 0 0 clamp(.9rem, 1.9vh, 1.25rem);
  max-width: 760px;
}

.poem-copy {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(.98rem, 1.05vw, 1.12rem);
  line-height: 1.32;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .72);
}

body.home-mode #inicio .poem-copy {
  max-width: 760px;
  margin: 0;
}

body.home-mode #inicio .poem-copy p {
  font-size: clamp(1.08rem, 1.35vw, 1.18rem);
  line-height: 1.6;
  margin: 0 0 .42rem;
}

.poem-copy p {
  margin-bottom: 6px;
}

.small-moments,
.flower-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 10px;
  color: rgba(255, 239, 234, .86);
  font-size: clamp(.98rem, 1.06vw, 1.12rem);
  line-height: 1.32;
}

.hero .small-moments {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
}

body.home-mode #inicio .small-moments {
  display: grid;
  grid-template-columns: repeat(2, minmax(230px, 1fr));
  column-gap: clamp(2.5rem, 4vw, 4.5rem);
  row-gap: .42rem;
  max-width: 790px;
  margin: clamp(.85rem, 1.65vh, 1.15rem) 0 clamp(.72rem, 1.45vh, 1rem);
  padding: 0;
}

body.home-mode #inicio .small-moments li {
  font-size: clamp(1.05rem, 1.32vw, 1.15rem);
  line-height: 1.45;
  padding-left: 1.65rem;
}

.small-moments li,
.flower-list li {
  position: relative;
  padding-left: 26px;
  margin: 3px 0;
}

.small-moments li::before,
.flower-list li::before {
  content: "✽";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pink);
  text-shadow: 0 0 13px rgba(255, 124, 168, .46);
}

.closing-line {
  margin-bottom: 10px;
  color: rgba(255, 239, 234, .95);
  font-size: clamp(.98rem, 1.08vw, 1.16rem);
}

body.home-mode #inicio .closing-line {
  font-size: clamp(1.18rem, 1.46vw, 1.25rem);
  line-height: 1.45;
  margin: 0 0 clamp(.85rem, 1.65vh, 1.15rem);
}

.hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 12px;
}

body.home-mode #inicio .hero-actions {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.8vw, 1.45rem);
  flex-wrap: wrap;
  margin-top: clamp(.55rem, 1.2vh, .9rem);
  padding-bottom: .75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  height: 48px;
  padding: 0 30px;
  border: 1px solid rgba(255, 209, 224, .36);
  border-radius: 7px;
  font-family: "IM Fell English", Georgia, serif;
  font-size: 1.18rem;
  color: var(--text);
  background: rgba(11, 16, 32, .48);
  box-shadow: 0 9px 28px rgba(0, 0, 0, .32);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  cursor: pointer;
}

body.home-mode #inicio .hero-actions .btn {
  min-height: 48px;
  padding: .82rem 2.35rem;
  font-size: clamp(1rem, 1.12vw, 1.12rem);
  line-height: 1;
}

button.btn {
  font: 1.18rem "IM Fell English", Georgia, serif;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 173, 203, .72);
}

.btn.primary {
  background: linear-gradient(135deg, rgba(255, 105, 155, .92), rgba(197, 51, 111, .88));
  box-shadow: 0 12px 32px rgba(219, 66, 125, .34);
}

.btn.ghost::after {
  content: "♡";
  margin-left: 16px;
  color: var(--pink-soft);
}

.launch-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: min(580px, 100%);
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(7, 11, 24, .78), rgba(11, 15, 32, .53));
  box-shadow: inset 0 0 28px rgba(107, 156, 218, .06), 0 14px 40px rgba(0, 0, 0, .32);
  backdrop-filter: blur(8px);
}

.card-label {
  margin-bottom: 4px;
  color: var(--pink-text);
  font-family: "IM Fell English", Georgia, serif;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.launch-date {
  margin-bottom: 1px;
  color: var(--gold);
  font-size: clamp(2rem, 2.65vw, 2.95rem);
  line-height: 1;
}

.launch-note {
  margin-bottom: 4px;
  color: var(--pink-text);
  font-size: clamp(1.05rem, 1.2vw, 1.28rem);
}

.launch-soft {
  margin-bottom: 0;
  color: rgba(255, 230, 224, .78);
  font-size: clamp(.95rem, 1vw, 1.08rem);
}

.card-flower {
  font-size: clamp(2.8rem, 4vw, 4.6rem);
  color: rgba(255, 124, 168, .72);
  text-shadow: 0 0 28px rgba(255, 124, 168, .52);
}

.text-scene {
  display: flex;
  align-items: center;
  padding: clamp(56px, 7vh, 88px) clamp(24px, 5vw, 88px);
  background-color: #050812;
}

.text-scene.section-active {
  min-height: 100svh;
  align-items: flex-start;
  padding-top: clamp(88px, 11vh, 110px);
}

.scene-lanzamiento.section-active {
  padding-top: clamp(88px, 11vh, 110px) !important;
}

.text-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/hana-bg-empty.png");
  background-size: cover;
  background-position: center;
  filter: brightness(.43) saturate(.82);
  transform: scale(1.02);
}

.text-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 75% 48%, rgba(12, 20, 38, .08), rgba(4, 8, 18, .58) 60%, rgba(3, 6, 13, .84)),
    linear-gradient(90deg, rgba(3, 7, 16, .9), rgba(3, 7, 16, .46) 52%, rgba(3, 7, 16, .72)),
    linear-gradient(180deg, rgba(4, 7, 16, .5), rgba(4, 7, 16, .18), rgba(4, 7, 16, .62));
}

.scene-conoce::before { background-position: center; }
.scene-que-es::before { background-position: 56% center; }
.scene-especial::before { background-position: 64% center; }
.scene-lanzamiento::before { background-position: center bottom; }
.scene-cierre::before { background-position: center bottom; }

.scene-lanzamiento {
  padding-bottom: clamp(56px, 7vh, 88px);
}

/* ── Lanzamiento fusionado ── */
.lanzamiento-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.lanzamiento-top {
  max-width: 780px;
  padding-bottom: clamp(2.5rem, 4.5vh, 4rem);
}

.lanzamiento-top h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 5rem) !important;
  font-weight: 500;
}

.lanzamiento-top .eyebrow {
  color: var(--pink-text);
}

.lanzamiento-bottom .eyebrow {
  color: var(--pink-text);
}

.que-es-copy .eyebrow {
  color: var(--pink-text);
}
.lanzamiento-divider {
  display: none;
}

.lanzamiento-bottom {
  width: 100%;
  padding-top: clamp(2.5rem, 4.5vh, 4rem);
  border-top: 1px solid rgba(255, 124, 168, .18);
}

.cierre-h2 {
  font-size: clamp(2.4rem, 4vw, 5rem) !important;
  margin-bottom: 16px !important;
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 700px) 1fr;
}

.copy-block {
  max-width: 860px;
  padding: clamp(22px, 3vw, 36px) 0;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .74);
}

.copy-block.narrow {
  max-width: 900px;
}

.copy-block.wide {
  max-width: 1040px;
}

/* ── Conoce a Hana layout ── */
.conoce-layout {
  max-width: 900px;
}

.conoce-layout h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4vw, 5rem) !important;
}

.pull-quote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 2.2vw, 2.4rem) !important;
  font-style: italic;
  color: var(--pink-text) !important;
  border-left: 2px solid var(--pink);
  padding-left: 1.2rem;
  margin: clamp(1.2rem, 2.5vh, 2rem) 0 clamp(1.4rem, 2.8vh, 2.2rem) !important;
  line-height: 1.3 !important;
  text-shadow: 0 0 28px rgba(255, 124, 168, .18);
}

.conoce-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  margin-bottom: clamp(1.4rem, 2.5vh, 2rem);
}

.conoce-col p {
  font-size: clamp(1.32rem, 1.55vw, 1.66rem) !important;
  line-height: 1.7 !important;
  color: rgba(255, 235, 228, .80) !important;
  margin-bottom: 14px !important;
}

.conoce-detail-label {
  font-family: "IM Fell English", Georgia, serif !important;
  font-size: clamp(.88rem, 1vw, 1rem) !important;
  color: var(--pink-text) !important;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px !important;
}

.copy-block .conoce-detail-label {
  font-size: clamp(.88rem, 1vw, 1rem) !important;
  color: var(--pink-text) !important;
}

.conoce-list {
  margin: 0 !important;
  font-size: clamp(1.32rem, 1.55vw, 1.66rem) !important;
}

.conoce-closing {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.4rem, 1.9vw, 2.1rem) !important;
  color: rgba(255, 245, 240, .92) !important;
  line-height: 1.35 !important;
  margin-top: clamp(.8rem, 1.5vh, 1.2rem) !important;
  padding-top: clamp(.8rem, 1.5vh, 1.2rem);
  border-top: 1px solid rgba(255, 124, 168, .18);
}

.conoce-closing span {
  color: var(--pink-text);
}

/* ── Qué es Hana layout ── */
.que-es-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vh, 3.25rem);
  max-width: 1240px;
}

.que-es-layout {
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(440px, 1fr);
  gap: clamp(3.2rem, 6vw, 7.5rem);
  align-items: start;
}

.que-es-copy {
  max-width: 520px !important;
}

.que-es-copy .eyebrow {
  color: var(--pink-text);
}

.que-es-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(210px, 60%);
  margin: clamp(1.8rem, 3.2vh, 2.5rem) 0 clamp(2rem, 3.6vh, 2.9rem);
  color: var(--pink);
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
  text-shadow: 0 0 18px rgba(255, 124, 168, .52);
}

.que-es-divider::before,
.que-es-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink));
  box-shadow: 0 0 10px rgba(255, 124, 168, .28);
}

.que-es-divider::after {
  background: linear-gradient(90deg, var(--pink), transparent);
}

.que-es-points {
  display: grid;
  gap: clamp(1.3rem, 2.8vh, 2.1rem);
  padding-top: clamp(3.1rem, 7vh, 5.6rem);
}

.que-es-points article {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: clamp(1.4rem, 2.5vw, 2.3rem);
  align-items: center;
  padding-bottom: clamp(1.25rem, 2.5vh, 2rem);
  border-bottom: 1px dashed rgba(255, 124, 168, .42);
}

.que-es-points article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.que-es-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 3px solid var(--pink);
  border-radius: 50%;
  color: var(--pink);
  font-family: "IM Fell English", Georgia, serif;
  font-size: 2.35rem;
  line-height: 1;
  text-shadow: 0 0 14px rgba(255, 124, 168, .5);
  box-shadow: 0 0 22px rgba(255, 124, 168, .15), inset 0 0 18px rgba(255, 124, 168, .08);
}

.que-es-icon::after {
  content: "✽";
  position: absolute;
  right: -14px;
  bottom: -11px;
  color: var(--pink);
  font-size: 1.95rem;
  text-shadow: 0 0 18px rgba(255, 124, 168, .65);
}

.que-es-points h3 {
  margin: 0 0 .38rem;
  color: rgba(255, 239, 229, .95);
  font-size: clamp(1.4rem, 1.9vw, 2.1rem);
  font-weight: 500;
  line-height: 1.18;
}

.que-es-points p {
  margin: 0 !important;
  color: rgba(255, 239, 232, .86) !important;
  font-size: clamp(1.32rem, 1.55vw, 1.66rem) !important;
  line-height: 1.5 !important;
}

.que-es-statement {
  display: block;
  width: 100%;
  max-width: 680px;
  margin: 0;
  padding: clamp(1.2rem, 2.2vh, 1.8rem) clamp(1.4rem, 2.8vw, 2.2rem);
  border: none;
  border-left: 2px solid var(--pink);
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.statement-flower {
  display: none;
}

.que-es-statement p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.45rem, 1.9vw, 2.1rem) !important;
  color: rgba(255, 245, 240, .94) !important;
  line-height: 1.42 !important;
  margin: 0 0 .25rem !important;
  text-align: left;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .72);
}

.que-es-statement p:last-child {
  margin-bottom: 0 !important;
}

.que-es-statement p em {
  color: var(--pink-text);
  font-style: normal;
}

.scene-que-es .copy-block h2 {
  max-width: 540px;
  margin-bottom: clamp(1.2rem, 2.2vh, 1.65rem);
  font-weight: 500;
  font-style: normal;
  line-height: 1.04;
  font-size: clamp(2.4rem, 4vw, 5rem) !important;
}

.scene-que-es .copy-block h2 span {
  color: var(--pink-text);
}

.scene-que-es .copy-block > p:not(.eyebrow) {
  max-width: 540px;
  font-size: clamp(1.32rem, 1.55vw, 1.66rem) !important;
  line-height: 1.48 !important;
  color: rgba(255, 239, 232, .86) !important;
  margin-bottom: clamp(1.2rem, 2.2vh, 1.65rem) !important;
}

@media (max-width: 980px) {
  .que-es-layout {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vh, 3rem);
  }

  .que-es-copy,
  .scene-que-es .copy-block h2,
  .scene-que-es .copy-block > p:not(.eyebrow) {
    max-width: 760px !important;
  }

  .que-es-points {
    padding-top: 0;
  }

  .que-es-statement {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .que-es-statement p {
    text-align: center;
  }
}

@media (max-width: 760px) {
  .scene-que-es .copy-block h2 {
    font-size: clamp(2rem, 10vw, 3rem) !important;
  }

  .que-es-divider {
    width: min(190px, 78%);
  }

  .que-es-points article {
    grid-template-columns: 64px 1fr;
    gap: 1.1rem;
  }

  .que-es-icon {
    width: 56px;
    height: 56px;
    border-width: 2px;
    font-size: 1.8rem;
  }

  .que-es-icon::after {
    right: -10px;
    bottom: -9px;
    font-size: 1.45rem;
  }

  .que-es-points h3 {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
  }

  .que-es-points p,
  .scene-que-es .copy-block > p:not(.eyebrow) {
    font-size: clamp(1.18rem, 4vw, 1.32rem) !important;
  }

  .que-es-statement {
    padding: 1.35rem;
  }

  .que-es-statement p {
    font-size: clamp(1.55rem, 7vw, 2.2rem) !important;
  }
}

.copy-block h2 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5vw, 6.2rem);
  font-weight: 500;
  line-height: 1.04;
  color: rgba(255, 239, 229, .95);
}

.copy-block h2 span,
.rose-line {
  color: var(--pink-text) !important;
}

.copy-block p {
  margin-bottom: 20px;
  color: rgba(255, 239, 232, .82);
  font-size: clamp(1.32rem, 1.55vw, 1.66rem);
  line-height: 1.58;
}

.copy-block .flower-list {
  margin: 18px 0 22px;
  font-size: clamp(1.24rem, 1.38vw, 1.5rem);
  line-height: 1.58;
}

.rose-line {
  margin-top: 30px;
  font-size: clamp(1.62rem, 2.08vw, 2.32rem) !important;
  line-height: 1.38 !important;
}

.feature-stack {
  display: grid;
  gap: clamp(22px, 3.4vh, 38px);
  margin-top: 34px;
}

.feature-stack article {
  display: grid;
  grid-template-columns: 90px minmax(0, 760px);
  gap: 32px;
  align-items: start;
}

.feature-stack article > span {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(255, 124, 168, .22);
  border-radius: 999px;
  color: #ff9fbd;
  font-size: 2rem;
  background: radial-gradient(circle, rgba(255, 91, 144, .32), rgba(15, 20, 42, .42));
  box-shadow: 0 0 28px rgba(255, 91, 144, .16);
}

.feature-stack h3 {
  margin-bottom: 7px;
  color: var(--gold);
  font-size: clamp(2rem, 2.45vw, 2.85rem);
  font-weight: 500;
}

.feature-stack p {
  margin: 0;
  max-width: 780px;
}

.date-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
  max-width: 680px;
  margin-top: 40px;
  padding: 20px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 10, 22, .58);
  box-shadow: inset 0 0 30px rgba(111, 157, 216, .06);
}

.date-strip span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 188, 209, .72);
  font-family: "IM Fell English", Georgia, serif;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.date-strip strong {
  color: rgba(255, 240, 229, .94);
  font-size: clamp(1.35rem, 1.8vw, 1.9rem);
  font-weight: 500;
}

.date-strip i {
  color: var(--pink);
  font-style: normal;
  text-shadow: 0 0 14px rgba(255, 124, 168, .6);
}

.closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 670px) minmax(260px, 420px);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
}

.choice-box {
  margin-top: 36px;
  padding: 26px;
  border: 1px solid rgba(255, 210, 224, .23);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(6, 10, 22, .72), rgba(16, 22, 43, .46));
  box-shadow: 0 14px 42px rgba(0, 0, 0, .28);
}

.choice-box h3 {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: clamp(1.8rem, 2.4vw, 2.7rem);
  font-weight: 500;
}

.choice-box p {
  margin-bottom: 18px;
}

.choice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.choice-btn {
  min-height: 44px;
  padding: 0 24px;
  border: 1px solid rgba(255, 206, 222, .34);
  border-radius: 7px;
  color: rgba(255, 243, 238, .94);
  background: rgba(10, 15, 31, .56);
  font: 1.08rem "IM Fell English", Georgia, serif;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.choice-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 146, 185, .72);
}

.choice-btn.selected {
  background: linear-gradient(135deg, rgba(255, 105, 155, .9), rgba(185, 44, 104, .86));
  border-color: rgba(255, 206, 222, .76);
  box-shadow: 0 10px 28px rgba(221, 62, 124, .26);
}

.choice-response {
  min-height: 1.5em;
  margin: 18px 0 0 !important;
  color: rgba(255, 205, 220, .86) !important;
  font-style: italic;
}

.chibi-stage {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 460px;
  position: relative;
}

.hana-chibi {
  width: min(390px, 100%);
  border-radius: 24px;
  opacity: 0;
  transform: translateY(28px) scale(.84);
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, .46));
  pointer-events: none;
}

.hana-chibi.visible {
  animation: chibiPop .72s cubic-bezier(.18, 1.35, .32, 1) both;
}

@keyframes chibiPop {
  0% { opacity: 0; transform: translateY(28px) scale(.84) rotate(-2deg); filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .28)); }
  58% { opacity: 1; transform: translateY(-8px) scale(1.035) rotate(1deg); }
  100% { opacity: 1; transform: translateY(0) scale(1) rotate(0); filter: drop-shadow(0 24px 34px rgba(0, 0, 0, .46)); }
}

.hana-chibi.hiding {
  animation: chibiHide .28s ease both;
}

@keyframes chibiHide {
  to { opacity: 0; transform: translateY(18px) scale(.92); }
}

.chibi-caption {
  margin-top: 14px;
  color: rgba(255, 223, 232, .88);
  font-size: clamp(1.1rem, 1.3vw, 1.3rem);
  font-style: italic;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .62);
}

.chibi-stage.visible .chibi-caption {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .22s;
}


@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  body.project-mode .site-header {
    grid-template-columns: auto auto;
    grid-template-areas:
      "brand social"
      "nav nav";
    gap: 4px 14px;
    min-height: 0;
    padding: 10px 18px 6px;
  }

  body.project-mode .brand {
    display: block;
    grid-area: brand;
    font-size: 2.15rem;
    line-height: 1;
  }

  body.project-mode .social-mini {
    display: flex;
    grid-area: social;
    justify-content: end;
    align-self: center;
  }

  body.project-mode .nav-links {
    display: flex;
    grid-area: nav;
    width: 100%;
    justify-content: center;
    gap: clamp(14px, 4.6vw, 34px);
    font-size: clamp(.95rem, 3vw, 1.14rem);
    line-height: 1.05;
    overflow-x: auto;
    scrollbar-width: none;
    padding-top: 0;
  }

  body.project-mode .legal-mini {
    grid-column: auto;
  }

  body.project-mode .nav-links::-webkit-scrollbar {
    display: none;
  }

  .social-mini {
    justify-content: end;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
    align-items: end;
  }

  .hero-bg {
    background-position: 62% center;
  }

  .hero-content {
    width: min(720px, 100%);
  }

  .split-section,
  .closing-grid {
    grid-template-columns: 1fr;
  }

  .chibi-stage {
    min-height: 320px;
  }

  .hana-chibi {
    width: min(300px, 78vw);
  }

}

@media (max-height: 780px) and (min-width: 900px) {
  body.home-mode #inicio .hero-content {
    justify-content: flex-start;
    padding-top: clamp(22px, 3vw, 36px);
    padding-bottom: 4.75rem;
    max-width: min(760px, 60vw);
  }

  body.home-mode #inicio .eyebrow {
    margin-bottom: .55rem;
  }

  body.home-mode #inicio .hero-content h1 {
    font-size: clamp(3.6rem, 6.45vw, 5.45rem);
    line-height: .94;
    margin-bottom: 1rem;
  }

  body.home-mode #inicio .lead {
    font-size: clamp(1.35rem, 1.85vw, 1.6rem);
    line-height: 1.28;
    margin-bottom: .85rem;
  }

  body.home-mode #inicio .poem-copy p {
    font-size: 1.25rem;
    line-height: 1.38;
    margin-bottom: .34rem;
  }

  body.home-mode #inicio .small-moments {
    margin-top: .72rem;
    margin-bottom: .65rem;
    row-gap: .35rem;
  }

  body.home-mode #inicio .small-moments li {
    font-size: 1.25rem;
    line-height: 1.32;
  }

  body.home-mode #inicio .closing-line {
    margin-bottom: .7rem;
  }

  body.home-mode #inicio .hero-actions {
    margin-top: .55rem;
    padding-bottom: 2.5rem;
  }

  body.home-mode #inicio .launch-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 16px 18px;
  }

  .brand {
    font-size: 2.3rem;
  }

  .social-mini {
    gap: 8px;
  }

  .hero,
  .text-scene {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: clamp(4.2rem, 18vw, 6.2rem);
  }

  .lead {
    font-size: 1.38rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .launch-card {
    padding: 18px;
  }

  .card-flower {
    font-size: 3.2rem;
  }

  .copy-block h2 {
    font-size: clamp(2.3rem, 12vw, 3.8rem);
  }

  .feature-stack article {
    grid-template-columns: 58px 1fr;
    gap: 16px;
  }

  .feature-stack article > span {
    width: 52px;
    height: 52px;
    font-size: 1.38rem;
  }

  .date-strip {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .date-strip i {
    display: none;
  }

  .choice-actions {
    display: grid;
  }

  .choice-btn {
    width: 100%;
  }
}

@media (max-width: 760px) {
  html,
  body,
  .page-shell {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero {
    min-height: 100svh;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .text-scene.section-active,
  .scene-lanzamiento.section-active {
    padding-top: 86px !important;
  }

  .legal-shell {
    padding-top: 72px !important;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .legal-title {
    max-width: 100%;
    font-size: clamp(2.55rem, 12vw, 3.45rem) !important;
    line-height: 1.02 !important;
    overflow-wrap: normal;
  }

  .legal-meta,
  .legal-section p,
  .legal-section li {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-bg {
    background-position: 64% center;
  }

  .hero-shade {
    background:
      radial-gradient(ellipse 62% 70% at 72% 32%, rgba(7, 11, 20, .08), rgba(7, 11, 20, .36) 62%, rgba(7, 11, 20, .72) 100%),
      linear-gradient(90deg, rgba(4, 7, 15, .94) 0%, rgba(5, 9, 20, .78) 48%, rgba(5, 9, 20, .38) 78%, rgba(4, 7, 15, .7) 100%),
      linear-gradient(180deg, rgba(3, 6, 14, .38), rgba(3, 6, 14, .18) 45%, rgba(4, 6, 14, .9));
  }

  body.home-mode #inicio .hero-content {
    max-width: none;
    width: 100%;
    min-height: 100svh;
    padding: 104px clamp(1.15rem, 6vw, 1.55rem) 4.5rem;
    justify-content: flex-start;
  }

  body.home-mode #inicio .eyebrow {
    max-width: calc(100vw - clamp(2.3rem, 12vw, 3.1rem));
    white-space: normal;
    overflow-wrap: anywhere;
    font-size: clamp(1.04rem, 5vw, 1.26rem);
    line-height: 1.18;
  }

  body.home-mode #inicio .hero-content h1 {
    max-width: calc(100vw - clamp(2.3rem, 12vw, 3.1rem));
    font-size: clamp(3.35rem, 15.2vw, 4.45rem);
    line-height: .94;
    overflow-wrap: normal;
  }

  body.home-mode #inicio .lead {
    max-width: calc(100vw - clamp(2.3rem, 12vw, 3.1rem));
    font-size: clamp(1.18rem, 5vw, 1.36rem);
    line-height: 1.22;
  }

  body.home-mode #inicio .poem-copy,
  body.home-mode #inicio .closing-line {
    max-width: calc(100vw - clamp(2.3rem, 12vw, 3.1rem));
  }

  body.home-mode #inicio .poem-copy p {
    font-size: clamp(1.05rem, 4.4vw, 1.18rem);
    line-height: 1.42;
    overflow-wrap: anywhere;
  }

  body.home-mode #inicio .small-moments {
    grid-template-columns: 1fr;
    row-gap: .6rem;
    max-width: calc(100vw - clamp(2.3rem, 12vw, 3.1rem));
  }

  body.home-mode #inicio .small-moments li {
    font-size: clamp(1.03rem, 4.35vw, 1.16rem);
    line-height: 1.34;
    overflow-wrap: anywhere;
  }

  body.home-mode #inicio .closing-line {
    font-size: clamp(1.08rem, 4.6vw, 1.22rem);
  }

  body.home-mode #inicio .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  body.home-mode #inicio .hero-actions .btn {
    width: 100%;
  }

  body.home-mode #inicio .launch-card {
    display: none;
  }
}

/* ── Site footer — copyright y enlace legal ── */
@media (max-width: 480px) {
  body.home-mode #inicio .hero-content {
    width: min(100%, 390px);
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

  body.home-mode #inicio .eyebrow,
  body.home-mode #inicio .hero-content h1,
  body.home-mode #inicio .lead,
  body.home-mode #inicio .poem-copy,
  body.home-mode #inicio .small-moments,
  body.home-mode #inicio .closing-line {
    max-width: 100%;
  }
}

.site-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  padding: clamp(18px, 3vh, 28px) clamp(24px, 5vw, 56px);
  border-top: 1px solid rgba(255, 124, 168, .1);
  background: rgba(3, 4, 10, .6);
}

.site-footer span {
  font-family: "Lora", Georgia, serif;
  font-size: .82rem;
  color: rgba(247, 234, 223, .36);
}

.footer-legal-link {
  font-family: "IM Fell English", Georgia, serif;
  font-size: .82rem;
  color: var(--pink-text);
  opacity: .62;
  text-decoration: none;
  transition: opacity .2s ease;
}

.footer-legal-link:hover {
  opacity: 1;
}
