@import url('https://fonts.googleapis.com/css2?family=Cormorant+Unicase:wght@300;400;500;600;700&family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap');

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

/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  /* Light mode */
  --bg:          #F0EDE8;
  --bg-nav:      rgba(240, 237, 232, 0.88);
  --bg-card:     #FFFFFF;
  --bg-inset:    #E8E5DF;
  --ink:         #141412;
  --ink-soft:    #5A5751;
  --ink-muted:   #9E9A94;
  --accent:      #2B8C7E;
  --accent-glow: rgba(43, 140, 126, 0.15);
  --accent-text: #2B8C7E;
  --orange:      #C0622A;
  --border:      rgba(20,20,18,0.10);
  --border-card: rgba(20,20,18,0.08);
  --step-num:    rgba(20,20,18,0.07);
}

[data-theme="dark"] {
  --bg:          #141414;
  --bg-nav:      rgba(20, 20, 20, 0.88);
  --bg-card:     #1E1E1E;
  --bg-inset:    #242424;
  --ink:         #F0EDE8;
  --ink-soft:    #9E9A94;
  --ink-muted:   #5A5751;
  --accent:      #4DD4C8;
  --accent-glow: rgba(77, 212, 200, 0.12);
  --accent-text: #4DD4C8;
  --orange:      #E8875A;
  --border:      rgba(240,237,232,0.08);
  --border-card: rgba(240,237,232,0.06);
  --step-num:    rgba(240,237,232,0.05);
}

/* ─── BASE ───────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Mono', monospace;
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s ease, color 0.3s ease;
}

/* ─── NAV ────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: var(--bg-nav);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

.nav-logo {
  font-family: 'Cormorant Unicase', serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
}

.nav-logo span {
  color: var(--accent);
}

.nav-right {
  display: flex; align-items: center; gap: 12px;
}

.nav-lang {
  display: flex; gap: 4px;
}

.lang-btn {
  background: none;
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.06em;
  cursor: pointer;
  color: var(--ink-muted);
  transition: all .2s;
}

.lang-btn.active,
.lang-btn:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

/* ─── THEME TOGGLE ───────────────────────────────────── */
.theme-toggle {
  background: none;
  border: 1px solid var(--border);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: all .2s;
  color: var(--ink-soft);
}

.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.icon-sun  { display: none; }
.icon-moon { display: block; }
[data-theme="dark"] .icon-sun  { display: block; }
[data-theme="dark"] .icon-moon { display: none; }

/* ─── SECTIONS ───────────────────────────────────────── */
section { padding: 0 48px; }

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  max-width: 920px; margin: 0 auto;
  padding-top: 130px; padding-bottom: 80px;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 36px;
  display: flex; align-items: center; gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--accent);
}

.hero-title {
  font-family: 'Cormorant Unicase', serif;
  font-size: clamp(52px, 7.5vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 36px;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 520px;
  line-height: 1.85;
  margin-bottom: 52px;
  letter-spacing: 0.01em;
}

.hero-form {
  display: flex; gap: 10px; flex-wrap: wrap;
  align-items: center;
}

.hero-input {
  padding: 13px 20px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 13px;
  font-family: 'DM Mono', monospace;
  background: var(--bg-card);
  color: var(--ink);
  width: 270px; outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.hero-input::placeholder { color: var(--ink-muted); }

.hero-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.hero-btn {
  padding: 13px 24px;
  background: var(--accent);
  color: var(--bg);
  border: none; border-radius: 6px;
  font-size: 12px;
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
}

[data-theme="dark"] .hero-btn { color: #141414; }

.hero-btn:hover { opacity: .85; }
.hero-btn:active { transform: scale(.97); }

.hero-note {
  margin-top: 14px;
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

/* ─── DIVIDER ────────────────────────────────────────── */
.divider {
  max-width: 920px; margin: 0 auto;
  border: none; border-top: 1px solid var(--border);
}

/* ─── PROBLEM ────────────────────────────────────────── */
.problem {
  max-width: 920px; margin: 0 auto;
  padding-top: 100px; padding-bottom: 100px;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

.section-label {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 10px;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--ink-muted);
}

.problem-title {
  font-family: 'Cormorant Unicase', serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 24px;
}

.problem-body {
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.9;
}

.stat-list {
  display: flex; flex-direction: column; gap: 12px;
}

.stat-item {
  padding: 22px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 10px;
  transition: border-color .2s, box-shadow .2s;
}

.stat-item:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-glow), 0 4px 16px rgba(0,0,0,0.06);
}

.stat-num {
  font-family: 'Cormorant Unicase', serif;
  font-size: 44px;
  font-weight: 300;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}

/* ─── HOW IT WORKS ───────────────────────────────────── */
.how {
  max-width: 920px; margin: 0 auto;
  padding-top: 80px; padding-bottom: 100px;
}

.how .section-label { margin-bottom: 60px; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

.step { padding: 0 32px 0 0; padding-top: 60px; }
.step:first-child { padding-left: 0; }

.step-num {
  font-family: 'Cormorant Unicase', serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-muted);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  position: relative;
}

.step-num::before {
  content: '';
  position: absolute;
  top: -47px; left: 0;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.step-title {
  font-family: 'Cormorant Unicase', serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
}

.step-body {
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.85;
}

/* ─── FRICTION TYPES ─────────────────────────────────── */
.frictions {
  max-width: 920px; margin: 0 auto;
  padding-top: 0; padding-bottom: 100px;
}

.frictions-title {
  font-family: 'Cormorant Unicase', serif;
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.1;
  margin-bottom: 44px;
}

.friction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.friction-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 10px;
  padding: 26px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color .25s, transform .2s, box-shadow .25s;
}

.friction-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
}

.friction-card.featured {
  border-color: var(--accent);
  background: var(--accent-glow);
}

.friction-icon {
  width: 38px; height: 38px;
  background: var(--bg-inset);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.friction-name {
  font-family: 'Cormorant Unicase', serif;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 6px;
}

.friction-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.8;
}

.friction-badge {
  display: inline-block;
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 3px 8px;
  border-radius: 4px;
}

/* ─── DASHBOARD PREVIEW ──────────────────────────────── */
.preview-section {
  max-width: 920px; margin: 0 auto;
  padding-top: 80px; padding-bottom: 100px;
}

.preview-section .section-label { margin-bottom: 48px; }

.preview-window {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}

.preview-titlebar {
  background: var(--bg-inset);
  border-bottom: 1px solid var(--border);
  padding: 13px 18px;
  display: flex; align-items: center; gap: 8px;
}

.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red    { background: #FF5F57; }
.dot-yellow { background: #FEBC2E; }
.dot-green  { background: #2AC840; }

.preview-titlebar-label {
  font-size: 11px;
  color: var(--ink-muted);
  margin-left: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.preview-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 420px;
}

/* ── Sidebar ── */
.preview-sidebar {
  border-right: 1px solid var(--border);
  padding: 20px 14px;
  display: flex; flex-direction: column;
  background: var(--bg-inset);
}

.preview-sidebar-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}

.preview-sidebar-logo {
  font-family: 'Cormorant Unicase', serif;
  font-size: 15px; font-weight: 500;
  color: var(--accent);
}

/* pw = preview-widget namespace */
.pw-nav-item {
  font-size: 11px;
  color: var(--ink-muted);
  padding: 7px 10px;
  border-radius: 6px;
  margin-bottom: 2px;
  cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  transition: background .15s, color .15s;
  user-select: none;
}

.pw-nav-item:hover { background: var(--border); color: var(--ink); }

.pw-nav-item--active {
  background: var(--accent-glow);
  color: var(--accent);
}

.pw-nav-item svg { opacity: .7; flex-shrink: 0; }
.pw-nav-item--active svg { opacity: 1; }

.pw-section-label {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 14px 10px 6px;
}

.pw-badge {
  margin-left: auto;
  background: var(--accent);
  color: #141414;
  font-size: 9px;
  min-width: 16px; height: 16px;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 4px;
  font-weight: 500;
}

.pw-badge--orange { background: var(--orange); }

.pw-app-icon {
  width: 20px; height: 20px; border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.pw-app-icon.sm { width: 24px; height: 24px; border-radius: 6px; }
.pw-app-icon.lg { width: 44px; height: 44px; border-radius: 10px; }
.pw-app-icon--blue   { background: #1A79C4; }
.pw-app-icon--gray   { background: #555; }
.pw-app-icon--yellow { background: #D4A22A; }

.pw-sidebar-bottom {
  margin-top: auto;
  font-size: 11px;
  color: var(--ink-muted);
  padding: 8px 10px;
  display: flex; align-items: center; gap: 7px;
  cursor: pointer;
  border-radius: 6px;
  transition: background .15s;
}

.pw-sidebar-bottom:hover { background: var(--border); }

/* ── Toggle ── */
.pw-toggle {
  width: 32px; height: 18px;
  border-radius: 9px;
  background: var(--border);
  position: relative;
  cursor: pointer;
  transition: background .25s;
  flex-shrink: 0;
}

.pw-toggle::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--ink-muted);
  transition: transform .25s, background .25s;
}

.pw-toggle--on { background: var(--accent); }
.pw-toggle--on::after { transform: translateX(14px); background: #fff; }

/* ── Main panel ── */
.pw-main {
  padding: 22px 24px;
  overflow-y: auto;
  max-height: 480px;
}

/* Custom scrollbar */
.pw-main::-webkit-scrollbar { width: 4px; }
.pw-main::-webkit-scrollbar-track { background: transparent; }
.pw-main::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.pw-view { }
.pw-view--hidden { display: none; }

/* ── Dashboard view ── */
.pw-view-title {
  font-family: 'Cormorant Unicase', serif;
  font-size: 22px; font-weight: 400;
  margin-bottom: 16px;
}

.pw-stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin-bottom: 10px;
}

.pw-stat {
  background: var(--bg-inset);
  border-radius: 8px; padding: 14px 16px;
}

.pw-stat-val {
  font-family: 'Cormorant Unicase', serif;
  font-size: 28px; font-weight: 300;
  line-height: 1; margin-bottom: 6px;
}

.pw-stat-val.accent { color: var(--accent); }
.pw-stat-val.orange { color: var(--orange); }

.pw-stat-label {
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.pw-row-2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 10px;
}

.pw-card {
  background: var(--bg-inset);
  border-radius: 8px; padding: 14px 16px;
}

.pw-card--full { margin-top: 0; }

.pw-card-label {
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 10px;
}

.pw-app-row {
  display: flex; align-items: center; gap: 8px;
}

.pw-app-name { font-size: 12px; flex: 1; }

.pw-app-count { font-size: 12px; }
.pw-app-count.orange { color: var(--orange); }
.pw-app-count.accent { color: var(--accent); }

.pw-bars {
  display: flex; align-items: flex-end; gap: 5px;
  height: 52px;
}

.pw-bar-col {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}

.pw-bar-col .pw-bar {
  width: 100%;
  background: var(--accent);
  border-radius: 2px 2px 0 0;
  opacity: 0.65;
  transition: opacity .2s, height .4s ease;
  min-height: 3px;
}

.pw-bar-col:hover .pw-bar { opacity: 1; }

.pw-bar-col span {
  font-size: 8px;
  color: var(--ink-muted);
  letter-spacing: .04em;
}

/* ── App detail view ── */
.pw-app-header {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-inset);
  border-radius: 10px; padding: 14px 16px;
  margin-bottom: 14px;
}

.pw-app-header-name {
  font-family: 'Cormorant Unicase', serif;
  font-size: 18px; font-weight: 500;
  margin-bottom: 4px;
}

.pw-app-header-stats {
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.pw-setting-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg-inset);
  border-radius: 8px; padding: 14px 16px;
  margin-bottom: 14px; gap: 16px;
}

.pw-setting-title { font-size: 12px; margin-bottom: 3px; }
.pw-setting-sub   { font-size: 10px; color: var(--ink-muted); font-weight: 300; }

.pw-choice-list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }

.pw-choice {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-inset);
  border: 1px solid transparent;
  border-radius: 8px; padding: 12px 14px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}

.pw-choice:hover { border-color: var(--border); }

.pw-choice--selected {
  border-color: var(--accent) !important;
  background: var(--accent-glow);
}

.pw-choice-icon {
  font-size: 14px;
  width: 28px; height: 28px;
  background: var(--bg-card);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--ink-soft);
}

.pw-choice-icon.accent-text { color: var(--accent); }

.pw-choice-title {
  font-size: 12px; font-weight: 400;
  margin-bottom: 2px;
}

.pw-choice-title.accent-text { color: var(--accent); }

.pw-choice-sub {
  font-size: 10px; color: var(--ink-muted);
  font-weight: 300;
}

.pw-check {
  margin-left: auto; flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px;
  color: transparent;
  transition: border-color .2s, background .2s, color .2s;
}

.pw-check--active {
  border-color: var(--accent);
  background: var(--accent);
  color: #141414;
}

.pw-diff-dot {
  width: 20px; height: 20px; border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}

/* ── Slider ── */
.pw-slider-row {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-inset);
  border-radius: 8px; padding: 14px 16px;
}

.pw-slider {
  flex: 1;
  -webkit-appearance: none;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  outline: none;
  cursor: pointer;
}

.pw-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.pw-slider-val {
  font-family: 'Cormorant Unicase', serif;
  font-size: 16px; font-weight: 400;
  min-width: 32px; text-align: right;
}

/* view transitions */
.pw-view {
  animation: pwFadeIn .2s ease;
}

@keyframes pwFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* accent / orange helpers */
.accent      { color: var(--accent); }
.accent-text { color: var(--accent); }
.orange      { color: var(--orange); }

/* ─── CTA ────────────────────────────────────────────── */
.cta-section {
  max-width: 920px; margin: 0 auto;
  padding-top: 80px; padding-bottom: 120px;
  text-align: center;
}

.cta-title {
  font-family: 'Cormorant Unicase', serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.cta-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-soft);
  margin-bottom: 44px;
  letter-spacing: 0.01em;
}

.cta-form {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
}

/* ─── SUCCESS MESSAGE ────────────────────────────────── */
.success-msg {
  display: none;
  font-size: 13px;
  color: var(--accent);
  margin-top: 16px;
  letter-spacing: 0.02em;
}

.success-msg.show { display: block; }

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 48px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

/* ─── FADE-IN ANIMATION ──────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for children */
.fade-up:nth-child(1) { transition-delay: 0s; }
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  section { padding: 0 20px; }

  .hero-title { font-size: clamp(42px, 12vw, 64px); }

  .problem-grid { grid-template-columns: 1fr; gap: 44px; }

  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .steps::before { display: none; }

  .step {
    padding: 0;
    border-left: 2px solid var(--border);
    padding-left: 24px;
  }

  .step-num::before { display: none; }

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

  .preview-body { grid-template-columns: 1fr; }
  .preview-sidebar { display: none; }

  footer {
    flex-direction: column; gap: 8px;
    text-align: center; padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .hero-form { flex-direction: column; align-items: stretch; }
  .hero-input { width: 100%; }
  .cta-form { flex-direction: column; align-items: center; }
}
