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

:root {
  --color-bg: #ffffff;
  --color-surface: #f7f7f8;
  --color-surface-alt: #fef2f2;
  --color-border: #e8e8ec;
  --color-text: #1a1a2e;
  --color-text-muted: #6b6b80;
  --color-accent: #e84855;
  --color-accent-hover: #d43a47;
  --color-accent-light: #fde8ea;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-jp: 'Hiragino Sans', 'Yu Gothic', 'Noto Sans JP', sans-serif;
  --max-width: 1120px;
}

html {
  scroll-behavior: smooth;
}

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

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes float-reverse {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(-5deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.3; }
}

@keyframes wave-pulse {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.3); }
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Nav ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.25rem 2rem;
}

.logo {
  font-family: var(--font-jp);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  transition: opacity 0.2s;
}

.logo:hover { opacity: 0.7; }

.logo span { font-family: var(--font-sans); }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--color-text); }

.btn-nav {
  background: var(--color-accent);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-size: 0.85rem !important;
  transition: background 0.2s, transform 0.2s;
}

.btn-nav:hover {
  background: var(--color-accent-hover);
  color: #fff !important;
  transform: translateY(-1px);
}

/* ── Hero ── */
.hero {
  text-align: center;
  padding: 10rem 2rem 6rem;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.hero-badge {
  display: inline-block;
  background: var(--color-accent-light);
  color: var(--color-accent);
  padding: 0.4rem 1.25rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--color-text) 0%, #4a4a6a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

/* Floating kanji */
.hero-kanji {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-char {
  position: absolute;
  font-family: var(--font-jp);
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.08;
  font-size: 4rem;
}

.char-1 { top: 15%; left: 8%; animation: float 6s ease-in-out infinite; }
.char-2 { top: 25%; right: 10%; animation: float-reverse 7s ease-in-out infinite; font-size: 3rem; }
.char-3 { top: 50%; left: 5%; animation: float 8s ease-in-out infinite 1s; font-size: 5rem; }
.char-4 { top: 60%; right: 6%; animation: float-reverse 6.5s ease-in-out infinite 0.5s; }
.char-5 { top: 35%; left: 15%; animation: float 7.5s ease-in-out infinite 2s; font-size: 3.5rem; }
.char-6 { top: 70%; right: 15%; animation: float-reverse 8s ease-in-out infinite 1.5s; font-size: 3rem; }

/* ── Buttons ── */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(232, 72, 85, 0.3);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 72, 85, 0.4);
}

.btn-secondary {
  background: var(--color-bg);
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}

.btn-secondary:hover {
  border-color: #ccc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

/* ── Section labels ── */
.section-label {
  display: inline-block;
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto 3rem;
  text-align: center;
  line-height: 1.7;
}

/* ── Feature grid ── */
.features {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6rem 2rem;
  text-align: center;
}

.features h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}

.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.feature-icon {
  font-family: var(--font-jp);
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-accent);
  display: inline-block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background: var(--color-accent-light);
  border-radius: 14px;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ── Feature spotlights ── */
.feature-spotlight {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.feature-spotlight.reverse {
  flex-direction: row-reverse;
}

.spotlight-content {
  flex: 1;
}

.spotlight-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.spotlight-content > p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  margin-bottom: 2rem;
}

.feature-list li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 500;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

.spotlight-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* ── Mock cards ── */
.mock-card {
  border-radius: 20px;
  padding: 2.5rem;
  width: 320px;
  transition: transform 0.4s ease;
}

.mock-card:hover {
  transform: scale(1.03) rotate(1deg);
}

/* Vocab */
.mock-vocab {
  background: linear-gradient(135deg, #fff5f5, #fff);
  border: 1px solid #fecaca;
  box-shadow: 0 20px 50px rgba(232, 72, 85, 0.1);
  text-align: left;
  padding: 2rem;
}

.vocab-header {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.mock-tag {
  display: inline-block;
  background: var(--color-accent-light);
  color: var(--color-accent);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.tag-jlpt {
  background: #e0e7ff;
  color: #4f46e5;
}

.mock-word {
  font-family: var(--font-jp);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
  text-align: center;
}

.vocab-readings {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: rgba(232, 72, 85, 0.04);
  border-radius: 12px;
}

.vocab-reading-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vocab-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

.vocab-value-jp {
  font-family: var(--font-jp);
  font-size: 1rem;
  color: var(--color-accent);
  font-weight: 600;
}

.vocab-value {
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 500;
}

.vocab-example {
  padding: 1rem;
  background: rgba(232, 72, 85, 0.04);
  border-radius: 12px;
  border-left: 3px solid var(--color-accent);
}

.vocab-example-jp {
  font-family: var(--font-jp);
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 0.35rem;
  line-height: 1.8;
}

.vocab-example-jp ruby rt {
  font-size: 0.55em;
  color: var(--color-accent);
}

.vocab-example-en {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* Kanji */
.mock-kanji {
  background: linear-gradient(135deg, #f0f9ff, #fff);
  border: 1px solid #bae6fd;
  box-shadow: 0 20px 50px rgba(56, 189, 248, 0.1);
  text-align: center;
}

.mock-kanji-char {
  font-family: var(--font-jp);
  font-size: 5rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.mock-kanji-details {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.mock-kanji-details span {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.mock-strokes {
  font-size: 0.8rem !important;
  color: #38bdf8 !important;
  font-weight: 600;
}

/* Grammar */
.mock-grammar {
  background: linear-gradient(135deg, #faf5ff, #fff);
  border: 1px solid #e9d5ff;
  box-shadow: 0 20px 50px rgba(168, 85, 247, 0.1);
  text-align: center;
}

.mock-grammar-pattern {
  font-family: var(--font-jp);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.mock-grammar-meaning {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.mock-grammar-example {
  background: rgba(168, 85, 247, 0.06);
  border-radius: 12px;
  padding: 1rem;
}

.mock-grammar-example p {
  font-family: var(--font-jp);
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.mock-translation {
  font-family: var(--font-sans) !important;
  font-size: 0.85rem !important;
  color: var(--color-text-muted) !important;
}

/* Reading */
.mock-reading {
  background: linear-gradient(135deg, #ecfdf5, #fff);
  border: 1px solid #a7f3d0;
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.1);
  min-height: 220px;
}

.reading-passage {
  font-family: var(--font-jp);
  font-size: 1.3rem;
  line-height: 2.4;
  color: var(--color-text);
}

.reading-passage ruby {
  ruby-position: over;
}

.reading-passage rt {
  font-size: 0.55em;
  color: var(--color-accent);
  font-weight: 500;
}

.reading-word {
  display: inline;
  opacity: 0;
  filter: blur(4px);
  transition: opacity 0.5s ease, filter 0.5s ease;
}

.reading-word.visible {
  opacity: 1;
  filter: blur(0);
}

.reading-translation {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #a7f3d0;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reading-translation.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Listening */
.mock-listening {
  background: linear-gradient(135deg, #fffbeb, #fff);
  border: 1px solid #fde68a;
  box-shadow: 0 20px 50px rgba(245, 158, 11, 0.1);
  text-align: center;
}

.mock-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 80px;
  margin-bottom: 1.5rem;
}

.wave-bar {
  width: 6px;
  background: linear-gradient(180deg, #f59e0b, #fbbf24);
  border-radius: 3px;
  animation: wave-pulse 1.5s ease-in-out infinite;
}

.wave-bar:nth-child(1) { animation-delay: 0s; }
.wave-bar:nth-child(2) { animation-delay: 0.1s; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; }
.wave-bar:nth-child(6) { animation-delay: 0.5s; }
.wave-bar:nth-child(7) { animation-delay: 0.6s; }
.wave-bar:nth-child(8) { animation-delay: 0.7s; }
.wave-bar:nth-child(9) { animation-delay: 0.8s; }
.wave-bar:nth-child(10) { animation-delay: 0.9s; }
.wave-bar:nth-child(11) { animation-delay: 1.0s; }
.wave-bar:nth-child(12) { animation-delay: 1.1s; }

.mock-play-btn {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Chat */
.mock-chat {
  background: linear-gradient(135deg, #fff5f5, #fff);
  border: 1px solid #fecaca;
  box-shadow: 0 20px 50px rgba(232, 72, 85, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem;
}

.chat-bubble {
  font-family: var(--font-jp);
  font-size: 0.85rem;
  line-height: 1.6;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  max-width: 85%;
}

.chat-bubble.incoming {
  background: var(--color-surface);
  color: var(--color-text);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-bubble.outgoing {
  background: var(--color-accent);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

/* ── SRS Section ── */
.srs {
  background: var(--color-surface);
  padding: 6rem 2rem;
  margin: 2rem 0;
}

.srs-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.srs h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.srs-description {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.srs-stages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.srs-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.srs-stage span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.srs-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: transform 0.3s;
}

.srs-dot:hover { transform: scale(1.15); }

.srs-dot.new { background: linear-gradient(135deg, #e0e7ff, #c7d2fe); }
.srs-dot.learning { background: linear-gradient(135deg, #fde68a, #fbbf24); }
.srs-dot.reviewing { background: linear-gradient(135deg, #a7f3d0, #34d399); }
.srs-dot.mastered { background: linear-gradient(135deg, #fca5a5, #e84855); }

.srs-arrow {
  color: var(--color-border);
  font-size: 1.25rem;
  margin-top: -1.5rem;
}

.srs-sub {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

/* ── Levels ── */
.levels {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6rem 2rem;
  text-align: center;
}

.levels h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.levels-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.level-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2rem 1.25rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.level-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.level-badge {
  display: inline-block;
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.level-badge.n5 { color: #60a5fa; }
.level-badge.n4 { color: #34d399; }
.level-badge.n3 { color: #fbbf24; }
.level-badge.n2 { color: #f97316; }
.level-badge.n1 { color: var(--color-accent); }

.level-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.level-stats {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.level-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ── Bottom CTA ── */
.bottom-cta {
  padding: 6rem 2rem 8rem;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, var(--color-surface-alt), var(--color-surface));
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 4rem 3rem;
}

.cta-inner h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-inner p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--color-border);
  padding: 3rem 2rem;
  background: var(--color-surface);
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.footer-top {
  margin-bottom: 1.5rem;
}

.footer-logo {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.footer-tagline {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--color-text); }

.copyright {
  color: #aaa;
  font-size: 0.8rem;
}

/* ── Legal pages ── */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
}

.legal h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.legal .last-updated {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

.legal h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal p,
.legal li {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.legal ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal a {
  color: var(--color-accent);
  text-decoration: none;
}

.legal a:hover { text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .levels-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-spotlight {
    flex-direction: column !important;
    gap: 2.5rem;
  }

  .mock-card { width: 280px; }
}

@media (max-width: 640px) {
  .hero { padding: 8rem 1.5rem 4rem; }

  .hero h1 { font-size: 2.5rem; }

  .subtitle { font-size: 1rem; }

  .nav-links { gap: 1rem; }

  .feature-grid { grid-template-columns: 1fr; }

  .levels-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-spotlight { padding: 3rem 1.5rem; }

  .spotlight-content h2 { font-size: 1.6rem; }

  .cta-inner { padding: 2.5rem 1.5rem; }

  .cta-inner h2 { font-size: 1.75rem; }

  .floating-char { display: none; }
}
