/* ═══════════════════════════════════════════════════════
   SOFTYZE — style.css
   ═══════════════════════════════════════════════════════ */

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: #FAFAFA;
  color: #111;
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
button, input { font-family: inherit; outline: none; border: none; }
img { display: block; }

/* ─── VARIABLES ──────────────────────────────────────── */
:root {
  --ink:            #0F0F0F;
  --ink2:           #3A3A3A;
  --ink3:           #717171;
  --ink4:           #B0B0B0;
  --bg:             #FAFAFA;
  --bg2:            #F3F3F0;
  --bg3:            #ECEAE4;
  --accent:         #2563EB;
  --accent2:        #1D4ED8;
  --accent-bg:      rgba(37,99,235,0.07);
  --accent-border:  rgba(37,99,235,0.2);
  --border:         #E5E4E0;
  --border2:        #D4D2CC;
  --white:          #FFFFFF;
  --radius:         12px;
  --radius-lg:      20px;
  --shadow-sm:      0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:      0 4px 16px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg:      0 8px 32px rgba(0,0,0,0.09), 0 2px 8px rgba(0,0,0,0.05);
}

/* ─── CURSOR ─────────────────────────────────────────── */
#cur {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, background .25s;
}
#cur.grow {
  width: 46px; height: 46px;
  background: rgba(37,99,235,0.1);
  border: 1.5px solid rgba(37,99,235,0.25);
}
#cur-trail {
  position: fixed;
  width: 30px; height: 30px;
  border: 1px solid rgba(37,99,235,0.18);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}

/* ─── NAV ────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  height: 68px;
  padding: 0 clamp(20px, 5vw, 80px);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250,250,250,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 var(--border);
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 10px; }

/* Logo icon — keep existing rules, just update background */
.logo-icon {
  width: 36px; height: 36px;
  background: #111;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Wordmark — single colour, blue dot at end */
.logo-name {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.logo-name span {
  color: var(--accent);
}

.logo-name2 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.logo-name2 span {
  color: var(--accent);
}

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a {
  font-size: 13.5px; font-weight: 500;
  color: var(--ink3);
  letter-spacing: -0.01em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }

/* Nav buttons */
.nav-actions { display: flex; align-items: center; gap: 10px; }

.btn-ghost {
  font-size: 13.5px; font-weight: 500;
  color: var(--ink2);
  padding: 9px 18px;
  border-radius: 8px;
  border: 1.5px solid var(--border2);
  background: transparent;
  transition: border-color .2s, color .2s;
  letter-spacing: -0.01em;
}
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }

.btn-primary {
  font-size: 13.5px; font-weight: 600;
  color: #fff;
  padding: 9px 20px;
  border-radius: 8px;
  background: var(--accent);
  letter-spacing: -0.01em;
  box-shadow: 0 1px 3px rgba(37,99,235,0.25), 0 4px 12px rgba(37,99,235,0.15);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(37,99,235,0.3), 0 8px 20px rgba(37,99,235,0.2);
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px clamp(20px,5vw,80px) 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 75%);
  pointer-events: none;
}
.hero-shape-1 {
  position: absolute; top: -120px; right: -80px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(37,99,235,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.hero-shape-2 {
  position: absolute; bottom: -160px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

/* Hero left */
/* Hero tagline (above headline) */
.hero-tagline {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  color: var(--ink3);
  letter-spacing: -0.01em;
  margin-bottom: clamp(20px,3vh,28px);
  opacity: 0; animation: fadeUp .6s .1s ease both;
}
.tagline-arrow {
  font-size: 16px;
  color: var(--accent);
  font-weight: 600;
  display: inline-flex; align-items: center;
  transition: transform .2s;
}
.hero-tagline:hover .tagline-arrow { transform: translateX(4px); }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  padding: 5px 14px 5px 8px;
  font-size: 12px; font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.01em;
  margin-bottom: clamp(20px,3vh,28px);
  opacity: 0; animation: fadeUp .6s .1s ease both;
}
.badge-icon {
  width: 20px; height: 20px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.badge-icon svg { color: #fff; }

.hero-h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(46px, 5.8vw, 78px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: clamp(18px,3vh,26px);
}
.hero-h1 .row { display: block; overflow: hidden; }
.hero-h1 .row-inner {
  display: block;
  transform: translateY(105%);
  animation: rowUp .9s cubic-bezier(.16,1,.3,1) both;
}
.hero-h1 .row:nth-child(1) .row-inner { animation-delay: .25s; }
.hero-h1 .row:nth-child(2) .row-inner { animation-delay: .38s; }
.hero-h1 .row:nth-child(3) .row-inner { animation-delay: .51s; }
.hero-h1 .serif-italic { font-style: italic; color: var(--accent); }

.hero-sub {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.8;
  color: var(--ink3);
  font-weight: 400;
  max-width: 480px;
  margin-bottom: clamp(28px,4vh,40px);
  opacity: 0; animation: fadeUp .7s .75s ease both;
}
.hero-sub strong { color: var(--ink2); font-weight: 600; }

/* Hero form */
.hero-form { opacity: 0; animation: fadeUp .7s .9s ease both; }
.form-label-sm {
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink4); margin-bottom: 10px;
}
.form-box {
  display: flex;
  background: var(--white);
  border: 1.5px solid var(--border2);
  border-radius: 10px;
  overflow: hidden;
  max-width: 420px;
  transition: border-color .25s, box-shadow .25s;
}
.form-box:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
}
.form-box input {
  flex: 1; padding: 13px 16px;
  font-size: 14px;
  background: transparent; color: var(--ink);
}
.form-box input::placeholder { color: var(--ink4); }
.form-submit {
  margin: 5px;
  background: var(--accent); color: #fff;
  font-size: 13px; font-weight: 600;
  padding: 9px 20px;
  border-radius: 7px;
  letter-spacing: -0.01em;
  white-space: nowrap; flex-shrink: 0;
  transition: background .2s;
}
.form-submit:hover { background: var(--accent2); }
.form-submit.ok { background: #16a34a; }
.form-hint {
  font-size: 12px; color: var(--ink4);
  margin-top: 10px;
  display: flex; align-items: center; gap: 6px;
}
.form-hint svg { flex-shrink: 0; opacity: .5; }

/* ─── HERO RIGHT — VISUAL PANEL ──────────────────────── */
.hero-right { opacity: 0; animation: fadeUp .9s .6s ease both; }

.vis-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.vis-panel-header {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg2);
}
.vis-panel-dots { display: flex; gap: 6px; }
.vdot {
  width: 11px; height: 11px; border-radius: 50%;
}
.vdot-r { background: #ff6059; }
.vdot-y { background: #febc2e; }
.vdot-g { background: #28c840; }
.vis-panel-title {
  font-size: 12px; font-weight: 600;
  color: var(--ink3); letter-spacing: -0.01em;
}
.vis-panel-badge {
  font-size: 10.5px; font-weight: 600;
  padding: 3px 10px; border-radius: 999px;
  background: rgba(37,99,235,0.1); color: var(--accent);
  letter-spacing: 0.02em;
}

.vis-panel-body { padding: 16px 18px; }
.vis-section-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink4); margin-bottom: 8px; padding-left: 2px;
}
.vis-modules { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }

.vis-module {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 10px 14px;
  transition: border-color .2s;
}
.vis-module:hover { border-color: var(--accent-border); }
.vm-left { display: flex; align-items: center; gap: 11px; }
.vm-icon {
  width: 30px; height: 30px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.vm-name { font-size: 13px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.vm-sub  { font-size: 11px; color: var(--ink4); margin-top: 1px; }
.vm-pill {
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.07em;
  padding: 3px 9px; border-radius: 5px;
  flex-shrink: 0;
}
.pill-planned { background: rgba(113,113,113,0.1); color: var(--ink3); }
.pill-v1      { background: rgba(37,99,235,0.1); color: var(--accent); }

/* Vis footer progress bar */
.vis-panel-footer {
  padding: 12px 18px 16px;
  border-top: 1px solid var(--border);
}
.vf-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.vf-label { font-size: 11.5px; font-weight: 600; color: var(--ink2); }
.vf-pct   { font-size: 11.5px; font-weight: 700; color: var(--accent); }
.progress-bar {
  height: 5px; background: var(--bg3);
  border-radius: 999px; overflow: hidden;
}
.progress-fill {
  height: 100%; width: 58%;
  background: linear-gradient(90deg, var(--accent), #60a5fa);
  border-radius: 999px;
  animation: progressGrow 1.6s 1.2s cubic-bezier(.16,1,.3,1) both;
}
@keyframes progressGrow {
  from { width: 0; }
  to   { width: 58%; }
}
.vf-sub { font-size: 11px; color: var(--ink4); margin-top: 6px; }

/* Floating mini cards */
.mini-cards-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}
.mini-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
}
.mc-label { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink4); margin-bottom: 6px; }
.mc-val   { font-family: 'Fraunces', serif; font-size: 26px; font-weight: 400; letter-spacing: -0.03em; color: var(--ink); line-height: 1; }
.mc-sub   { font-size: 11px; color: var(--ink3); margin-top: 4px; line-height: 1.4; }
.mc-val.accent { color: var(--accent); }

/* ─── MARQUEE ────────────────────────────────────────── */
.marquee-wrap {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
  overflow: hidden;
  position: relative; z-index: 2;
}
.mq-fade-l, .mq-fade-r {
  position: absolute; top: 0; bottom: 0;
  width: 120px; z-index: 3; pointer-events: none;
}
.mq-fade-l { left: 0;  background: linear-gradient(to right, var(--white), transparent); }
.mq-fade-r { right: 0; background: linear-gradient(to left,  var(--white), transparent); }
.marquee-track {
  display: flex;
  animation: scrollX 26s linear infinite;
  white-space: nowrap;
}
.mq-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 28px;
  font-size: 12.5px; font-weight: 500;
  color: var(--ink3);
}
.mq-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}
@keyframes scrollX {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SECTION SHARED ─────────────────────────────────── */
.section { padding: clamp(72px,10vh,120px) clamp(20px,5vw,80px); }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.section-eyebrow::before {
  content: ''; width: 18px; height: 2px;
  background: var(--accent); border-radius: 1px;
}
.section-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(34px,4.5vw,56px);
  font-weight: 400;
  letter-spacing: -0.03em; line-height: 1.1;
  color: var(--ink);
}
.section-h2 em { font-style: italic; color: var(--ink3); }
.section-body {
  font-size: clamp(15px,1.3vw,17px);
  line-height: 1.8; color: var(--ink3);
  max-width: 580px; margin-top: 16px;
}

/* ─── WHAT / ABOUT SECTION ───────────────────────────── */
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,96px);
  align-items: center;
  margin-top: clamp(40px,6vh,64px);
}

/* Feature strip */
.features-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}
.feat-item {
  padding: clamp(18px,2.5vw,28px);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.feat-item:nth-child(2) { border-right: none; }
.feat-item:nth-child(3) { border-bottom: none; }
.feat-item:nth-child(4) { border-right: none; border-bottom: none; }
.feat-item:hover { background: var(--bg2); }
.feat-icon {
  width: 36px; height: 36px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  background: var(--accent-bg);
}
.feat-icon svg { color: var(--accent); }
.feat-title { font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 5px; letter-spacing: -0.01em; }
.feat-desc  { font-size: 12.5px; line-height: 1.65; color: var(--ink3); }

/* Offering cards (right column) */
.what-right { display: flex; flex-direction: column; gap: 14px; }
.what-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex; gap: 16px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.what-card:hover {
  border-color: var(--accent-border);
  box-shadow: 0 8px 28px rgba(37,99,235,0.08);
  transform: translateY(-2px);
}
.wc-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wc-title { font-size: 14.5px; font-weight: 600; color: var(--ink); margin-bottom: 5px; letter-spacing: -0.01em; }
.wc-desc  { font-size: 13px; color: var(--ink3); line-height: 1.65; }

/* ─── APPS SECTION ───────────────────────────────────── */
.apps-section { background: var(--bg2); }

.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: clamp(36px,5vh,56px);
}
.app-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.app-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.app-card:hover {
  border-color: var(--border2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.app-card:hover::before { transform: scaleX(1); }
.app-card.ac1::before { background: linear-gradient(90deg,#2563EB,#60a5fa); }
.app-card.ac2::before { background: linear-gradient(90deg,#7c3aed,#a78bfa); }
.app-card.ac3::before { background: linear-gradient(90deg,#0891b2,#22d3ee); }
.app-card.ac4::before { background: linear-gradient(90deg,#059669,#34d399); }
.app-card.ac5::before { background: linear-gradient(90deg,#dc2626,#f87171); }
.app-card.ac6::before { background: linear-gradient(90deg,#ea580c,#fb923c); }

.app-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.app-name {
  font-family: 'Fraunces', serif;
  font-size: 21px; font-weight: 400;
  letter-spacing: -0.02em; color: var(--ink);
  margin-bottom: 8px;
}
.app-desc {
  font-size: 13px; line-height: 1.65;
  color: var(--ink3); margin-bottom: 18px;
}
.app-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.app-tag {
  font-size: 11px; font-weight: 500;
  color: var(--ink3);
  background: var(--bg2); border: 1px solid var(--border);
  padding: 4px 10px; border-radius: 5px;
}

/* ─── HOW IT WORKS ───────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: clamp(24px,3vw,40px);
  margin-top: clamp(40px,5vh,60px);
}
.step { position: relative; padding-top: 4px; }
.step-connector {
  position: absolute;
  top: 22px; left: calc(44px + 20px);
  right: 0; height: 1px;
  background: linear-gradient(to right, var(--border2), transparent);
}
.step:last-child .step-connector { display: none; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #fff;
  margin-bottom: 20px; flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
}
.step-title { font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.02em; }
.step-desc  { font-size: 13.5px; line-height: 1.7; color: var(--ink3); }

/* ─── CTA ────────────────────────────────────────────── */
.cta-section {
  background: var(--ink);
  padding: clamp(64px,10vh,100px) clamp(20px,5vw,80px);
  position: relative; overflow: hidden;
}
.cta-orb-1 {
  position: absolute; top: -100px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.28) 0%, transparent 60%);
  pointer-events: none;
}
.cta-orb-2 {
  position: absolute; bottom: -120px; left: -60px;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner {
  max-width: 720px; margin: 0 auto;
  text-align: center; position: relative;
}
.cta-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(34px,5vw,62px);
  font-weight: 400;
  letter-spacing: -0.03em; line-height: 1.1;
  color: #fff; margin-bottom: 16px;
}
.cta-h2 em { font-style: italic; color: rgba(255,255,255,0.45); }
.cta-sub {
  font-size: clamp(15px,1.3vw,17px);
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  max-width: 500px; margin: 0 auto 36px;
}
.cta-sub strong { color: rgba(255,255,255,0.85); font-weight: 500; }

.cta-form {
  display: flex; gap: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; overflow: hidden;
  max-width: 430px; margin: 0 auto;
  transition: border-color .25s, box-shadow .25s;
}
.cta-form:focus-within {
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.05);
}
.cta-form input {
  flex: 1; background: transparent;
  padding: 14px 18px; font-size: 14px; color: #fff;
}
.cta-form input::placeholder { color: rgba(255,255,255,0.3); }
.cta-form-btn {
  margin: 5px;
  background: #fff; color: var(--ink);
  font-size: 13.5px; font-weight: 600;
  padding: 9px 22px; border-radius: 7px;
  white-space: nowrap; flex-shrink: 0;
  letter-spacing: -0.01em;
  transition: background .2s, transform .15s;
}
.cta-form-btn:hover { background: #f0f0f0; transform: translateY(-1px); }
.cta-form-btn.ok { background: #22c55e; color: #fff; }
.cta-note { font-size: 12px; color: rgba(255,255,255,0.28); margin-top: 12px; }

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: clamp(40px,5vh,56px) clamp(20px,5vw,80px);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(32px,4vw,64px);
}
.footer-brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 20px; font-weight: 600;
  letter-spacing: -0.04em; color: var(--ink);
  display: flex; align-items: center; gap: 9px;
  margin-bottom: 10px;
}
.footer-brand-name span { color: var(--accent); }
.footer-brand-desc { font-size: 13px; color: var(--ink3); line-height: 1.65; max-width: 220px; }

.footer-col-title {
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink4); margin-bottom: 14px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13.5px; color: var(--ink3); transition: color .2s; }
.footer-links a:hover { color: var(--ink); }

.footer-bottom {
  max-width: 1200px; margin: clamp(32px,4vh,48px) auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12.5px; color: var(--ink4); }
.footer-socials { display: flex; gap: 20px; }
.footer-socials a { font-size: 13px; color: var(--ink4); transition: color .2s; }
.footer-socials a:hover { color: var(--ink); }

/* ─── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes rowUp {
  to { transform: translateY(0); }
}

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.on { opacity: 1; transform: none; }
.rd1 { transition-delay: .08s; }
.rd2 { transition-delay: .16s; }
.rd3 { transition-delay: .24s; }
.rd4 { transition-delay: .32s; }
.rd5 { transition-delay: .40s; }
.rd6 { transition-delay: .48s; }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner       { grid-template-columns: 1fr; }
  .hero-right       { display: none; }
  .what-grid        { grid-template-columns: 1fr; }
  .apps-grid        { grid-template-columns: repeat(2, 1fr); }
  .footer-inner     { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-links        { display: none; }
  .apps-grid        { grid-template-columns: 1fr; }
  .features-strip   { grid-template-columns: 1fr; }
  .feat-item        { border-right: none; }
  .feat-item:nth-child(3) { border-bottom: 1px solid var(--border); }
  .steps            { grid-template-columns: 1fr; }
  .step-connector   { display: none; }
  .footer-inner     { grid-template-columns: 1fr; }
  .footer-inner > *:not(:first-child) { display: none; }
  .footer-bottom    { flex-direction: column; align-items: flex-start; }
  .cta-form         { flex-direction: column; }
  .cta-form input   { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .cta-form-btn     { margin: 8px; border-radius: 7px; }
}
