/* =========================================================================
   Softera marketing site — shared styles
   ========================================================================= */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: #fff; color: var(--ink); font-family: var(--font-body); overflow-x: hidden; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  padding: 12px 22px; border-radius: 12px; border: 1px solid transparent;
  cursor: pointer; transition: background 220ms var(--ease-out), color 220ms var(--ease-out), border-color 220ms var(--ease-out);
  text-decoration: none; line-height: 1; white-space: nowrap;
}
.btn--primary { background: var(--softera-blue); color: #fff; }
.btn--primary:hover { background: var(--primary-hover); }
.btn--secondary { background: #fff; color: var(--softera-deep); border-color: var(--line-strong); }
.btn--secondary:hover { border-color: var(--softera-blue); color: var(--softera-blue); }
.btn--ghost-light { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(6px); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.16); }
.btn--accent { background: var(--accent-button); color: var(--softera-deep); }
.btn--accent:hover { filter: brightness(0.95); }

a.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--softera-blue); font-weight: 500; font-size: 15px;
  text-decoration: none; border-bottom: 0;
}
a.link-arrow:hover { color: var(--primary-hover); }
a.link-arrow i { width: 16px; height: 16px; transition: transform 220ms var(--ease-out); }
a.link-arrow:hover i { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 56px;
}
.site-header.is-light { background: rgba(255,255,255,0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); position: sticky; top: 0; }
.site-header__brand img { height: 28px; }
.site-header__nav { display: flex; gap: 30px; }
.site-header__link {
  color: rgba(255,255,255,0.88); font-size: 15px; font-weight: 500;
  text-decoration: none; border: 0; transition: color 140ms var(--ease-out);
  cursor: pointer; background: none; padding: 0;
}
.site-header.is-light .site-header__link { color: var(--ink-2); }
.site-header__link:hover { color: #fff; }
.site-header.is-light .site-header__link:hover { color: var(--softera-blue); }
.site-header__cta { display: flex; align-items: center; gap: 16px; }
.site-header__login {
  color: rgba(255,255,255,0.85); font-size: 14px; text-decoration: none; border: 0;
  display: inline-flex; align-items: center; gap: 6px;
}
.site-header.is-light .site-header__login { color: var(--ink-2); }
.site-header__login:hover { color: #fff; }
.site-header.is-light .site-header__login:hover { color: var(--softera-blue); }
.site-header__lang {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2); padding: 4px 10px; border-radius: 999px;
  background: none; cursor: pointer;
}
.site-header.is-light .site-header__lang { color: var(--ink-3); border-color: var(--line); }

/* ---------- Language switch (FI / EN segmented) ---------- */
.lang-switch {
  display: inline-flex; align-items: center; gap: 2px;
  border: 1px solid rgba(255,255,255,0.22); border-radius: 999px;
  padding: 2px;
}
.lang-switch__opt {
  font-family: var(--font-display); font-weight: 500; font-size: 12.5px;
  letter-spacing: 0.03em; line-height: 1;
  color: rgba(255,255,255,0.72); text-decoration: none;
  padding: 6px 11px; border-radius: 999px;
  transition: color 140ms var(--ease-out), background 140ms var(--ease-out);
}
.lang-switch__opt:hover { color: #fff; }
.lang-switch__opt.is-active { background: rgba(255,255,255,0.92); color: var(--softera-deep); }
.lang-switch__opt.is-active:hover { color: var(--softera-deep); }
.site-header.is-light .lang-switch { border-color: var(--line); }
.site-header.is-light .lang-switch__opt { color: var(--ink-3); }
.site-header.is-light .lang-switch__opt:hover { color: var(--softera-blue); }
.site-header.is-light .lang-switch__opt.is-active { background: var(--softera-blue); color: #fff; }
.site-header.is-light .lang-switch__opt.is-active:hover { color: #fff; }

/* ---------- Hero (multi) ---------- */
.hero {
  position: relative; min-height: 820px; overflow: hidden;
  background: var(--gradient-aurora);
  background-size: 200% 200%;
  color: #fff;
  padding: 140px 56px 80px;
}
.hero.is-animated { animation: aurora-drift 18s var(--ease-inout) infinite; }
@keyframes aurora-drift {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 40% at 80% 15%, rgba(117,250,199,0.18), transparent 60%),
    radial-gradient(50% 50% at 10% 85%, rgba(0,202,208,0.15), transparent 60%);
}

.hero__inner {
  position: relative; z-index: 2;
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px;
  align-items: center;
}

.hero__tabs { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: nowrap; }
.hero__tab { white-space: nowrap; }
.hero__tab {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.78);
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.01em;
  cursor: pointer; transition: all 220ms var(--ease-out);
  position: relative; overflow: hidden;
}
.hero__tab:hover { background: rgba(255,255,255,0.12); color: #fff; }
.hero__tab.is-active { background: #fff; color: var(--softera-deep); border-color: #fff; }
.hero__tab-dot { display: none; }
.hero__tab-progress { display: none; }

.hero__eyebrow {
  font-family: var(--font-body); font-weight: 500;
  font-size: 13px; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 18px;
}
.hero__h {
  font-family: var(--font-display); font-weight: 600;
  font-size: 64px; letter-spacing: -0.02em; line-height: 1.04;
  color: #fff; margin: 0 0 22px; max-width: 16ch;
}
.hero__h em { font-style: normal; color: var(--accent-bright); font-weight: 500; }
.hero__sub {
  font-size: 18px; line-height: 1.55;
  color: rgba(255,255,255,0.85);
  max-width: 50ch; margin: 0 0 32px;
}
.hero__ctas { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

.hero__trust {
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-direction: column; gap: 12px;
}
.hero__trust-label { font-size: 12px; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.hero__trust-logos { display: flex; flex-wrap: wrap; gap: 22px 36px; align-items: center; }
.hero__trust-logos span { font-family: var(--font-display); font-weight: 500; font-size: 16px; color: rgba(255,255,255,0.78); letter-spacing: -0.01em; }

.hero__stage { position: relative; }
.hero__stage-frame { position: relative; transition: opacity 420ms var(--ease-out); }
.hero__stage-frame.is-leaving { opacity: 0; transform: translateY(8px); }
.hero__stage-frame.is-entering { opacity: 0; transform: translateY(-8px); }

/* ---------- Mock UI cards (in hero) ---------- */
.mock {
  background: #fff; border-radius: 16px; box-shadow: var(--shadow-4);
  overflow: hidden; border: 1px solid rgba(255,255,255,0.12);
}
.mock--glass {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
}
.mock__chrome {
  display: flex; align-items: center; gap: 7px; padding: 11px 14px;
  background: rgba(0,0,0,0.16);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.mock--solid .mock__chrome { background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.mock__dot { width: 10px; height: 10px; border-radius: 50%; }
.mock__url {
  margin-left: 14px; font-family: var(--font-mono); font-size: 11px;
  color: rgba(255,255,255,0.6);
}
.mock--solid .mock__url { color: var(--ink-3); }

/* T360 — Valokuitu mock */
.mock-t360 { background: #fff; color: var(--ink); }
.mock-t360__body { display: grid; grid-template-columns: 170px 1fr; min-height: 380px; }
.mock-t360__side { background: var(--bg-soft); border-right: 1px solid var(--line); padding: 14px 12px; }
.mock-t360__brand { font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--softera-blue); margin-bottom: 18px; letter-spacing: -0.01em; }
.mock-t360__nav { display: flex; flex-direction: column; gap: 2px; }
.mock-t360__nav-i { display: flex; align-items: center; gap: 9px; padding: 7px 10px; border-radius: 8px; font-size: 12.5px; color: var(--ink-2); }
.mock-t360__nav-i.is-active { background: #fff; color: var(--softera-blue); font-weight: 500; box-shadow: var(--shadow-1); }
.mock-t360__nav-d { width: 5px; height: 5px; border-radius: 50%; background: var(--line-strong); }
.mock-t360__nav-i.is-active .mock-t360__nav-d { background: var(--softera-cyan); }
.mock-t360__main { padding: 16px 18px; display: flex; flex-direction: column; gap: 14px; }
.mock-t360__crumbs { font-size: 11.5px; color: var(--ink-3); }
.mock-t360__title { font-family: var(--font-display); font-weight: 500; font-size: 20px; letter-spacing: -0.01em; }
.mock-t360__kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.mock-t360__kpi { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; }
.mock-t360__kpi-l { font-size: 10.5px; color: var(--ink-3); letter-spacing: 0.04em; text-transform: uppercase; }
.mock-t360__kpi-v { font-family: var(--font-display); font-weight: 600; font-size: 22px; letter-spacing: -0.01em; margin-top: 2px; color: var(--softera-deep); }
.mock-t360__kpi-d { font-family: var(--font-mono); font-size: 11px; color: var(--success); margin-top: 2px; }
.mock-t360__rows { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.mock-t360__rh, .mock-t360__r { display: grid; grid-template-columns: 1.6fr 1.2fr 0.9fr 0.8fr; padding: 8px 12px; font-size: 12px; align-items: center; }
.mock-t360__rh { background: var(--bg-soft); color: var(--ink-3); border-bottom: 1px solid var(--line); font-weight: 500; font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; }
.mock-t360__r + .mock-t360__r { border-top: 1px solid var(--line); }
.mock-t360__pill { display: inline-flex; align-items: center; padding: 2px 8px; border-radius: 999px; font-size: 11px; font-weight: 500; width: fit-content; }
.mock-t360__pill--ok { background: rgba(31,157,110,0.10); color: var(--success); }
.mock-t360__pill--wait { background: rgba(199,126,22,0.12); color: var(--warning); }
.mock-t360__pill--prog { background: rgba(0,150,198,0.12); color: var(--softera-sky); }

/* J360 — jätehuolto mock */
.mock-j360 { background: #fff; color: var(--ink); }
.mock-j360__body { display: grid; grid-template-rows: auto 1fr; min-height: 380px; }
.mock-j360__top { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.mock-j360__top-h { font-family: var(--font-display); font-weight: 500; font-size: 17px; letter-spacing: -0.01em; }
.mock-j360__chip { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; background: rgba(117,250,199,0.20); color: #0e8055; border-radius: 999px; font-size: 11.5px; font-weight: 500; }
.mock-j360__split { display: grid; grid-template-columns: 1.4fr 1fr; }
.mock-j360__map { background: var(--bg-soft); padding: 12px; position: relative; min-height: 320px; }
.mock-j360__map svg { width: 100%; height: 100%; min-height: 290px; }
.mock-j360__list { padding: 14px; border-left: 1px solid var(--line); display: flex; flex-direction: column; gap: 8px; }
.mock-j360__list-h { font-size: 11px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; }
.mock-j360__row { display: flex; gap: 8px; align-items: center; padding: 6px 8px; border-radius: 6px; font-size: 12.5px; color: var(--ink-2); }
.mock-j360__row.is-active { background: var(--bg-soft); color: var(--ink); }
.mock-j360__row .pin { width: 7px; height: 7px; border-radius: 50%; background: var(--softera-blue); }
.mock-j360__row.is-active .pin { background: var(--softera-mint); box-shadow: 0 0 0 3px rgba(117,250,199,0.30); }

/* Horizon mock */
.mock-hz { background: #fff; color: var(--ink); }
.mock-hz__body { display: grid; grid-template-columns: 220px 1fr; min-height: 380px; }
.mock-hz__inbox { background: var(--bg-soft); border-right: 1px solid var(--line); padding: 14px 10px; }
.mock-hz__inbox-h { font-size: 11px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.04em; padding: 0 6px 10px; }
.mock-hz__msg { display: flex; gap: 9px; align-items: flex-start; padding: 9px 8px; border-radius: 8px; }
.mock-hz__msg.is-active { background: #fff; box-shadow: var(--shadow-1); }
.mock-hz__msg-av { width: 26px; height: 26px; border-radius: 50%; background: var(--softera-blue); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 500; font-size: 12px; flex-shrink: 0; }
.mock-hz__msg-from { font-size: 12.5px; font-weight: 500; color: var(--ink); }
.mock-hz__msg-sub { font-size: 11.5px; color: var(--ink-3); margin-top: 2px; line-height: 1.3; }
.mock-hz__convo { padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.mock-hz__convo-h { display: flex; align-items: center; gap: 10px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.mock-hz__convo-name { font-family: var(--font-display); font-weight: 500; font-size: 14px; }
.mock-hz__bubble { max-width: 80%; padding: 10px 14px; background: var(--bg-soft); border-radius: 12px 12px 12px 4px; font-size: 13px; line-height: 1.45; color: var(--ink-2); }
.mock-hz__bubble--me { background: var(--softera-blue); color: #fff; align-self: flex-end; border-radius: 12px 12px 4px 12px; }
.mock-hz__ai { margin-top: auto; background: linear-gradient(135deg, rgba(0,202,208,0.10), rgba(117,250,199,0.10)); border: 1px solid rgba(0,202,208,0.25); border-radius: 12px; padding: 12px; }
.mock-hz__ai-h { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: var(--softera-deep); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 6px; }
.mock-hz__ai-h i { width: 13px; height: 13px; }
.mock-hz__ai-body { font-size: 12.5px; line-height: 1.45; color: var(--ink-2); }

/* Callouts */
.callout { position: absolute; pointer-events: none; }
.callout__dot { display: block; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px color-mix(in oklab, var(--accent) 30%, transparent); }
.callout__line { position: absolute; background: var(--accent); }
.callout__line--h { height: 1px; }
.callout__line--v { width: 1px; }
.callout__pill {
  position: absolute; background: #fff; color: var(--softera-deep);
  font-family: var(--font-body); font-weight: 500; font-size: 13px;
  padding: 6px 14px; border-radius: 999px; box-shadow: var(--shadow-callout);
  white-space: nowrap;
}

/* ---------- Generic section ---------- */
.section { padding: 96px 56px; }
.section--tight { padding: 64px 56px; }
.section__inner { max-width: 1280px; margin: 0 auto; }
.section__head { display: flex; flex-direction: column; gap: 8px; margin-bottom: 48px; max-width: 720px; }
.section__title { font-family: var(--font-display); font-weight: 500; font-size: 42px; letter-spacing: -0.015em; line-height: 1.1; color: var(--ink); margin: 0; }
.section__lede { font-size: 17px; line-height: 1.55; color: var(--ink-2); margin: 0; }
.eyebrow {
  font-family: var(--font-body); font-weight: 500;
  font-size: 13px; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--softera-sky);
}

/* ---------- Why us / focus ---------- */
.focus { background: #fff; padding: 110px 56px; }
.focus__inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.focus__rule { width: 1px; height: 36px; background: var(--softera-cyan); margin: 0 auto 22px; }
.focus__eye { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--softera-sky); margin-bottom: 16px; }
.focus__h {
  font-family: var(--font-display); font-weight: 500;
  font-size: 56px; line-height: 1.08; letter-spacing: -0.02em;
  color: var(--ink); margin: 0 0 22px; text-wrap: balance;
}
.focus__h em { font-style: normal; color: var(--softera-blue); font-weight: 500; }
.focus__sub { font-size: 18px; line-height: 1.55; color: var(--ink-2); max-width: 60ch; margin: 0 auto 56px; }
.focus__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.focus__cell { padding: 24px 8px; border-top: 1px solid var(--line); }
.focus__num { font-family: var(--font-display); font-weight: 600; font-size: 56px; letter-spacing: -0.02em; line-height: 1; color: var(--softera-deep); }
.focus__lbl { font-size: 13.5px; color: var(--ink-3); margin-top: 8px; line-height: 1.4; }

/* ---------- Products / Alusta ---------- */
.platform { background: var(--bg-soft); padding: 110px 56px; position: relative; overflow: hidden; }
.platform__inner { max-width: 1280px; margin: 0 auto; }
.platform__head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 64px; }
.platform__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 36px; display: flex; flex-direction: column; gap: 20px;
  transition: box-shadow 220ms var(--ease-out), transform 220ms var(--ease-out);
  position: relative; overflow: hidden;
}
.product-card:hover { box-shadow: var(--shadow-3); }
.product-card--dark { background: var(--softera-deep); border-color: var(--softera-deep); color: #fff; }
.product-card__tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--softera-sky); padding: 4px 10px; border: 1px solid var(--line); border-radius: 999px; width: fit-content;
}
.product-card--dark .product-card__tag { color: var(--softera-mint); border-color: rgba(117,250,199,0.30); background: rgba(117,250,199,0.06); }
.product-card__name {
  font-family: var(--font-display); font-weight: 600; font-size: 36px; letter-spacing: -0.02em;
  margin: 8px 0 4px; color: var(--ink);
}
.product-card--dark .product-card__name { color: #fff; }
.product-card__strap { font-family: var(--font-display); font-weight: 400; font-size: 20px; letter-spacing: -0.01em; color: var(--softera-blue); margin: 0 0 4px; }
.product-card--dark .product-card__strap { color: var(--softera-mint); }
.product-card__lede { font-size: 15.5px; line-height: 1.55; color: var(--ink-2); max-width: 38ch; }
.product-card--dark .product-card__lede { color: rgba(255,255,255,0.78); }
.product-card__list { list-style: none; padding: 0; margin: 4px 0 0; display: flex; flex-direction: column; gap: 10px; }
.product-card__list li { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink-2); align-items: flex-start; line-height: 1.5; }
.product-card__list i { width: 16px; height: 16px; color: var(--softera-blue); flex-shrink: 0; margin-top: 4px; }
.product-card--dark .product-card__list li { color: rgba(255,255,255,0.85); }
.product-card--dark .product-card__list i { color: var(--softera-mint); }
.product-card__cta { margin-top: auto; padding-top: 8px; }
.product-card--dark .product-card__cta a { color: var(--softera-mint); }

/* ---------- Industries ---------- */
.industries { background: #fff; padding: 110px 56px; }
.industries__inner { max-width: 1280px; margin: 0 auto; }
.industries__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
@media (max-width: 1100px) { .industries__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .industries__grid { grid-template-columns: 1fr; } }
.industry-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 24px; transition: all 220ms var(--ease-out);
  display: flex; flex-direction: column; gap: 20px;
  position: relative; overflow: hidden;
  justify-content: space-between;
  min-height: 180px;
}
.industry-card:hover { box-shadow: var(--shadow-3); border-color: var(--softera-cyan); }
.industry-card__head { display: flex; align-items: center; gap: 14px; }
.industry-card__icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-soft); color: var(--softera-blue);
}
.industry-card--mint .industry-card__icon { background: rgba(117,250,199,0.20); color: #0e8055; }
.industry-card--cyan .industry-card__icon { background: rgba(0,202,208,0.14); color: var(--softera-deep); }
.industry-card--sky .industry-card__icon { background: rgba(0,150,198,0.10); color: var(--softera-blue); }
.industry-card--navy .industry-card__icon { background: rgba(0,59,102,0.10); color: var(--softera-deep); }
.industry-card__icon i { width: 22px; height: 22px; }
.industry-card__name { font-family: var(--font-display); font-weight: 500; font-size: 20px; letter-spacing: -0.01em; }
.industry-card__lede { font-size: 14.5px; line-height: 1.55; color: var(--ink-2); }
.industry-card__bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.industry-card__bullets li { font-size: 13px; color: var(--ink-3); padding-left: 14px; position: relative; }
.industry-card__bullets li::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--softera-cyan); position: absolute; left: 0; top: 8px; }
.industry-card__cta { margin-top: 8px; }

/* ---------- Story carousel ---------- */
.story { background: var(--softera-deep); color: #fff; padding: 110px 56px; position: relative; overflow: hidden; }
.story::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 90% 20%, rgba(117,250,199,0.08), transparent 60%),
              radial-gradient(50% 60% at 10% 90%, rgba(0,202,208,0.08), transparent 60%);
  pointer-events: none;
}
.story__inner { max-width: 1280px; margin: 0 auto; position: relative; }
.story__head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 48px; gap: 24px; }
.story__head h2 { color: #fff; font-family: var(--font-display); font-weight: 500; font-size: 42px; letter-spacing: -0.015em; line-height: 1.1; }
.story__head .eyebrow { color: var(--softera-mint); }
.story__nav { display: flex; gap: 8px; }
.story__nav-btn { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 220ms var(--ease-out); }
.story__nav-btn:hover { background: rgba(255,255,255,0.14); }
.story__nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.story__nav-btn i { width: 18px; height: 18px; }

.story__track { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: center; min-height: 320px; }
.story__quote { font-family: var(--font-display); font-weight: 500; font-size: 30px; line-height: 1.35; letter-spacing: -0.01em; margin: 0 0 28px; color: #fff; max-width: 24ch; }
.story__by { display: flex; align-items: center; gap: 14px; }
.story__by-av { width: 44px; height: 44px; border-radius: 50%; background: var(--softera-blue); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 500; font-size: 16px; }
.story__by-name { font-weight: 500; font-size: 15px; color: #fff; }
.story__by-role { font-size: 13px; color: rgba(255,255,255,0.7); }

.story__stats { display: flex; flex-direction: column; gap: 24px; padding-left: 36px; border-left: 1px solid rgba(255,255,255,0.18); }
.story__stat-num { font-family: var(--font-display); font-weight: 600; font-size: 48px; letter-spacing: -0.02em; color: var(--softera-mint); line-height: 1; }
.story__stat-lbl { font-size: 13.5px; color: rgba(255,255,255,0.75); margin-top: 6px; }

.story__dots { display: flex; gap: 8px; margin-top: 40px; }
.story__dot { width: 28px; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.18); border: 0; cursor: pointer; padding: 0; transition: background 220ms var(--ease-out); }
.story__dot.is-active { background: var(--softera-mint); }

/* ---------- CTA banner ---------- */
.cta-banner { background: #fff; padding: 110px 56px; }
.cta-banner__inner {
  max-width: 1280px; margin: 0 auto;
  background: var(--gradient-aurora);
  background-size: 200% 200%;
  animation: aurora-drift 20s var(--ease-inout) infinite;
  border-radius: 28px; padding: 72px 64px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center;
  color: #fff;
  position: relative; overflow: hidden;
}
.cta-banner__h { font-family: var(--font-display); font-weight: 600; font-size: 44px; letter-spacing: -0.02em; line-height: 1.1; color: #fff; margin: 0 0 14px; }
.cta-banner__sub { font-size: 17px; line-height: 1.55; color: rgba(255,255,255,0.85); margin: 0 0 24px; max-width: 44ch; }
.cta-banner__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-banner__form { background: rgba(255,255,255,0.08); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.18); border-radius: 18px; padding: 24px; }
.cta-banner__form-h { font-family: var(--font-display); font-weight: 500; font-size: 16px; margin-bottom: 14px; color: #fff; }
.cta-banner__form input, .cta-banner__form select {
  width: 100%; padding: 11px 14px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.20); background: rgba(255,255,255,0.06);
  color: #fff; font-family: var(--font-body); font-size: 14px;
  margin-bottom: 10px;
}
.cta-banner__form input::placeholder { color: rgba(255,255,255,0.5); }
.cta-banner__form select option { color: var(--ink); }
.cta-banner__form button { width: 100%; }
.cta-banner__form button[disabled] { opacity: 0.6; cursor: not-allowed; }
.cta-banner__consent { display: flex; gap: 10px; align-items: flex-start; margin: 4px 0 10px; font-size: 12.5px; line-height: 1.5; color: rgba(255,255,255,0.78); cursor: pointer; }
.cta-banner__consent input[type="checkbox"] { width: 16px; height: 16px; flex: 0 0 16px; margin: 2px 0 0; padding: 0; border: 1px solid rgba(255,255,255,0.35); border-radius: 4px; background: rgba(255,255,255,0.06); accent-color: var(--softera-cyan); cursor: pointer; }
.cta-banner__consent a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.cta-banner__consent a:hover { color: var(--softera-cyan); }
.cta-banner__required-note { font-size: 12px; color: rgba(255,255,255,0.6); margin: 0 0 14px; }
.cta-banner__error { background: rgba(229,72,77,0.12); border: 1px solid rgba(229,72,77,0.45); color: #ffd9da; border-radius: 10px; padding: 10px 12px; font-size: 13px; line-height: 1.5; margin: 0 0 12px; }
.cta-banner__success { display: flex; flex-direction: column; align-items: flex-start; padding: 4px 0; }
.cta-banner__consent { display: flex; gap: 10px; align-items: flex-start; margin: 4px 0 10px; font-size: 12.5px; line-height: 1.5; color: rgba(255,255,255,0.78); cursor: pointer; }
.cta-banner__consent input[type="checkbox"] { width: 16px; height: 16px; flex: 0 0 16px; margin: 2px 0 0; padding: 0; border: 1px solid rgba(255,255,255,0.35); border-radius: 4px; background: rgba(255,255,255,0.06); accent-color: var(--softera-cyan); cursor: pointer; }
.cta-banner__consent a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.cta-banner__consent a:hover { color: var(--softera-cyan); }
.cta-banner__required-note { font-size: 12px; color: rgba(255,255,255,0.6); margin: 0 0 14px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--softera-deep); color: #fff; padding: 80px 56px 28px; }
.site-footer__inner { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; gap: 56px; }
.site-footer__brand img { height: 26px; margin-bottom: 18px; }
.site-footer__strap { font-size: 14.5px; line-height: 1.55; color: rgba(255,255,255,0.78); max-width: 36ch; margin: 0 0 20px; }
.site-footer__contact { display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,0.78); }
.site-footer__contact span { display: inline-flex; align-items: center; gap: 8px; }
.site-footer__contact i { width: 16px; height: 16px; }
.site-footer__side { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.site-footer__social-h {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.10em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.site-footer__social { display: flex; gap: 10px; }
.site-footer__sicon {
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--softera-mint);
  color: var(--softera-deep);
  text-decoration: none;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), background 220ms var(--ease-out);
}
.site-footer__sicon svg { width: 20px; height: 20px; display: block; }
.site-footer__sicon:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.site-footer__bottom {
  max-width: 1280px; margin: 64px auto 0; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  font-size: 12.5px; color: rgba(255,255,255,0.55);
}
.site-footer__copy { justify-self: start; }
.site-footer__spacer { justify-self: end; }
.site-footer__legal {
  color: rgba(255,255,255,0.75);
  font-size: 14px; font-weight: 500;
  text-decoration: none; border: 0;
  transition: color 140ms var(--ease-out);
}
.site-footer__legal:hover { color: #fff; }

/* ---------- Density tweak ---------- */
body.is-tight .section { padding: 64px 56px; }
body.is-tight .focus, body.is-tight .platform, body.is-tight .industries, body.is-tight .story, body.is-tight .cta-banner { padding-top: 72px; padding-bottom: 72px; }
body.is-tight .hero { padding: 120px 56px 60px; min-height: 700px; }

/* Accent variants — driven by --accent */
.accent-mint { --accent: #75FAC7; --accent-bright: #75FAC7; --accent-button: #75FAC7; }
.accent-cyan { --accent: #00CAD0; --accent-bright: #00CAD0; --accent-button: #00CAD0; }
.accent-sky  { --accent: #0096C6; --accent-bright: #6EDFFF; --accent-button: #6EDFFF; }

/* Page-specific: simple page hero */
.page-hero {
  background: var(--gradient-aurora-dim);
  color: #fff; padding: 160px 56px 80px;
  position: relative; overflow: hidden;
}
.page-hero__inner { max-width: 1080px; margin: 0 auto; }
.page-hero__eye { font-size: 13px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--softera-mint); margin-bottom: 16px; }
.page-hero__h { font-family: var(--font-display); font-weight: 600; font-size: 56px; line-height: 1.05; letter-spacing: -0.02em; color: #fff; margin: 0 0 22px; max-width: 22ch; }
.page-hero__sub { font-size: 18px; line-height: 1.55; color: rgba(255,255,255,0.85); max-width: 60ch; }
