/* ==========================================================================
   Playloto.io — landing
   Paleta playloto: magenta #e42077 + ink #191919 + paper #ffffff.
   Estructura de bloques tipo Taiko (kicker + headline gigante + pill button
   + curva orgánica detrás). Formas tipo Squid (covers con gradiente suave
   + ilustraciones doodle).
   Tipografías: Clash Display (display) + Public Sans (body).
   ========================================================================== */

:root {
  --bg: #f8f7f6;
  --bg-2: #f1efed;
  --paper: #ffffff;
  --ink: #191919;
  --ink-2: #2a2a2a;
  --ink-3: #666666;
  --line: #eaeaea;
  --line-2: #d6d6d6;

  --accent: #e42077;
  --accent-hover: #c2185b;
  --accent-soft: #ffd6e8;
  --accent-pale: #fff1f6;

  --peach: #ffd9b8;
  --peach-pale: #fff3e6;
  --violet: #d4cfff;
  --violet-pale: #efedff;
  --yellow: #e8f56b;
  --yellow-pale: #f6fab8;
  --cyan: #b8e8e3;
  --cyan-pale: #e6f6f4;

  --radius-pill: 999px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;

  --container: 1200px;
  --container-tight: 920px;

  --font-display: 'Clash Display', 'Public Sans', system-ui, sans-serif;
  --font-body: 'Public Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  font-family: var(--font-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

::selection { background: var(--accent); color: #fff; }

.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

em { font-style: italic; }

/* ==========================================================================
   Buttons (pills, Taiko-style)
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  letter-spacing: -0.005em;
  cursor: pointer;
  border: 0;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}

.btn-pill {
  border-radius: var(--radius-pill);
  padding: 14px 8px 14px 24px;
}
.btn-pill:not(.btn-ghost) {
  padding: 14px 8px 14px 24px;
}

.btn-solid {
  background: var(--accent);
  color: #fff;
}
.btn-solid:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px -8px rgba(228, 32, 119, 0.55);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 14px 22px;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-pill);
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
}

.btn-lg { font-size: 16px; padding: 18px 10px 18px 30px; }
.btn-lg.btn-ghost { padding: 18px 28px; }

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  margin-left: 4px;
  transition: transform 0.18s ease, background 0.18s ease;
}
.btn-lg .btn-arrow { width: 38px; height: 38px; }
.btn:hover .btn-arrow { transform: translateX(3px); background: rgba(255, 255, 255, 0.3); }

/* ==========================================================================
   Header (floating pill, Taiko-style)
   ========================================================================== */

.site-header {
  position: sticky;
  top: 18px;
  z-index: 100;
  padding: 0 18px;
  pointer-events: none;
}

.header-pill {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 12px 10px 22px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 30px -16px rgba(0, 0, 0, 0.18);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  height: 26px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex: 1;
  justify-content: center;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 6px 4px;
  position: relative;
  transition: color 0.15s ease;
}
.nav a:hover { color: var(--accent); }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
  border-radius: 2px;
}

/* ==========================================================================
   Kicker + Display titles (Taiko)
   ========================================================================== */

.kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}

.hero-title,
.block-title,
.cta-title,
.post-headline {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.95;
  color: var(--ink);
  margin: 0;
}

.title-accent { color: var(--accent); font-weight: 700; }
.title-dot { color: var(--accent); }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  padding: 90px 0 80px;
  overflow: hidden;
}

/* blueprint corner marks (Taiko-style) */
.bp-marks {
  position: absolute;
  inset: 100px 24px auto 24px;
  height: calc(100% - 160px);
  pointer-events: none;
  z-index: 1;
}
.bp {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--accent);
  opacity: 0.6;
}
.bp-tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.bp-tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.bp-bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.bp-br { bottom: 0; right: 0; border-left: 0; border-top: 0; }

/* soft glows behind hero (Squid-style) — animated */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform, opacity;
}
.glow-pink {
  width: 520px; height: 520px;
  top: -120px; right: 8%;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  opacity: 0.55;
  animation: drift-1 14s ease-in-out infinite;
}
.glow-peach {
  width: 460px; height: 460px;
  top: 40%; left: -10%;
  background: radial-gradient(circle, var(--peach), transparent 70%);
  opacity: 0.7;
  animation: drift-2 18s ease-in-out infinite;
}
.glow-violet {
  width: 360px; height: 360px;
  bottom: -80px; right: 30%;
  background: radial-gradient(circle, var(--violet), transparent 70%);
  opacity: 0.45;
  animation: drift-3 22s ease-in-out infinite;
}

@keyframes drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.55; }
  50%      { transform: translate(-40px, 30px) scale(1.08); opacity: 0.7; }
}
@keyframes drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.55; }
  50%      { transform: translate(50px, -30px) scale(1.1); opacity: 0.75; }
}
@keyframes drift-3 {
  0%, 100% { transform: translate(0, 0) scale(0.95); opacity: 0.4; }
  50%      { transform: translate(-30px, -40px) scale(1.05); opacity: 0.55; }
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: start;
  padding-top: 60px;
  position: relative;
  z-index: 2;
}

.hero-wrap > .kicker     { animation: fade-up .8s ease-out .05s both; }
.hero-wrap > .hero-title { animation: fade-up .9s ease-out .15s both; }
.hero-wrap > .hero-sub   { animation: fade-up .9s ease-out .3s both; }
.hero-wrap > .hero-cta   { animation: fade-up .9s ease-out .45s both; }
.hero-wrap > .hero-stats { animation: fade-up 1s ease-out .6s both; }
.hero-illu               { animation: fade-in 1.2s ease-out .25s both; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-wrap > *,
  .hero-illu,
  .ball, .glow, .illu-mark, .doodle { animation: none !important; }
}

.hero-wrap > .kicker,
.hero-wrap > .hero-title,
.hero-wrap > .hero-sub,
.hero-wrap > .hero-cta {
  grid-column: 1 / 2;
}

.hero-title {
  font-size: clamp(54px, 8vw, 116px);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 540px;
  margin: 0 0 36px;
}

.hero-sub em {
  background: var(--accent-soft);
  padding: 0 6px;
  border-radius: 4px;
  font-style: italic;
  color: var(--ink);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}

/* Hero illustration panel (Squid blog cover style) */
.hero-illu {
  grid-column: 2 / 3;
  grid-row: 1 / 6;
  align-self: stretch;
  position: relative;
}

.illu-panel {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 580px;
  background:
    radial-gradient(ellipse at 30% 25%, rgba(255, 255, 255, 0.55), transparent 50%),
    radial-gradient(ellipse at 75% 80%, rgba(255, 255, 255, 0.4), transparent 55%),
    linear-gradient(135deg, #ffd6e8 0%, #ffc1d8 35%, #ffb5d6 60%, #ffd9b8 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--ink);
  box-shadow: 8px 8px 0 0 var(--ink);
}

.illu-streak {
  position: absolute;
  width: 220%;
  height: 60px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  filter: blur(20px);
  top: 18%;
  left: -60%;
  transform: rotate(-20deg);
  pointer-events: none;
}
.illu-streak-2 {
  top: auto;
  bottom: 12%;
  height: 80px;
  transform: rotate(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
}

.ball {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #fff, #f0eaea 65%, #cfc8c8 100%);
  border: 2px solid var(--ink);
  box-shadow: 0 6px 0 -2px var(--ink), 0 12px 24px -8px rgba(0, 0, 0, 0.25);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  will-change: transform;
}
.ball span { display: inline-block; }

.ball-1 {
  width: 90px; height: 90px; top: 12%; left: 12%; font-size: 28px;
  animation: float-a 6s ease-in-out infinite;
}
.ball-2 {
  width: 72px; height: 72px; top: 32%; right: 14%; font-size: 24px;
  --rot: -8deg;
  animation: float-b 7.5s ease-in-out infinite -1s;
}
.ball-3 {
  width: 110px; height: 110px; bottom: 12%; left: 18%; font-size: 36px;
  --rot: 6deg;
  animation: float-c 8.5s ease-in-out infinite -2.5s;
}
.ball-4 {
  width: 80px; height: 80px; bottom: 30%; right: 8%; font-size: 26px;
  --rot: 10deg;
  animation: float-b 6.5s ease-in-out infinite -3s;
}

@keyframes float-a {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(4deg); }
}
@keyframes float-b {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50%      { transform: translateY(-18px) rotate(calc(var(--rot, 0deg) + 6deg)); }
}
@keyframes float-c {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50%      { transform: translateY(-20px) rotate(calc(var(--rot, 0deg) - 5deg)); }
}

.ball-pink {
  background: radial-gradient(circle at 32% 28%, #ff85b4, var(--accent) 65%, #a3144d 100%);
  color: #fff;
}
.ball-dark {
  background: radial-gradient(circle at 32% 28%, #4a4a4a, var(--ink) 65%, #000 100%);
  color: var(--accent);
}

.illu-mark {
  position: absolute;
  top: 6%;
  right: 8%;
  filter: drop-shadow(0 4px 0 var(--ink));
  animation: spin-slow 16s linear infinite;
}

@keyframes spin-slow {
  from { transform: rotate(-12deg); }
  to   { transform: rotate(348deg); }
}

.doodle { position: absolute; }
.doodle-1 {
  bottom: 6%; right: 10%;
  animation: wiggle 5s ease-in-out infinite;
}
.doodle-2 {
  top: 50%; left: 8%;
  animation: pulse-doodle 4s ease-in-out infinite;
}
.doodle-3 {
  top: 18%; right: 30%;
  animation: spin-rev 14s linear infinite;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(8deg); }
  50%      { transform: rotate(-4deg); }
}
@keyframes pulse-doodle {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50%      { transform: translateY(-50%) scale(1.18); }
}
@keyframes spin-rev {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

.hero-stats {
  grid-column: 1 / 2;
  list-style: none;
  margin: 0;
  padding: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 36px;
  border-top: 1px dashed var(--line-2);
}

.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.hero-stats span {
  display: block;
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ==========================================================================
   Ticker
   ========================================================================== */

.ticker {
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: 18px 0;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.04em;
  animation: tickerScroll 40s linear infinite;
  width: max-content;
}

.ticker-mark { flex-shrink: 0; }

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================================
   Block (Taiko-style centered hero block, used 3x)
   ========================================================================== */

.block {
  position: relative;
  padding: 140px 0 110px;
  overflow: hidden;
}

.block-tinted {
  background: var(--bg-2);
}

.block-wrap {
  max-width: var(--container-tight);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}
.block-wrap-left {
  text-align: left;
  margin-left: 24px;
}

.block-title {
  font-size: clamp(52px, 8vw, 112px);
  margin: 0 0 28px;
}

.block-sub {
  font-size: clamp(17px, 1.3vw, 19px);
  color: var(--ink-3);
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.55;
}
.block-wrap-left .block-sub { margin-left: 0; }


/* ==========================================================================
   Especialistas (track record + datos)
   ========================================================================== */

.block-expertise {
  position: relative;
  padding: 110px 0 110px;
}
.block-expertise::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 30%, rgba(228, 32, 119, 0.06), transparent 45%),
    radial-gradient(ellipse at 85% 70%, rgba(255, 217, 184, 0.4), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.block-expertise .wrap { position: relative; z-index: 1; }

.stats-grid {
  list-style: none;
  margin: 0 0 56px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}

.stat {
  padding: 40px 32px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.2s ease;
}
.stat:hover { background: rgba(228, 32, 119, 0.04); }

.stat + .stat { border-left: 1px solid var(--line); }

.stat-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
}
.stat-prefix,
.stat-suffix {
  color: var(--accent);
  font-weight: 700;
}
.stat-prefix { margin-right: 0.04em; }

.stat-label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: 4px;
}

.stat-detail {
  font-size: 13px;
  color: var(--ink-3);
  font-family: var(--font-body);
}

.expertise-cta {
  display: grid;
  grid-template-columns: 1.6fr auto;
  gap: 48px;
  align-items: center;
  padding: 0 4px;
}
.expertise-cta p {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 720px;
}
.expertise-cta p em {
  font-style: italic;
  background: var(--accent-soft);
  padding: 0 6px;
  border-radius: 4px;
  color: var(--ink);
}

@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--line); }
  .expertise-cta { grid-template-columns: 1fr; gap: 24px; }
}

/* ==========================================================================
   Steps (Proceso)
   ========================================================================== */

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.step {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-md);
  padding: 32px 30px 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 0 0 var(--ink);
}
.step-wide { grid-column: span 2; }

.step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.step-doodle { flex-shrink: 0; }

.step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--ink);
}

.step p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-3);
  margin: 0;
}
.step em {
  background: var(--accent-soft);
  padding: 0 4px;
  border-radius: 3px;
  color: var(--ink);
}

/* ==========================================================================
   Beneficios
   ========================================================================== */

.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.benefit {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.benefit:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 0 0 var(--ink);
}

.benefit-illu {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1.5px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.benefit-illu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.4) 55%, transparent 80%);
  pointer-events: none;
}

.illu-cyan   { background: linear-gradient(135deg, var(--cyan-pale), var(--cyan)); }
.illu-peach  { background: linear-gradient(135deg, var(--peach-pale), var(--peach)); }
.illu-violet { background: linear-gradient(135deg, var(--violet-pale), var(--violet)); }
.illu-yellow { background: linear-gradient(135deg, var(--yellow-pale), var(--yellow)); }

.benefit h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 26px 28px 10px;
  color: var(--ink);
}

.benefit p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-3);
  margin: 0 28px 28px;
}

/* ==========================================================================
   Blog (Squid-style)
   ========================================================================== */

.blog-panel {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  z-index: 2;
}

.post {
  display: grid;
  gap: 16px;
}

.post-feature {
  grid-template-columns: 1.05fr 1fr;
  gap: 36px;
  align-items: center;
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.post-cover {
  position: relative;
  display: block;
  aspect-ratio: 5/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.post-cover:hover {
  transform: translateY(-3px);
  box-shadow: 6px 6px 0 0 var(--ink);
}

.post-cover-pink {
  background:
    radial-gradient(ellipse at 25% 25%, rgba(255, 255, 255, 0.5), transparent 55%),
    linear-gradient(135deg, #ffd6e8 0%, #ffb1d2 50%, #ff8ab8 100%);
}
.post-cover-violet {
  background:
    radial-gradient(ellipse at 25% 25%, rgba(255, 255, 255, 0.5), transparent 55%),
    linear-gradient(135deg, #efedff 0%, #cfc7ff 60%, #a89dff 100%);
}
.post-cover-peach {
  background:
    radial-gradient(ellipse at 25% 25%, rgba(255, 255, 255, 0.5), transparent 55%),
    linear-gradient(135deg, #fff3e6 0%, #ffd9b8 60%, #ffb878 100%);
}
.post-cover-yellow {
  background:
    radial-gradient(ellipse at 25% 25%, rgba(255, 255, 255, 0.5), transparent 55%),
    linear-gradient(135deg, #f6fab8 0%, #e8f56b 60%, #c2dd4a 100%);
}

.post-streak {
  position: absolute;
  width: 200%;
  height: 50px;
  top: 30%;
  left: -50%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  filter: blur(16px);
  transform: rotate(-18deg);
  pointer-events: none;
}

.post-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  z-index: 2;
}

.post-cover-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 36px 24px 24px;
  z-index: 1;
}

.post-feature .post-cover-art {
  justify-content: space-between;
  padding: 50px 32px 32px;
}

.post-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.post-headline em {
  font-style: italic;
  background: var(--ink);
  color: var(--accent);
  padding: 0 6px;
  border-radius: 4px;
}

.post-body { padding: 0; }

.post-meta {
  display: block;
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 10px;
}

.post-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--ink);
}

.post p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-3);
  margin: 0 0 16px;
}

.post-feature .post-title {
  font-size: clamp(28px, 2.6vw, 36px);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.post-grid .post {
  grid-template-columns: 1fr;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: transform 0.18s ease, color 0.18s ease;
}
.link-arrow:hover { color: var(--accent-hover); transform: translateX(4px); }

/* ==========================================================================
   FAQ
   ========================================================================== */

.block-faq {
  padding: 120px 0;
  background: var(--paper);
}

.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.faq-head .block-title { font-size: clamp(40px, 5vw, 64px); }
.faq-head .kicker { color: var(--accent); }
.faq-head { position: sticky; top: 120px; }
.faq-head .block-sub { margin: 0 0 18px; max-width: 380px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1.5px solid var(--ink);
}

.faq-item {
  border-bottom: 1.5px solid var(--ink);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 24px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  transition: color 0.18s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }

.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--ink);
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  top: 50%;
  left: 50%;
  transition: background 0.2s ease, transform 0.2s ease;
}
.faq-icon::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 2px; height: 12px; transform: translate(-50%, -50%); }

.faq-item[open] .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
}
.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after { background: #fff; }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }

.faq-body {
  padding: 0 0 24px;
  max-width: 720px;
}
.faq-body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-3);
  margin: 0;
}
.faq-body em {
  background: var(--accent-soft);
  padding: 0 4px;
  border-radius: 3px;
  color: var(--ink);
}

/* ==========================================================================
   Final CTA
   ========================================================================== */

.cta {
  position: relative;
  padding: 140px 0 120px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(228, 32, 119, 0.08), transparent 50%),
    radial-gradient(ellipse at 85% 80%, rgba(255, 217, 184, 0.5), transparent 55%),
    var(--bg);
}

.cta-wrap {
  max-width: var(--container-tight);
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(48px, 7.5vw, 100px);
  margin: 0 0 36px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   Article (blog post page)
   ========================================================================== */

.article {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-3);
  margin-bottom: 28px;
  transition: color 0.18s ease, transform 0.18s ease;
}
.article-back:hover { color: var(--accent); transform: translateX(-3px); }

.article-head {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
}

.article-meta {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 14px;
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 22px;
}
.article-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-3); display: inline-block; }
.article-category {
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

.article-title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  font-size: clamp(40px, 6vw, 76px);
  margin: 0 0 24px;
  color: var(--ink);
}
.article-title em { color: var(--accent); font-style: italic; }

.article-lede {
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.5;
  color: var(--ink-3);
  margin: 0;
}

.article-cover {
  max-width: 1080px;
  margin: 0 auto 64px;
  aspect-ratio: 16/8;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.article-cover.post-cover-pink,
.article-cover.post-cover-violet,
.article-cover.post-cover-peach,
.article-cover.post-cover-yellow { /* gradient backgrounds reused */ }
.article-cover .post-streak { width: 200%; height: 60px; top: 30%; left: -50%; }
.article-cover .post-cover-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-2);
}
.article-body > * + * { margin-top: 24px; }
.article-body p { margin: 0; }
.article-body p em {
  font-style: italic;
  background: var(--accent-soft);
  padding: 0 4px;
  border-radius: 3px;
  color: var(--ink);
}
.article-body p strong { color: var(--ink); font-weight: 600; }
.article-body h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--ink);
  margin: 56px 0 16px;
}
.article-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink);
  margin: 36px 0 8px;
}
.article-body ul,
.article-body ol {
  margin: 0;
  padding-left: 22px;
}
.article-body ul li,
.article-body ol li { margin-bottom: 8px; }
.article-body ul li::marker { color: var(--accent); }

.article-body blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--accent-pale);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-style: italic;
}

.article-body .callout {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 32px 0;
}
.article-body .callout strong { color: var(--accent); }
.article-body .callout p { margin: 0; }

.article-body hr {
  border: 0;
  border-top: 1px dashed var(--line-2);
  margin: 56px 0;
}

.article-share {
  max-width: 720px;
  margin: 64px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}
.article-share-label { color: var(--ink-3); }

.article-related {
  background: var(--bg-2);
  padding: 80px 0 100px;
}
.article-related-head { text-align: center; margin-bottom: 40px; }
.article-related-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.article-related-head .kicker { color: var(--accent); margin-bottom: 12px; }
.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .article-related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .article-cover { aspect-ratio: 16/10; }
  .article-related-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Footer (integrated with site design — Taiko/Vercel-inspired)
   ========================================================================== */

.site-footer {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  padding: 96px 0 28px;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.05fr 2fr;
  gap: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.footer-brand .kicker { margin-bottom: 18px; }

.footer-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 28px;
}

.footer-mail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 8px 12px 22px;
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 15px;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.footer-mail:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -8px rgba(228, 32, 119, 0.55);
}
.footer-mail .btn-arrow {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-col h4 .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.footer-col a {
  display: block;
  font-size: 15px;
  color: var(--ink);
  padding: 6px 0;
  transition: color 0.15s ease, transform 0.15s ease;
}
.footer-col a:hover { color: var(--accent); transform: translateX(3px); }

/* Giant edge-to-edge wordmark — typographic anchor */
.footer-mark-big {
  position: relative;
  margin: 0 -24px 36px;
  padding: 0 24px;
  pointer-events: none;
}
.footer-mark-big img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-3);
  position: relative;
  z-index: 1;
}

.footer-tag {
  font-family: var(--font-body);
  font-weight: 500;
}
.footer-tag em {
  font-style: italic;
  color: var(--accent);
  background: var(--accent-pale);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1100px) {
  .nav { display: none; }
  .menu-toggle { display: block; }
  .header-pill { padding: 10px 12px 10px 18px; gap: 12px; }

  .hero-wrap { grid-template-columns: 1fr; gap: 32px; padding-top: 40px; }
  .hero-illu { grid-column: 1; grid-row: auto; max-width: 460px; }
  .illu-panel { aspect-ratio: 5 / 4; max-height: 420px; }
  .bp-marks { display: none; }

  .post-feature { grid-template-columns: 1fr; gap: 24px; }
  .post-grid { grid-template-columns: 1fr 1fr; }

  .faq-wrap { grid-template-columns: 1fr; gap: 32px; }
  .faq-head { position: static; }

  .footer-top { grid-template-columns: 1fr; gap: 48px; padding-bottom: 56px; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .site-footer { padding: 72px 0 24px; }
  .footer-headline { font-size: clamp(32px, 5.5vw, 48px); }
  .footer-mark-big { margin: 0 -16px 24px; padding: 0 16px; }
}

@media (max-width: 720px) {
  .site-header { top: 12px; padding: 0 12px; }
  .header-pill { padding: 8px 8px 8px 16px; }
  .header-pill .btn-pill { font-size: 13px; padding: 10px 18px; }

  .hero { padding: 56px 0 60px; }
  .hero-title { margin-bottom: 20px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 24px; }

  .ticker-track { font-size: 14px; gap: 18px; }

  .block { padding: 100px 0 80px; }
  .block-wrap { padding-bottom: 56px; }
  .block-wrap-left { margin-left: 0; }

  .steps { grid-template-columns: 1fr; }
  .step-wide { grid-column: span 1; }
  .benefits { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: 1fr; }

  .blog-panel { padding: 24px; }

  .cta { padding: 100px 0 80px; }

  .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .site-footer { padding: 56px 0 20px; }
  .footer-top { padding-bottom: 40px; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-headline { font-size: clamp(30px, 8vw, 40px); }
  .footer-mark-big { margin: 0 -8px 20px; padding: 0 8px; }

  .ball-1 { width: 70px; height: 70px; font-size: 22px; }
  .ball-2 { width: 56px; height: 56px; font-size: 18px; }
  .ball-3 { width: 84px; height: 84px; font-size: 28px; }
  .ball-4 { width: 64px; height: 64px; font-size: 20px; }
}
