/*
Theme Name:   Growbiz
Theme URI:    https://growbiz.fi
Author:       Growbiz
Author URI:   https://growbiz.fi
Description:  Kasvujärjestelmät, automaatio ja MarTech suomalaisille pk-yrityksille.
Version:      1.9.6
License:      GNU General Public License v2 or later
License URI:  LICENSE
Text Domain:  growbiz
Tags:         full-site-editing, block-styles, custom-colors, custom-logo
*/

/* ── DESIGN TOKENS ── */

:root {
  /* Brand neutrals (inner pages) */
  --gb-black:      #0a0a0a;
  --gb-white:      #ffffff;
  --gb-text:       #0a0a0a;
  --gb-text-muted: #6b7280;
  --gb-border:     #e5e7eb;
  --gb-bg-soft:    #f4f4f5;

  /* Dark mode — composio.dev system */
  --bg:            #0f0f0f;
  --surface:       #1e1e1e;
  --surface-2:     #2a2a2a;
  --border-dark:   #2c2c2c;
  --border-subtle: rgba(255,255,255,0.06);
  --border-mid:    rgba(255,255,255,0.10);

  /* Service accent colors */
  --s1: #FF6B6B;   /* Kasvustrategia   — coral    */
  --s2: #F59E0B;   /* Analytiikka      — amber    */
  --s3: #22C55E;   /* MarTech          — green    */
  --s4: #DC2626;   /* AI-automaatiot   — fire red */
  --s5: #F97316;   /* SEO              — orange   */

  --gb-accent: var(--s1);

  /* Typography */
  --font-display: "forma-djr-deck", "Franklin Gothic Medium", "Franklin Gothic", Arial, sans-serif;
  --font-body:    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* ── RESET ── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--gb-white);
  color: var(--gb-text);
  font-size: 1.125rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.home { background: var(--bg); }

/* ── WP BLOCK THEME RESETS ── */

.wp-site-blocks        { padding: 0 !important; }
.wp-block-post-content { max-width: none !important; padding: 0 !important; }
.wp-block-html         { display: contents; }

/* ── LAYOUT ── */

.container { max-width: 1240px; margin: 0 auto; padding: 0 40px; }

/* ── TYPOGRAPHY BASE ── */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  text-wrap: balance;
  letter-spacing: -0.025em;
}

/* ── SECTION EYEBROW ── */

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.85);
  padding: 4px 10px; margin-bottom: 20px;
  font-family: var(--font-mono); font-size: 0.8125rem;
  text-transform: uppercase; letter-spacing: -0.011em; font-weight: 400;
  color: rgba(255,255,255,0.85); line-height: 1;
}
.eyebrow-dot {
  width: 5.82px; height: 5.82px;
  background: rgba(255,255,255,0.85); flex-shrink: 0; display: block;
}
.section-eyebrow--light {
  border-color: rgba(10,10,10,0.50); color: rgba(10,10,10,0.70);
}
.section-eyebrow--light .eyebrow-dot { background: rgba(10,10,10,0.70); }

/* ── SYSTEM GLYPH — section punctuation (replaces eyebrows on homepage) ── */

.sysdots { display: inline-flex; gap: 6px; margin-bottom: 26px; }
.sysdots span { width: 7px; height: 7px; background: rgba(255,255,255,0.13); }
.sysdots span.on-s1 { background: var(--s1); }
.sysdots span.on-s2 { background: var(--s2); }
.sysdots span.on-s3 { background: var(--s3); }
.sysdots span.on-s4 { background: var(--s4); }
.sysdots span.on-s5 { background: var(--s5); }

/* ── COLUMN HAIRLINES ── */

.section,
.system-statement,
.cta-section,
.svc-index,
.sysfield-band,
.offers,
.approach,
.sp-section {
  position: relative;
}
.section::before,
.system-statement::before,
.cta-section::before,
.svc-index::before,
.sysfield-band::before,
.offers::before,
.approach::before,
.sp-section::before {
  content: '';
  position: absolute; top: 0; bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 1240px;
  border-left: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.06);
  pointer-events: none; z-index: 0;
}
@media (max-width: 1280px) {
  .section::before,
  .system-statement::before,
  .cta-section::before,
  .svc-index::before,
  .sysfield-band::before,
  .offers::before,
  .approach::before,
  .sp-section::before { display: none; }
}

/* ── NAV ── */

.nav {
  position: fixed; top: 16px;
  left: 50%; transform: translateX(-50%);
  width: calc(100% - 2rem); max-width: 1240px;
  background: var(--surface);
  border: 1px solid var(--border-mid);
  border-radius: 8px;
  z-index: 100;
}
.nav-inner {
  padding: 0 8px 0 20px;
  display: flex; align-items: center;
  height: 56px;
}
.nav-left {
  display: flex; align-items: center; gap: 14px;
  margin-right: auto; flex-shrink: 0;
}
.nav-logo {
  display: flex; align-items: center;
  text-decoration: none; flex-shrink: 0;
  color: #fff;
}
.nav-logo svg { height: 22px; width: auto; display: block; }
.nav-logo svg g path { fill: currentColor; }
.nav-links {
  display: flex; align-items: center;
  gap: 24px; list-style: none;
  margin-right: 20px;
}
.nav-links a {
  text-decoration: none;
  font-family: var(--font-mono); font-size: 0.8125rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: -0.011em;
  color: rgba(255,255,255,0.70); transition: color 0.15s;
}
.nav-links a:hover { color: #fff; }

/* Language switcher */
.lang-switcher {
  display: flex; align-items: center; gap: 5px;
}
.lang-flag {
  display: flex; align-items: center; justify-content: center;
  width: 26px; height: 18px;
  border-radius: 3px; overflow: hidden;
  opacity: 0.35; transition: opacity 0.15s;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.lang-flag:focus-visible { outline: 2px solid rgba(255,255,255,0.5); outline-offset: 2px; }
.lang-flag:hover  { opacity: 0.60; }
.lang-flag.active { opacity: 1; }
.lang-flag svg    { width: 26px; height: 18px; display: block; }

/* Services dropdown */
.nav-dropdown-wrap { position: relative; }
.nav-dropdown-trigger {
  background: none; border: none; cursor: pointer; padding: 0;
  display: flex; align-items: center; gap: 5px;
  font-family: var(--font-mono); font-size: 0.8125rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: -0.011em;
  color: rgba(255,255,255,0.70); transition: color 0.15s;
}
.nav-dropdown-trigger:hover { color: #fff; }
.nav-dd-chevron {
  width: 10px; height: 6px; flex-shrink: 0;
  transition: transform 0.15s;
}
.nav-dropdown-wrap:hover .nav-dd-chevron { transform: rotate(180deg); }
.nav-dropdown-panel {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--surface); border: 1px solid var(--border-dark);
  min-width: 248px; padding: 4px 0;
  opacity: 0; pointer-events: none;
  transition: opacity 0.15s, transform 0.15s;
  z-index: 200;
}
.nav-dropdown-panel::before {
  content: ''; position: absolute;
  top: -12px; left: 0; right: 0; height: 12px;
}
.nav-dropdown-wrap:hover .nav-dropdown-panel {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dd-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 16px; text-decoration: none;
  font-family: var(--font-mono); font-size: 0.8rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: -0.011em;
  color: rgba(255,255,255,0.65); transition: color 0.1s, background 0.1s;
  white-space: nowrap;
}
.nav-dd-item:hover { color: #fff; background: rgba(255,255,255,0.04); }
.nav-dd-dot {
  width: 6px; height: 6px; border-radius: 0; flex-shrink: 0;
  display: inline-block;
}
.nav-dd-footer { border-top: 1px solid var(--border-dark); margin-top: 4px; padding-top: 4px; }
.nav-dd-all {
  display: block; padding: 8px 16px; text-decoration: none;
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: -0.011em;
  color: rgba(255,255,255,0.35); transition: color 0.15s;
}
.nav-dd-all:hover { color: rgba(255,255,255,0.65); }

/* Mobile sub-links */
.mobile-section-label { opacity: 0.5; pointer-events: none; }
.mobile-sub-links { display: flex; flex-direction: column; padding-left: 16px; }
.mobile-sub-links a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; text-decoration: none;
  color: rgba(255,255,255,0.70); font-size: 0.9375rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mobile-sub-links a:hover { color: #fff; }
.mobile-sub-links .nav-dd-dot { width: 6px; height: 6px; border-radius: 0; flex-shrink: 0; display: inline-block; margin-right: 10px; }

/* Nav CTA */
.nav-cta {
  display: inline-flex; align-items: center;
  background: #fff; color: #0f0f0f;
  font-family: var(--font-mono); font-size: 0.8125rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: -0.011em;
  padding: 9px 16px; border-radius: 0;
  text-decoration: none; white-space: nowrap;
  flex-shrink: 0; transition: background 0.15s;
}
.nav-cta:hover { background: #f0f0f0; }

/* Mobile hamburger */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 40px; height: 40px;
  cursor: pointer; border: none; background: transparent;
  padding: 8px; border-radius: 5px; flex-shrink: 0;
  margin-right: 8px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,0.80); border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: absolute; top: 56px; left: -1px; right: -1px;
  background: var(--bg);
  border: 1px solid var(--border-mid);
  border-top: 1px solid var(--border-subtle);
  border-radius: 0 0 8px 8px;
  padding: 8px 24px 24px; z-index: 99;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a {
  display: block;
  font-family: var(--font-mono); font-size: 0.875rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: -0.011em;
  color: rgba(255,255,255,0.70); text-decoration: none;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.15s;
}
.mobile-menu a:hover { color: #fff; }
.mobile-lang {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-lang .lang-flag        { opacity: 0.4; }
.mobile-lang .lang-flag.active { opacity: 1; }
.mobile-menu .mobile-cta {
  display: inline-flex; margin-top: 18px;
  background: #fff; color: #0f0f0f;
  padding: 10px 20px; border-radius: 0;
  font-family: var(--font-mono); font-size: 0.875rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: -0.011em;
  border-bottom: none; transition: background 0.15s;
}
.mobile-menu .mobile-cta:hover { background: #f0f0f0; }

/* ── HERO ── */

.hero {
  background: var(--bg);
  min-height: 100dvh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#hero-terminal-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 50% -5%,  rgba(255,145,145,0.70) 0%, rgba(255,145,145,0.40) 30%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 20% 60%,  rgba(255,145,145,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 80% 50%,  rgba(255,145,145,0.15) 0%, transparent 50%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(15,15,15,0.10) 0%, rgba(15,15,15,0.55) 55%, var(--bg) 80%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 820px; margin: 0 auto;
  text-align: center;
  padding: 20px 32px 80px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: #fff; margin-bottom: 10px;
  text-align: center;
  text-wrap: balance;
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.6vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: rgba(255,255,255,0.82);
  margin: 0 0 28px;
  text-align: center;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 1.375rem; line-height: 1.6;
  color: rgba(255,255,255,0.70);
  max-width: 580px; margin: 0 auto 44px;
  font-weight: 400; letter-spacing: 0;
  text-align: center;
  text-wrap: pretty; overflow-wrap: break-word;
}
.hero-actions {
  display: flex; align-items: center;
  justify-content: center;
  gap: 12px; flex-wrap: wrap;
}
.hero-visual { display: none; }

/* Short laptop viewports: the fixed nav can overlap the vertically-centred
   hero headline. Top-align the hero and clear the nav. Scoped to desktop width
   only — at ≤900px the nav is sticky (in-flow), so mobile is unaffected. */
@media (min-width: 901px) and (max-height: 820px) {
  .hero { justify-content: flex-start; }
  .hero-inner { padding-top: 104px; }
}

/* ── TRUST TICKER ── */

.trust-bar {
  border-top: 1px solid var(--border-dark); border-bottom: 1px solid var(--border-dark);
  background: var(--bg);
  overflow: hidden;
  position: relative;
}
.trust-track {
  display: flex; align-items: center;
  width: max-content;
  animation: gb-ticker 36s linear infinite;
}
.trust-bar:hover .trust-track { animation-play-state: paused; }
@keyframes gb-ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.trust-set { display: flex; align-items: center; height: 64px; }
.trust-item {
  display: flex; align-items: center; gap: 40px;
  padding: 0 20px 0 60px;
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.38); white-space: nowrap;
}
.trust-item .tdot { width: 5px; height: 5px; flex-shrink: 0; opacity: 0.85; }
.trust-label-fixed {
  position: absolute; left: 0; top: 0; bottom: 0; z-index: 2;
  display: flex; align-items: center;
  padding: 0 28px 0 40px;
  background: linear-gradient(to right, var(--bg) 62%, transparent);
  font-family: var(--font-mono); font-size: 0.6875rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.30); white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) { .trust-track { animation: none; } }

/* ── BUTTONS ── */

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: #0f0f0f;
  font-family: var(--font-mono); font-size: 0.875rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: -0.011em;
  padding: 11px 20px; border-radius: 0;
  text-decoration: none; transition: background 0.15s;
}
.btn-primary:hover { background: #f0f0f0; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.80);
  font-family: var(--font-mono); font-size: 0.875rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: -0.011em;
  padding: 11px 20px; border-radius: 0;
  border: 1px solid rgba(255,255,255,0.28);
  text-decoration: none; transition: background 0.15s, border-color 0.15s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.50); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--gb-text);
  font-family: var(--font-mono); font-size: 0.875rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: -0.011em;
  padding: 11px 20px; border-radius: 0;
  border: 1px solid var(--gb-border);
  text-decoration: none; transition: border-color 0.15s, background 0.15s;
}
.btn-outline:hover { border-color: #aaa; background: var(--gb-bg-soft); }

.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: #0f0f0f; color: #fff;
  font-family: var(--font-mono); font-size: 0.875rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: -0.011em;
  padding: 12px 20px; border-radius: 0;
  text-decoration: none; transition: background 0.15s;
}
.btn-dark:hover { background: #1e1e1e; }

/* ── SECTION BASE ── */

.section { padding: 86px 40px 72px; }
.section--dark    { background: var(--bg); }
.section--soft    { background: var(--gb-bg-soft); }
.section--surface { background: var(--surface); }
.section-header { margin-bottom: 56px; }
.section-header.narrow   { max-width: 600px; }
.section-header.centered { text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; }

.section h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.05; margin-bottom: 16px;
}
.section--dark h2    { color: #fff; }
.section--surface h2 { color: #fff; }

.section-sub {
  font-size: 1.0625rem; color: #374151;
  line-height: 1.72; max-width: 560px;
  font-family: var(--font-body); font-weight: 400; letter-spacing: 0;
}
.section--dark .section-sub    { color: rgba(255,255,255,0.65); }
.section--surface .section-sub { color: rgba(255,255,255,0.65); }

.section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 400;
  letter-spacing: -0.011em; text-transform: uppercase;
  color: var(--gb-text-muted); margin-bottom: 12px;
  font-family: var(--font-mono);
}
.section--dark .section-label    { color: rgba(255,255,255,0.48); }
.section--surface .section-label { color: rgba(255,255,255,0.48); }

/* ── SECTION STRIPES — retired, hidden ── */
.section-stripe { display: none; }

/* ── SERVICES GRID (homepage) ── */

.services-grid-wrap { max-width: 1240px; margin: 0 auto; }
.services-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: var(--gb-border);
  border: 1px solid var(--gb-border); border-radius: 10px; overflow: hidden;
}
.service-card {
  background: var(--gb-white); padding: 28px 22px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background 0.15s;
}
.service-card:hover { background: #fafafa; }
.service-dot {
  width: 9px; height: 9px; border-radius: 50%;
  flex-shrink: 0; margin-bottom: 2px;
}
.service-card--s1 .service-dot { background: var(--s1); }
.service-card--s2 .service-dot { background: var(--s2); }
.service-card--s3 .service-dot { background: var(--s3); }
.service-card--s4 .service-dot { background: var(--s4); }
.service-card--s5 .service-dot { background: var(--s5); }
.service-card h3 {
  font-size: 0.95rem; line-height: 1.25;
  color: var(--gb-text); font-family: var(--font-display); font-weight: 400;
  letter-spacing: -0.025em;
}
.service-card p {
  font-size: 0.855rem; color: var(--gb-text-muted);
  line-height: 1.6; flex-grow: 1;
  font-family: var(--font-body); font-weight: 400; letter-spacing: 0;
}
.service-link {
  font-family: var(--font-mono); font-size: 0.8rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: -0.011em;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap 0.15s ease-out; margin-top: auto;
}
.service-card--s1 .service-link { color: var(--s1); }
.service-card--s2 .service-link { color: var(--s2); }
.service-card--s3 .service-link { color: var(--s3); }
.service-card--s4 .service-link { color: var(--s4); }
.service-card--s5 .service-link { color: var(--s5); }
.service-link:hover { gap: 8px; }

/* ── SERVICES LIST (homepage — editorial layout) ── */

.services-list {
  max-width: 1240px; margin: 0 auto;
  border-top: 1px solid var(--gb-border);
}
.services-list-item {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--gb-border);
  text-decoration: none; color: inherit;
  transition: padding-left 0.22s ease;
}
.services-list-item:hover { padding-left: 10px; }
.sli-left { display: flex; align-items: center; gap: 18px; }
.sli-dot {
  width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0;
  transition: transform 0.22s ease;
}
.services-list-item:hover .sli-dot { transform: scale(1.6); }
.services-list-item--s1 .sli-dot { background: var(--s1); }
.services-list-item--s2 .sli-dot { background: var(--s2); }
.services-list-item--s3 .sli-dot { background: var(--s3); }
.services-list-item--s4 .sli-dot { background: var(--s4); }
.services-list-item--s5 .sli-dot { background: var(--s5); }
.sli-name {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--gb-text); line-height: 1.0;
  letter-spacing: -0.025em;
  transition: color 0.15s;
}
.services-list-item--s1:hover .sli-name { color: var(--s1); }
.services-list-item--s2:hover .sli-name { color: var(--s2); }
.services-list-item--s3:hover .sli-name { color: var(--s3); }
.services-list-item--s4:hover .sli-name { color: var(--s4); }
.services-list-item--s5:hover .sli-name { color: var(--s5); }
.sli-right { display: flex; align-items: center; gap: 32px; }
.sli-desc {
  font-size: 0.9375rem; color: #4b5563;
  line-height: 1.65; flex: 1;
  font-family: var(--font-body); font-weight: 400;
}
.sli-arrow {
  font-size: 1.5rem; color: var(--gb-border);
  flex-shrink: 0; transition: color 0.15s, transform 0.22s ease;
  line-height: 1; font-weight: 300;
}
.services-list-item:hover .sli-arrow { color: var(--gb-text); transform: translateX(6px); }

/* Dark section overrides */
.section--dark .services-list { border-top-color: var(--border-dark); }
.section--dark .services-list-item { border-bottom-color: var(--border-dark); }
.section--dark .sli-name { color: #fff; }
.section--dark .sli-desc { color: rgba(255,255,255,0.50); }
.section--dark .sli-arrow { color: rgba(255,255,255,0.20); }
.section--dark .services-list-item:hover .sli-arrow { color: #fff; transform: translateX(6px); }

/* ── SERVICES — THE SYSTEM INDEX (homepage) ── */

.svc-index { background: var(--bg); padding: 130px 0 0; }
.svc-index-header { margin-bottom: 72px; }
.svc-index-header h2 {
  font-size: clamp(2.5rem, 5.2vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.98;
  color: #fff;
  max-width: 880px;
}

.svc-rows { border-top: 1px solid var(--border-dark); }
.svc-row {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1.25fr) minmax(0, 1fr) 56px;
  gap: 32px; align-items: center;
  padding: 38px 0;
  border-bottom: 1px solid var(--border-dark);
  text-decoration: none;
  overflow: hidden;
}
.svc-row-mark {
  width: 9px; height: 9px;
  background: var(--row-c);
  opacity: 0.55;
  transition: opacity 0.25s, transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.svc-row:hover .svc-row-mark { opacity: 1; transform: scale(1.45); }
.svc-row-name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.0;
  color: #fff;
  transition: color 0.25s;
}
.svc-row-desc {
  font-family: var(--font-body);
  font-size: 0.9375rem; line-height: 1.6;
  color: rgba(255,255,255,0.55);
  max-width: 46ch;
}
.svc-row-arrow {
  justify-self: end;
  margin-right: 10px; /* room for the +6px hover shift inside the clipped row */
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.45);
  font-size: 1.1rem;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), border-color 0.25s, color 0.25s, background 0.25s;
}

/* dot-trail: an accent signal running beneath the service name */
.svc-row::after {
  content: '';
  position: absolute; left: 104px; bottom: 24px;
  width: min(36%, 430px); height: 8px;
  transform: translateX(-34px);
  background-image: radial-gradient(circle, var(--row-c) 1.6px, transparent 1.7px);
  background-size: 14px 8px;
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 65%, transparent);
          mask-image: linear-gradient(to right, #000 0%, #000 65%, transparent);
  opacity: 0;
  transition: opacity 0.35s, transform 0.5s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}
.svc-row:hover::after { opacity: 0.8; transform: translateX(0); }
.svc-row:hover .svc-row-name  { color: var(--row-c); }
.svc-row:hover .svc-row-arrow { border-color: var(--row-c); color: var(--row-c); transform: translateX(6px); }
.svc-row:focus-visible { outline: 2px solid var(--row-c); outline-offset: -2px; }
.svc-row--s1 { --row-c: var(--s1); }
.svc-row--s2 { --row-c: var(--s2); }
.svc-row--s3 { --row-c: var(--s3); }
.svc-row--s4 { --row-c: var(--s4); }
.svc-row--s5 { --row-c: var(--s5); }

/* ── THE SYSTEM FIELD — mid-page focal moment ── */

.sysfield-band { padding: 110px 0 130px; background: var(--bg); }
.sysfield-statement {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: rgba(255,255,255,0.92);
  max-width: 700px;
  margin-bottom: 64px;
}
.sysfield-statement em {
  font-style: normal;
  color: rgba(255,255,255,0.45);
}
.sysfield-wrap {
  position: relative;
  border: 1px solid var(--border-dark);
  background: #121212;
  overflow: hidden;
}
#sysfield {
  display: block;
  width: 100%; height: 520px;
}
.sysfield-label {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.85);
  background: rgba(15,15,15,0.72);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 7px 12px;
  pointer-events: none;
  white-space: nowrap;
}
.sysfield-label .ldot { width: 7px; height: 7px; flex-shrink: 0; }
.sysfield-hub {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-mono); font-size: 0.6875rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(15,15,15,0.85);
  padding: 9px 14px;
  pointer-events: none;
  white-space: nowrap;
}

/* ── SYSTEM STATEMENT (dark 2-col) ── */

.system-statement {
  background: var(--bg); padding: 86px 40px 72px;
  overflow: hidden;
}
.system-statement-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.system-statement h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.05; color: #fff; margin-bottom: 24px;
}
.system-statement > .system-statement-inner > div > p {
  font-size: 1.0625rem; color: rgba(255,255,255,0.65);
  line-height: 1.75; margin-bottom: 36px;
  font-family: var(--font-body); font-weight: 400;
}
.system-services-list {
  display: flex; flex-direction: column; gap: 10px;
  list-style: none; padding: 0; margin: 0;
}
.system-services-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9375rem; color: rgba(255,255,255,0.70);
  font-family: var(--font-body); font-weight: 400;
}
.system-services-list li::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  background: var(--dot-c, rgba(255,255,255,0.2));
}
.system-visual { position: relative; }
.system-visual svg { width: 100%; height: auto; display: block; border-radius: 10px; }

/* ── STARTER OFFERS — featured monolith + ledger (homepage) ── */

.offers { background: var(--bg); padding: 130px 0; }
.offers-header { margin-bottom: 64px; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.offers-header h2 {
  font-size: clamp(2.5rem, 5.2vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.98;
  color: #fff;
}
.offers-header p {
  font-size: 1.0625rem; line-height: 1.6;
  color: rgba(255,255,255,0.55);
  max-width: 380px; margin-bottom: 8px;
  font-family: var(--font-body);
}

.offers-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 12px;
  align-items: stretch;
}

/* featured monolith */
.offer-feat {
  position: relative;
  display: flex; flex-direction: column;
  padding: 44px 40px;
  background: #161214;
  border: 1px solid rgba(220,38,38,0.35);
  text-decoration: none;
  overflow: hidden;
  min-height: 480px;
  transition: border-color 0.25s;
}
.offer-feat:hover { border-color: rgba(220,38,38,0.7); }
.offer-feat-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 110% 80% at 80% 110%, rgba(220,38,38,0.30) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 15% -10%, rgba(255,107,107,0.12) 0%, transparent 55%);
}
.offer-feat-dots {
  position: absolute; inset: auto 0 0 0; height: 55%;
  background-image: radial-gradient(circle, rgba(255,120,120,0.5) 1.4px, transparent 1.5px);
  background-size: 13px 13px;
  -webkit-mask-image: linear-gradient(to top, #000 10%, transparent 95%);
          mask-image: linear-gradient(to top, #000 10%, transparent 95%);
  opacity: 0.5;
  pointer-events: none;
}
.offer-feat-tag {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  font-family: var(--font-mono); font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: #ffb4b4;
  margin-bottom: 28px;
}
.offer-feat-tag::before { content: ''; width: 7px; height: 7px; background: var(--s4); }
.offer-feat h3 {
  position: relative;
  font-size: clamp(1.75rem, 2.6vw, 2.375rem);
  font-weight: 500; line-height: 1.05;
  color: #fff; margin-bottom: 18px;
  max-width: 380px;
}
.offer-feat p {
  position: relative;
  font-size: 1rem; line-height: 1.65;
  color: rgba(255,255,255,0.70);
  max-width: 400px;
  margin-bottom: auto;
  font-family: var(--font-body);
}
.offer-feat-price {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 600; letter-spacing: -0.03em; line-height: 1;
  color: #fff;
  margin: 40px 0 6px;
}
.offer-feat-price small {
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.02em; color: rgba(255,255,255,0.45);
  margin-left: 10px; text-transform: uppercase;
}
.offer-feat-cta {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  align-self: flex-start;
  margin-top: 26px;
  background: #fff; color: #0f0f0f;
  font-family: var(--font-mono); font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: -0.011em;
  padding: 13px 24px;
  transition: background 0.15s;
}
.offer-feat:hover .offer-feat-cta { background: #ffecec; }

/* ledger rows */
.offer-ledger { display: flex; flex-direction: column; gap: 12px; }
.offer-line {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr) auto;
  gap: 28px; align-items: center;
  padding: 30px 34px;
  background: var(--bg);
  border: 1px solid var(--border-dark);
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s;
  overflow: hidden;
}
.offer-line:hover { border-color: var(--line-c); background: #131313; }
.offer-line::before {
  content: '';
  position: absolute; top: -1px; left: -1px;
  width: 9px; height: 9px;
  background: var(--line-c);
  opacity: 0;
  transition: opacity 0.25s;
}
.offer-line:hover::before { opacity: 1; }
.offer-line--s1 { --line-c: var(--s1); }
.offer-line--s2 { --line-c: var(--s2); }
.offer-line--s5 { --line-c: var(--s5); }
.offer-line-name {
  font-family: var(--font-display);
  font-size: 1.4375rem; font-weight: 500;
  letter-spacing: -0.02em; line-height: 1.1;
  color: #fff;
}
.offer-line-desc {
  font-size: 0.875rem; line-height: 1.55;
  color: rgba(255,255,255,0.52);
  font-family: var(--font-body);
}
.offer-line-price {
  font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 600;
  letter-spacing: -0.025em;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
  justify-self: end;
  transition: color 0.25s;
}
.offer-line:hover .offer-line-price { color: var(--line-c); }

/* ── CTA SECTION — the system bookend ── */

.cta-section {
  background: var(--bg); padding: 170px 40px 180px;
  overflow: hidden;
}
#cta-terminal-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.cta-veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to bottom, var(--bg) 0%, rgba(15,15,15,0.30) 35%, rgba(15,15,15,0.30) 70%, var(--bg) 100%),
    radial-gradient(ellipse 75% 60% at 50% 55%, rgba(15,15,15,0.55) 0%, transparent 75%);
}
.cta-inner {
  position: relative; z-index: 2;
  max-width: 1240px; margin: 0 auto;
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(2.75rem, 6.5vw, 5.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.98; color: #fff;
  margin: 0 auto 28px;
  text-wrap: balance; max-width: 900px;
}
.cta-section > .cta-inner > p {
  font-size: 1.125rem; color: rgba(255,255,255,0.70);
  line-height: 1.65; margin: 0 auto 52px; max-width: 520px;
  font-family: var(--font-body); font-weight: 400;
}
.cta-inner .btn-primary { padding: 16px 32px; font-size: 0.9375rem; }

/* ── FOOTER ── */

.footer {
  background: var(--bg);
  border-top: 1px solid var(--border-dark);
  padding: 60px 40px 36px;
}
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid var(--border-dark); margin-bottom: 28px;
}
.footer-brand { color: #fff; }
.footer-brand svg { height: 24px; width: auto; }
.footer-brand svg g path { fill: #fff; }
.footer-brand p {
  font-size: 0.875rem; color: rgba(255,255,255,0.50);
  line-height: 1.6; margin-top: 12px; max-width: 260px;
  font-family: var(--font-body); font-weight: 400;
}
.footer-sig { display: inline-flex; gap: 6px; margin-top: 26px; }
.footer-sig span { width: 6px; height: 6px; }
.footer-col h4 {
  font-family: var(--font-mono); font-size: 0.8125rem; font-weight: 400;
  letter-spacing: -0.011em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 16px;
}
.footer-col ul  { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-family: var(--font-mono); font-size: 0.8125rem;
  text-transform: uppercase; letter-spacing: -0.011em;
  color: rgba(255,255,255,0.70);
  text-decoration: none; transition: color 0.15s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-family: var(--font-mono); font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { font-family: var(--font-mono); color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.70); }
.footer-bottom .footer-fineprint { text-align: right; margin: 0; }

/* ── INNER PAGE HERO ── */

.inner-hero {
  background: var(--bg);
  padding: 100px 40px 72px;
}
.inner-hero-inner { max-width: 780px; margin: 0 auto; }
.inner-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.04; color: #fff; margin-bottom: 16px;
}
.inner-hero .page-sub {
  font-size: 1.125rem; line-height: 1.68;
  color: rgba(255,255,255,0.50); max-width: 620px;
  font-family: var(--font-body); font-weight: 400; letter-spacing: 0;
}

/* ── SERVICES OVERVIEW PAGE ── */

.services-overview-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.svc-full-card {
  background: var(--gb-bg-soft); border: 1px solid var(--gb-border);
  border-radius: 0; padding: 32px 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.2s; text-decoration: none;
}
.svc-full-card:hover { border-color: #b0b0b8; }
.svc-full-card h3 { font-size: 1rem; color: var(--gb-text); line-height: 1.3; }
.svc-full-card .svc-desc {
  font-size: 0.875rem; color: var(--gb-text-muted); line-height: 1.65; flex: 1;
  font-family: var(--font-body); font-weight: 400;
}
.svc-full-card .svc-cta {
  font-size: 0.83rem; font-weight: 400; color: var(--gb-text-muted);
  display: inline-flex; align-items: center; gap: 4px; margin-top: 4px;
}

/* ── STARTER OFFERS DETAIL PAGE ── */

.offers-detail-intro {
  max-width: 640px; font-size: 1rem; color: var(--gb-text-muted);
  line-height: 1.7; margin-bottom: 48px;
  font-family: var(--font-body); font-weight: 400;
}
.offers-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.offer-detail-card {
  background: var(--gb-bg-soft); border: 1px solid var(--gb-border);
  border-radius: 0; padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.offer-detail-card .offer-tag {
  display: inline-block;
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 400;
  letter-spacing: -0.011em; text-transform: uppercase;
  background: rgba(255,107,107,0.1); color: var(--s1);
  padding: 3px 11px; border-radius: 0; align-self: flex-start;
}
.offer-detail-card h3 { font-size: 1.05rem; color: var(--gb-text); line-height: 1.3; }
.offer-detail-card .offer-desc {
  font-size: 0.875rem; color: var(--gb-text-muted); line-height: 1.65; flex: 1;
  font-family: var(--font-body); font-weight: 400;
}
.offer-detail-card .offer-meta {
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
}
.offer-detail-card .offer-duration { font-size: 0.8rem; color: var(--gb-text-muted); font-family: var(--font-body); }
.offer-detail-card .offer-price-text { font-size: 0.95rem; font-weight: 400; color: var(--gb-text); }

/* ── ABOUT PAGE ── */

.about-intro {
  font-size: 1.1rem; color: var(--gb-text); line-height: 1.75;
  max-width: 700px; margin-bottom: 56px;
  font-family: var(--font-body); font-weight: 400;
}
.about-blocks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-bottom: 48px; }
.about-block { display: flex; flex-direction: column; gap: 10px; }
.about-block .block-label {
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 400;
  letter-spacing: -0.011em; text-transform: uppercase; color: var(--gb-text-muted);
}
.about-block h3 { font-size: 1.05rem; color: var(--gb-text); line-height: 1.3; }
.about-block p { font-size: 0.9rem; color: var(--gb-text-muted); line-height: 1.75; font-family: var(--font-body); font-weight: 400; }
.expertise-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.expertise-tag {
  font-family: var(--font-mono); font-size: 0.8rem; font-weight: 400;
  letter-spacing: -0.011em; text-transform: uppercase;
  background: var(--gb-bg-soft); border: 1px solid var(--gb-border);
  color: var(--gb-text-muted); padding: 5px 12px; border-radius: 0;
}

/* ── CONTACT PAGE ── */

.contact-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: start; }
.contact-form-area h2 { font-size: 1.5rem; color: var(--gb-text); margin-bottom: 8px; }
.contact-form-area .contact-sub {
  font-size: 0.95rem; color: var(--gb-text-muted); line-height: 1.65;
  margin-bottom: 32px; font-family: var(--font-body);
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.83rem; font-weight: 500; color: var(--gb-text); font-family: var(--font-body); }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--gb-bg-soft); border: 1px solid var(--gb-border);
  border-radius: 0; padding: 11px 14px;
  font-family: var(--font-body); font-size: 0.9rem;
  color: var(--gb-text); width: 100%;
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--s1); box-shadow: 0 0 0 3px rgba(255,107,107,0.08); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-submit-btn {
  background: var(--gb-black); color: #fff;
  border: none; cursor: pointer;
  padding: 11px 20px; border-radius: 0;
  font-family: var(--font-mono); font-size: 0.875rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: -0.011em;
  align-self: flex-start; transition: background 0.15s;
}
.form-submit-btn:hover { background: #1c1c1c; }
.contact-info-area h2 { font-size: 1.3rem; color: var(--gb-text); margin-bottom: 28px; }
.contact-info-list { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--gb-bg-soft); border: 1px solid var(--gb-border);
  border-radius: 0; display: flex; align-items: center; justify-content: center;
}
.info-icon svg { width: 20px; height: 20px; stroke: var(--gb-text-muted); fill: none; }
.info-text h4 { font-size: 0.875rem; color: var(--gb-text); margin-bottom: 3px; }
.info-text p, .info-text a { font-size: 0.9rem; color: var(--gb-text-muted); text-decoration: none; font-family: var(--font-body); }
.info-text a:hover { color: var(--gb-text); }
.booking-card { background: var(--gb-bg-soft); border: 1px solid var(--gb-border); border-radius: 0; padding: 28px 24px; }
.booking-card h3 { font-size: 1rem; color: var(--gb-text); margin-bottom: 8px; }
.booking-card p { font-size: 0.875rem; color: var(--gb-text-muted); line-height: 1.65; margin-bottom: 16px; font-family: var(--font-body); }

/* ── SERVICE DETAIL PAGES ── */

.svc-detail-intro { max-width: 720px; }
.svc-detail-intro p { font-size: 1.05rem; color: var(--gb-text); line-height: 1.8; margin-bottom: 1.1rem; font-family: var(--font-body); font-weight: 400; }
.svc-detail-intro p:last-child { margin-bottom: 0; }

/* (old light service-detail blocks removed 2026-06-13 — service pages now use
   the sp-* system grammar below; .svc-detail-intro kept for paketti/palvelut) */

/* ── APPROACH — oversized principles (homepage) ── */

.approach { background: var(--bg); padding: 0 0 130px; }
.approach-rule { border-top: 1px solid var(--border-dark); margin-bottom: 110px; }
.approach-grid {
  display: grid; grid-template-columns: 2fr 3fr;
  gap: 80px; align-items: start;
}
.approach-left { position: sticky; top: 96px; }
.approach-left h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 600; letter-spacing: -0.025em;
  line-height: 1.02; color: #fff;
}
.approach-right { display: flex; flex-direction: column; }
.approach-item {
  position: relative;
  padding: 44px 0 44px 96px;
  border-bottom: 1px solid var(--border-dark);
}
.approach-item:first-child { border-top: 1px solid var(--border-dark); }
.approach-idx {
  position: absolute; left: 0; top: 42px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.30);
  letter-spacing: 0.02em;
}
.approach-idx::after {
  content: '';
  display: block;
  width: 26px; height: 1px;
  background: rgba(255,255,255,0.18);
  margin-top: 10px;
}
.approach-item-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.125rem);
  font-weight: 500; letter-spacing: -0.022em; line-height: 1.1;
  color: #fff; margin-bottom: 14px;
}
.approach-item-body {
  font-size: 1rem; line-height: 1.7;
  color: rgba(255,255,255,0.60);
  max-width: 52ch;
  font-family: var(--font-body);
}

/* ── SCROLL REVEALS — enhance only, never gate (gb-home.js) ── */

.reveal { opacity: 1; transform: none; }
html.js .reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
html.js .reveal.in { opacity: 1; transform: none; }
html.js .reveal-d1.in { transition-delay: 0.07s; }
html.js .reveal-d2.in { transition-delay: 0.14s; }
html.js .reveal-d3.in { transition-delay: 0.21s; }
html.js .reveal-d4.in { transition-delay: 0.28s; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── ACCESSIBILITY ── */

.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.btn-outline:focus-visible,
.btn-dark:focus-visible,
.nav-cta:focus-visible,
.form-submit-btn:focus-visible {
  outline: 2px solid var(--s1);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ── RESPONSIVE — TABLET (≤900px) ── */

@media (max-width: 900px) {
  .nav {
    position: sticky; top: 0;
    left: 0; transform: none;
    width: 100%; max-width: none;
    border-radius: 0;
    border-left: none; border-right: none; border-top: none;
    border-bottom: 1px solid var(--border-mid);
  }
  .nav-links    { display: none; }
  .nav-hamburger { display: flex; }

  .hero-inner   { padding: 30px 24px 64px; text-align: center !important; }
  .hero-tagline, .hero-sub { text-align: center !important; margin-left: auto; margin-right: auto; overflow-wrap: break-word; }

  .section      { padding: 64px 24px; }
  .container    { padding: 0 24px; }

  .system-statement { padding: 64px 24px; }
  .system-statement-inner { grid-template-columns: 1fr; gap: 48px; }
  .system-visual { display: none; }

  .footer { padding: 48px 24px 28px; }
  .footer-top   { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .contact-layout      { grid-template-columns: 1fr; gap: 48px; }
  .offers-detail-grid  { grid-template-columns: 1fr; }
  .services-overview-grid { grid-template-columns: 1fr; }
  .about-blocks { grid-template-columns: 1fr; gap: 28px; }
  .inner-hero   { padding: 72px 24px 56px; }

  /* services index */
  .svc-index { padding: 80px 0 0; }
  .svc-index-header { margin-bottom: 48px; }
  .svc-row { grid-template-columns: 48px 1fr 44px; gap: 18px; padding: 30px 0; }
  .svc-row-desc { display: none; }
  .svc-row::after { display: none; }
  .svc-row-arrow { width: 38px; height: 38px; }

  /* system field */
  .sysfield-band { padding: 80px 0 90px; }
  .sysfield-statement { margin-bottom: 40px; }
  #sysfield { height: 380px; }
  .sysfield-label { font-size: 0.625rem; padding: 5px 8px; gap: 6px; }
  .sysfield-hub { font-size: 0.5625rem; padding: 6px 9px; }

  /* offers */
  .offers { padding: 90px 0; }
  .offers-header { margin-bottom: 40px; }
  .offers-grid { grid-template-columns: 1fr; }
  .offer-feat { min-height: 420px; padding: 32px 26px; }
  .offer-line { grid-template-columns: 1fr auto; padding: 24px 24px; }
  .offer-line-desc { display: none; }

  /* approach */
  .approach { padding: 0 0 90px; }
  .approach-rule { margin-bottom: 72px; }
  .approach-grid  { grid-template-columns: 1fr; gap: 40px; }
  .approach-left  { position: static; }
  .approach-item  { padding: 32px 0 32px 64px; }
  .approach-idx   { top: 32px; }

  .cta-section  { padding: 110px 24px 120px; }

  .services-list-item { grid-template-columns: 1fr; gap: 14px; padding: 28px 0; }
  .sli-right { gap: 12px; }
  .sli-arrow { display: none; }
}

/* offers grid collapses earlier than the 900px breakpoint */
@media (max-width: 1024px) and (min-width: 901px) {
  .offers-grid { grid-template-columns: 1fr; }
  .offer-feat { min-height: 420px; }
}

/* ── RESPONSIVE — MOBILE (≤600px) ── */

@media (max-width: 600px) {
  .hero h1       { letter-spacing: -0.02em; }
  .hero-actions  { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { justify-content: center; }

  .footer-top    { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 38px 1fr 38px; }
  .offer-feat-price { font-size: 2.75rem; }
  .sli-name { font-size: 1.5rem !important; }
}

/* ════════════════════════════════════════════════════════════════════
   SERVICE PAGES — "Jatkuva järjestelmä" (services-system-v1, 2026-06-13)
   Inner pages stay on the homepage's continuous dark canvas. Each page
   owns ONE accent (--acc), set by the sp--sN class on every section.
   Approved prototype: _assets/service-page-vA-dark.html
   ════════════════════════════════════════════════════════════════════ */

.sp--s1 { --acc: var(--s1); }
.sp--s2 { --acc: var(--s2); }
.sp--s3 { --acc: var(--s3); }
.sp--s4 { --acc: var(--s4); }
.sp--s5 { --acc: var(--s5); }

.acc-sq { width: 8px; height: 8px; background: var(--acc); flex-shrink: 0; display: inline-block; }

/* ── INNER HERO — the homepage row, expanded into a page ── */

.sp-hero {
  background: var(--bg);
  padding: 168px 0 0;
  overflow: hidden;
}
.sp-hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 8% 0%, color-mix(in srgb, var(--acc) 14%, transparent) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 95% 20%, color-mix(in srgb, var(--acc) 5%, transparent) 0%, transparent 55%);
  pointer-events: none;
}
.sp-hero .container { position: relative; }
.sp-hero-meta {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.42);
  margin-bottom: 36px;
}
.sp-hero-meta .sep { color: rgba(255,255,255,0.22); }
.sp-hero-meta .crumb-svc { color: rgba(255,255,255,0.85); }
.sp-hero h1 {
  font-size: clamp(2.125rem, 4.8vw, 3.875rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: #fff;
  max-width: 1000px;
  hyphens: auto;
  margin-bottom: 30px;
}
/* the signal trail — homepage hover state, made permanent */
.sp-hero-trail {
  height: 8px;
  width: min(44%, 480px);
  background-image: radial-gradient(circle, var(--acc) 1.6px, transparent 1.7px);
  background-size: 14px 8px;
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 60%, transparent);
          mask-image: linear-gradient(to right, #000 0%, #000 60%, transparent);
  opacity: 0.85;
  margin-bottom: 44px;
}
.sp-hero-sub {
  font-size: 1.3125rem; line-height: 1.6;
  color: rgba(255,255,255,0.70);
  max-width: 56ch;
  text-wrap: pretty;
  padding-bottom: 88px;
  font-family: var(--font-body); font-weight: 400;
}
.sp-hero-rule { border-top: 1px solid var(--border-dark); }

/* ── INTRO — editorial lede ── */

.sp-intro { background: var(--bg); padding: 100px 0 110px; }
.sp-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: 64px;
  align-items: start;
}
.sp-intro-side { position: sticky; top: 110px; }
.sp-intro-side .sysdots { margin-bottom: 0; }
.sp-intro-text p:first-child {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.2vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.4;
  color: rgba(255,255,255,0.92);
  margin-bottom: 36px;
}
.sp-intro-text p {
  font-size: 1.0625rem; line-height: 1.75;
  color: rgba(255,255,255,0.62);
  max-width: 62ch;
  margin-bottom: 24px;
  font-family: var(--font-body); font-weight: 400;
}
.sp-intro-text p:last-child { margin-bottom: 0; }

/* ── QUESTIONS — focal panel (the System Field's quiet cousin) ── */

.sp-questions { background: var(--bg); padding: 0 0 120px; }
.sp-q-panel {
  position: relative;
  border: 1px solid var(--border-dark);
  background: #121212;
  padding: 64px 64px 56px;
  overflow: hidden;
}
.sp-q-panel::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 46%; height: 75%;
  background-image: radial-gradient(circle, var(--acc) 1.4px, transparent 1.5px);
  background-size: 15px 15px;
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 100% 0%, #000 0%, transparent 70%);
          mask-image: radial-gradient(ellipse 100% 100% at 100% 0%, #000 0%, transparent 70%);
  opacity: 0.28;
  pointer-events: none;
}
.sp-q-lead {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.125rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #fff;
  max-width: 26ch;
  margin-bottom: 48px;
}
.sp-q-list { position: relative; list-style: none; padding: 0; margin: 0; border-top: 1px solid rgba(255,255,255,0.10); }
.sp-q-list li {
  display: flex; align-items: baseline; gap: 18px;
  padding: 20px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  font-size: 1.0625rem; line-height: 1.55;
  color: rgba(255,255,255,0.72);
  max-width: 75ch;
  font-family: var(--font-body); font-weight: 400;
}
.sp-q-list li::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--acc);
  flex-shrink: 0;
  transform: translateY(-1px);
}

/* ── SECTION HEADER GRAMMAR — rule + mono label, then H2 / sub pair ── */

.sp-body { background: var(--bg); padding: 0 0 120px; }
.sp-body--last { padding-bottom: 140px; }
.sp-sec-rule {
  border-top: 1px solid var(--border-dark);
  padding-top: 14px;
  margin-bottom: 44px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  min-height: 22px;
}
.sp-sec-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.42);
}
.sp-sec-label::before { content: ''; width: 7px; height: 7px; background: var(--acc); }
.sp-sec-head {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 48px; align-items: end;
  margin-bottom: 56px;
}
.sp-sec-head h2 {
  font-size: clamp(1.875rem, 3.4vw, 2.875rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: #fff;
}
.sp-sec-sub {
  font-size: 1rem; line-height: 1.65;
  color: rgba(255,255,255,0.55);
  max-width: 44ch;
  justify-self: end;
  margin-bottom: 4px;
  font-family: var(--font-body); font-weight: 400;
}

/* ── STATEMENT — display-scale claim inside a section (pilots intro) ── */

.sp-statement {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.125rem);
  font-weight: 500; letter-spacing: -0.02em; line-height: 1.2;
  color: #fff;
  max-width: 30ch;
  margin-bottom: 10px;
}
.sp-statement-sub {
  font-family: var(--font-mono); font-size: 0.8125rem;
  text-transform: uppercase; letter-spacing: 0.03em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
}
.sp-statement-body {
  font-size: 1.0625rem; line-height: 1.75;
  color: rgba(255,255,255,0.62);
  max-width: 62ch;
  margin-bottom: 48px;
  font-family: var(--font-body); font-weight: 400;
}

/* ── INCLUDES — the spec sheet ── */

.sp-inc-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 56px;
  border-top: 1px solid var(--border-dark);
}
.sp-inc-list--single { grid-template-columns: 1fr; }
.sp-inc-list li {
  display: flex; align-items: baseline; gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9375rem; line-height: 1.55;
  color: rgba(255,255,255,0.68);
  font-family: var(--font-body); font-weight: 400;
}
.sp-inc-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--acc);
  opacity: 0.65;
  flex-shrink: 0;
  transform: translateY(-1px);
}

/* ── TIERS / PILLARS — editorial rows, never card grids ── */

.sp-tiers { border-top: 1px solid var(--border-dark); }
.sp-tier {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 56px;
  padding: 44px 0;
  border-bottom: 1px solid var(--border-dark);
}
.sp-tier-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.42);
  margin-bottom: 16px;
}
.sp-tier-badge::before { content: ''; width: 7px; height: 7px; background: var(--acc); }
.sp-tier h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.125rem);
  font-weight: 500; letter-spacing: -0.022em; line-height: 1.1;
  color: #fff;
}
.sp-tier-body p {
  font-size: 1rem; line-height: 1.7;
  color: rgba(255,255,255,0.62);
  max-width: 56ch;
  font-family: var(--font-body); font-weight: 400;
}
.sp-tier-body p + p { margin-top: 16px; }
.sp-tier-body .sp-inc-list { margin-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.sp-tier-body a {
  color: rgba(255,255,255,0.78);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}
.sp-tier-body a:hover { color: #fff; }

/* ── PLATFORMS — mono chips strip (SEO page) ── */

.sp-platforms { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 48px; }
.sp-platforms span {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.12);
  background: #121212;
  padding: 9px 14px;
  white-space: nowrap;
}
.sp-platforms span::before { content: ''; width: 7px; height: 7px; background: var(--acc); flex-shrink: 0; }

/* ── NOTE — quiet bordered panel for connections + caveats ── */

.sp-note {
  margin-top: 48px;
  border: 1px solid var(--border-dark);
  background: #121212;
  padding: 28px 32px;
  font-size: 0.9375rem; line-height: 1.7;
  color: rgba(255,255,255,0.60);
  font-family: var(--font-body); font-weight: 400;
  max-width: none;
}
.sp-note strong { color: rgba(255,255,255,0.85); font-weight: 500; }
.sp-note a { color: rgba(255,255,255,0.78); text-decoration: underline; text-underline-offset: 3px; }
.sp-note a:hover { color: #fff; }

/* ── DUO — paired states (maturity basic/mature) ── */

.sp-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 48px; }
.sp-duo-cell {
  border: 1px solid var(--border-dark);
  background: #121212;
  padding: 32px 30px;
}
.sp-duo-cell--lit { border-color: color-mix(in srgb, var(--acc) 35%, transparent); }
.sp-duo-label {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.42);
  margin-bottom: 18px;
}
.sp-duo-cell--lit .sp-duo-label { color: color-mix(in srgb, var(--acc) 70%, #fff); }
.sp-duo-label::before { content: ''; width: 7px; height: 7px; background: rgba(255,255,255,0.3); }
.sp-duo-cell--lit .sp-duo-label::before { background: var(--acc); }
.sp-duo-cell h3 {
  font-size: 1.25rem; font-weight: 500;
  letter-spacing: -0.015em; line-height: 1.2;
  color: #fff; margin-bottom: 12px;
}
.sp-duo-cell p {
  font-size: 0.9375rem; line-height: 1.65;
  color: rgba(255,255,255,0.62);
  font-family: var(--font-body); font-weight: 400;
}
.sp-duo-note {
  grid-column: 1 / -1;
  font-size: 0.875rem; line-height: 1.6;
  color: rgba(255,255,255,0.50);
  padding-top: 6px;
  font-family: var(--font-body); font-weight: 400;
}
.sp-duo-note a { color: rgba(255,255,255,0.78); text-decoration: underline; text-underline-offset: 3px; }
.sp-duo-note a:hover { color: #fff; }

/* ── AUDIENCE — display-scale index rows ── */

.sp-aud-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--border-dark); }
.sp-aud-list li {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 24px; align-items: baseline;
  padding: 26px 0;
  border-bottom: 1px solid var(--border-dark);
  font-family: var(--font-display);
  font-size: clamp(1.0625rem, 1.6vw, 1.3125rem);
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.4;
  color: rgba(255,255,255,0.85);
  max-width: 1020px;
}
.sp-aud-list li::before {
  content: '→';
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--acc);
  justify-self: start;
  transform: translateY(-1px);
}

/* ── OFFERS — monolith + quiet panel, in the page's accent ── */

.sp-offers-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 12px;
  align-items: stretch;
}
.sp-offer-feat {
  position: relative;
  display: flex; flex-direction: column;
  padding: 48px 44px;
  background: color-mix(in srgb, var(--acc) 5%, #101010);
  border: 1px solid color-mix(in srgb, var(--acc) 35%, transparent);
  overflow: hidden;
  min-height: 460px;
  transition: border-color 0.25s;
}
.sp-offer-feat:hover { border-color: color-mix(in srgb, var(--acc) 70%, transparent); }
.sp-offer-feat--solo { min-height: 0; margin-top: 8px; }
.sp-offer-feat-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 110% 80% at 85% 110%, color-mix(in srgb, var(--acc) 22%, transparent) 0%, transparent 60%);
}
.sp-offer-feat-dots {
  position: absolute; inset: auto 0 0 0; height: 52%;
  background-image: radial-gradient(circle, var(--acc) 1.4px, transparent 1.5px);
  background-size: 13px 13px;
  -webkit-mask-image: linear-gradient(to top, #000 8%, transparent 95%);
          mask-image: linear-gradient(to top, #000 8%, transparent 95%);
  opacity: 0.34;
  pointer-events: none;
}
.sp-offer-tag {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  font-family: var(--font-mono); font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: color-mix(in srgb, var(--acc) 70%, #fff);
  margin-bottom: 30px;
}
.sp-offer-tag::before { content: ''; width: 7px; height: 7px; background: var(--acc); }
.sp-offer-feat h3 {
  position: relative;
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 500; line-height: 1.05;
  letter-spacing: -0.022em;
  color: #fff; margin-bottom: 20px;
  max-width: 420px;
}
.sp-offer-feat > p {
  position: relative;
  font-size: 1rem; line-height: 1.7;
  color: rgba(255,255,255,0.72);
  max-width: 46ch;
  margin-bottom: auto;
  font-family: var(--font-body); font-weight: 400;
}
.sp-offer-price {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 600; letter-spacing: -0.025em; line-height: 1;
  color: #fff;
  margin: 44px 0 0;
}
.sp-offer-price small {
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.02em; color: rgba(255,255,255,0.45);
  margin-left: 10px; text-transform: uppercase;
}
.sp-offer-cta {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  align-self: flex-start;
  margin-top: 28px;
  background: #fff; color: #0f0f0f;
  font-family: var(--font-mono); font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: -0.011em;
  padding: 13px 24px;
  text-decoration: none;
  transition: background 0.15s;
}
.sp-offer-cta:hover { background: #f0f0f0; }

.sp-offer-side {
  position: relative;
  display: flex; flex-direction: column;
  padding: 48px 40px;
  background: var(--bg);
  border: 1px solid var(--border-dark);
  overflow: hidden;
  transition: border-color 0.25s, background 0.25s;
}
.sp-offer-side:hover { border-color: color-mix(in srgb, var(--acc) 45%, transparent); background: #131313; }
.sp-offer-side::before {
  content: '';
  position: absolute; top: -1px; left: -1px;
  width: 9px; height: 9px;
  background: var(--acc);
  opacity: 0;
  transition: opacity 0.25s;
}
.sp-offer-side:hover::before { opacity: 1; }
.sp-offer-side--wide { margin-top: 8px; }
.sp-offer-side .sp-offer-tag { color: rgba(255,255,255,0.5); }
.sp-offer-side .sp-offer-tag::before { background: rgba(255,255,255,0.3); }
.sp-offer-side:hover .sp-offer-tag { color: color-mix(in srgb, var(--acc) 70%, #fff); }
.sp-offer-side:hover .sp-offer-tag::before { background: var(--acc); }
.sp-offer-side h3 {
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  font-weight: 500; line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff; margin-bottom: 18px;
}
.sp-offer-side > p {
  font-size: 0.9375rem; line-height: 1.7;
  color: rgba(255,255,255,0.62);
  margin-bottom: auto;
  max-width: 62ch;
  font-family: var(--font-body); font-weight: 400;
}
.sp-offer-side .sp-offer-price { font-size: clamp(1.5rem, 2.2vw, 1.875rem); margin-top: 36px; }
.sp-offer-side-cta {
  display: inline-flex; align-items: center; gap: 10px;
  align-self: flex-start;
  margin-top: 24px;
  background: transparent; color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.28);
  font-family: var(--font-mono); font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: -0.011em;
  padding: 12px 22px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.sp-offer-side-cta:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); }

/* ── FOOTNOTE — quiet closing pointer ── */

.sp-footnote {
  margin-top: 28px;
  font-size: 0.9375rem; line-height: 1.6;
  color: rgba(255,255,255,0.50);
  font-family: var(--font-body); font-weight: 400;
}
.sp-footnote a { color: rgba(255,255,255,0.78); text-decoration: underline; text-underline-offset: 3px; }
.sp-footnote a:hover { color: #fff; }

/* ── SERVICE PAGES — responsive ── */

@media (max-width: 1024px) {
  .sp-offers-grid { grid-template-columns: 1fr; }
  .sp-offer-feat { min-height: 400px; }
  .sp-offer-feat--solo { min-height: 0; }
}

@media (max-width: 900px) {
  .sp-hero { padding-top: 72px; }
  .sp-hero h1 { font-size: clamp(1.875rem, 7.4vw, 2.5rem); }
  .sp-hero-sub { font-size: 1.125rem; padding-bottom: 60px; }
  .sp-hero-trail { margin-bottom: 32px; }

  .sp-intro { padding: 70px 0 80px; }
  .sp-intro-grid { grid-template-columns: 1fr; gap: 28px; }
  .sp-intro-side { position: static; }

  .sp-questions { padding-bottom: 80px; }
  .sp-q-panel { padding: 36px 26px 32px; }
  .sp-q-list li { font-size: 0.975rem; }

  .sp-body { padding-bottom: 80px; }
  .sp-body--last { padding-bottom: 100px; }
  .sp-sec-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 36px; }
  .sp-sec-sub { justify-self: start; }
  .sp-sec-rule { margin-bottom: 32px; }

  .sp-inc-list { grid-template-columns: 1fr; }
  .sp-tier { grid-template-columns: 1fr; gap: 20px; padding: 32px 0; }
  .sp-duo { grid-template-columns: 1fr; }
  .sp-aud-list li { grid-template-columns: 36px 1fr; gap: 14px; padding: 20px 0; }

  .sp-offer-feat { padding: 34px 26px; }
  .sp-offer-side { padding: 34px 26px; }
  .sp-note { padding: 22px 22px; }
}

/* ════════════════════════════════════════════════════════════════════
   CONTACT PAGE — "Jatkuva järjestelmä" (contact-system-v1, 2026-06-13)
   The convergence page: every service path ends here, so it wears the
   brand's own coral (--s1, the logo dot) as its single accent via
   sp--s1, while the five-square glyph + five-accent trail show all
   services arriving. Shares nav/footer/container/hairlines/reveals
   with the homepage and service pages. Prototype: _assets/contact-page-system-v1.html
   ════════════════════════════════════════════════════════════════════ */

/* ── INNER HERO — convergence point ── */
.cp-hero { background: var(--bg); padding: 168px 0 0; overflow: hidden; }
.cp-hero .container { position: relative; }
/* the convergence glyph — all five service accents lit */
.cp-hero-glyph { display: inline-flex; gap: 7px; margin-bottom: 36px; }
.cp-hero-glyph i { width: 8px; height: 8px; display: block; }
.cp-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600; letter-spacing: -0.028em; line-height: 1.0;
  color: #fff; max-width: 900px; margin-bottom: 30px;
}
/* convergence trail — five accents drawn into one line */
.cp-hero-trail {
  height: 8px; width: min(52%, 540px);
  background-image:
    radial-gradient(circle, var(--s1) 1.6px, transparent 1.7px),
    radial-gradient(circle, var(--s2) 1.6px, transparent 1.7px),
    radial-gradient(circle, var(--s3) 1.6px, transparent 1.7px),
    radial-gradient(circle, var(--s4) 1.6px, transparent 1.7px),
    radial-gradient(circle, var(--s5) 1.6px, transparent 1.7px);
  background-size: 70px 8px;
  background-position: 0 0, 14px 0, 28px 0, 42px 0, 56px 0;
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 62%, transparent);
          mask-image: linear-gradient(to right, #000 0%, #000 62%, transparent);
  opacity: 0.9; margin-bottom: 44px;
}
.cp-hero-sub {
  font-size: 1.3125rem; line-height: 1.6;
  color: rgba(255,255,255,0.70); max-width: 56ch;
  text-wrap: pretty; padding-bottom: 88px;
  font-family: var(--font-body); font-weight: 400;
}

/* ── CONTACT GRID — form + channels ── */
.cp-main { background: var(--bg); padding: 100px 0 110px; }
.cp-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 72px; align-items: start; }

.cp-eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px; }
.cp-eyebrow::before { content: ''; width: 7px; height: 7px; background: var(--acc); }
.cp-block-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 2.6vw, 2.125rem);
  font-weight: 600; letter-spacing: -0.022em; line-height: 1.05;
  color: #fff; margin-bottom: 16px;
}
.cp-block-sub { font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,0.58); max-width: 52ch; margin-bottom: 44px; }

/* form */
.cp-form { display: flex; flex-direction: column; gap: 26px; }
.cp-fg { display: flex; flex-direction: column; gap: 9px; }
.cp-fg label {
  font-family: var(--font-mono); font-size: 0.6875rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.50);
}
.cp-fg input, .cp-fg select, .cp-fg textarea {
  width: 100%; background: #161616;
  border: 1px solid var(--border-dark); border-radius: 0;
  color: #fff; font-family: var(--font-body);
  font-size: 1rem; line-height: 1.5; padding: 14px 16px;
  transition: border-color 0.18s, background 0.18s;
}
.cp-fg input::placeholder, .cp-fg textarea::placeholder { color: rgba(255,255,255,0.34); }
.cp-fg input:focus, .cp-fg select:focus, .cp-fg textarea:focus {
  outline: none; border-color: var(--acc); background: #1a1414;
}
.cp-fg textarea { resize: vertical; min-height: 150px; }
.cp-fg select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23ffffff' stroke-opacity='0.5' stroke-width='1.5' fill='none' stroke-linecap='square'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 40px; cursor: pointer;
}
.cp-fg select option { background: #161616; color: #fff; }
.cp-form-submit {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 10px;
  margin-top: 8px; background: #fff; color: #0f0f0f;
  font-family: var(--font-mono); font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: -0.011em;
  padding: 14px 28px; border: none; border-radius: 0;
  cursor: pointer; transition: background 0.15s;
}
.cp-form-submit:hover { background: #f0f0f0; }

/* Contact Form 7 — inherit the .cp-form / .cp-fg design; only structural glue
   + CF7-specific states (validation, response line, spinner) added here. */
.cp-form-area .wpcf7-form { display: flex; flex-direction: column; gap: 26px; }
.cp-form-area .wpcf7-form .wpcf7-form-control-wrap { display: block; }
.cp-form-area .wpcf7-form input[type="submit"].cp-form-submit { align-self: flex-start; }
.cp-form-area .wpcf7-not-valid-tip {
  font-family: var(--font-mono); font-size: 0.6875rem;
  letter-spacing: 0.02em; color: #ff7a7a; margin-top: 7px;
}
.cp-form-area .wpcf7-form-control.wpcf7-not-valid { border-color: #ff7a7a; }
.cp-form-area .wpcf7-response-output {
  margin: 20px 0 0; padding: 13px 16px;
  border: 1px solid var(--border-dark);
  font-family: var(--font-mono); font-size: 0.8125rem;
  line-height: 1.55; color: rgba(255,255,255,0.72);
}
.cp-form-area .wpcf7-form.sent .wpcf7-response-output { border-color: var(--acc); color: #fff; }
.cp-form-area .wpcf7-form.invalid .wpcf7-response-output,
.cp-form-area .wpcf7-form.unaccepted .wpcf7-response-output,
.cp-form-area .wpcf7-form.payment-required .wpcf7-response-output,
.cp-form-area .wpcf7-form.failed .wpcf7-response-output,
.cp-form-area .wpcf7-form.aborted .wpcf7-response-output { border-color: #ff7a7a; color: #ffd9d9; }
.cp-form-area .wpcf7-spinner { margin: 0 0 0 14px; background-color: rgba(255,255,255,0.5); }

/* Marketing-consent checkbox (opt-in, GDPR) + privacy note */
.cp-consent { flex-direction: row; align-items: flex-start; gap: 11px; }
.cp-consent .wpcf7-form-control.wpcf7-checkbox { display: block; }
.cp-consent .wpcf7-list-item { margin: 0; }
.cp-consent label {
  display: flex; align-items: flex-start; gap: 11px; cursor: pointer;
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 400;
  text-transform: none; letter-spacing: 0; line-height: 1.5;
  color: rgba(255,255,255,0.58);
}
.cp-consent input[type="checkbox"] {
  width: 17px; height: 17px; margin: 2px 0 0; flex: 0 0 auto;
  accent-color: var(--acc, var(--s1));
}
.cp-form-note {
  font-family: var(--font-mono); font-size: 0.6875rem; line-height: 1.6;
  color: rgba(255,255,255,0.34); max-width: 52ch; margin: 22px 0 0;
}
.cp-form-note a { color: rgba(255,255,255,0.55); text-decoration: underline; }

/* channels — hairline ledger */
.cp-aside { position: sticky; top: 110px; }
.cp-channels { list-style: none; border-top: 1px solid var(--border-dark); }
.cp-channels li {
  display: grid; grid-template-columns: 18px 1fr; gap: 16px; align-items: baseline;
  padding: 22px 2px; border-bottom: 1px solid var(--border-dark);
}
.cp-ch-mark { width: 7px; height: 7px; background: var(--acc); transform: translateY(5px); }
.cp-ch-label {
  font-family: var(--font-mono); font-size: 0.6875rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.42); margin-bottom: 5px;
}
.cp-ch-val { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; letter-spacing: -0.015em; color: #fff; }
.cp-ch-val a { color: #fff; text-decoration: none; transition: color 0.15s; }
.cp-ch-val a:hover { color: var(--acc); }
.cp-ch-val.muted { color: rgba(255,255,255,0.72); }

/* ── BOOKING MONOLITH — closing focal ── */
.cp-book { background: var(--bg); padding: 0 0 140px; }
.cp-book-mono {
  position: relative; display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 48px; align-items: center; padding: 64px 56px;
  background: color-mix(in srgb, var(--acc) 5%, #101010);
  border: 1px solid color-mix(in srgb, var(--acc) 32%, transparent);
  overflow: hidden; transition: border-color 0.25s;
}
.cp-book-mono:hover { border-color: color-mix(in srgb, var(--acc) 60%, transparent); }
.cp-book-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 100% 90% at 88% 115%, color-mix(in srgb, var(--acc) 20%, transparent) 0%, transparent 60%);
}
.cp-book-dots {
  position: absolute; inset: auto 0 0 0; height: 56%;
  background-image: radial-gradient(circle, var(--acc) 1.4px, transparent 1.5px);
  background-size: 13px 13px;
  -webkit-mask-image: linear-gradient(to top, #000 8%, transparent 95%);
          mask-image: linear-gradient(to top, #000 8%, transparent 95%);
  opacity: 0.30; pointer-events: none;
}
.cp-book-l { position: relative; }
.cp-book-mark { display: block; width: 9px; height: 9px; background: var(--acc); margin-bottom: 26px; }
.cp-book-mono h2 {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.4vw, 2.75rem);
  font-weight: 600; letter-spacing: -0.025em; line-height: 1.04;
  color: #fff; margin-bottom: 22px; max-width: 16ch;
}
.cp-book-mono p { font-size: 1.0625rem; line-height: 1.7; color: rgba(255,255,255,0.74); max-width: 48ch; font-family: var(--font-body); }
.cp-book-r { position: relative; display: flex; justify-content: flex-end; align-items: center; }
.cp-book-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: #0f0f0f;
  font-family: var(--font-mono); font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: -0.011em;
  padding: 14px 26px; text-decoration: none; transition: background 0.15s;
}
.cp-book-cta:hover { background: #f0f0f0; }

/* ── CONTACT PAGE — responsive ── */
@media (max-width: 1024px) {
  .cp-grid { grid-template-columns: 1fr; gap: 56px; }
  .cp-aside { position: static; }
  .cp-book-mono { grid-template-columns: 1fr; gap: 32px; }
  .cp-book-r { justify-content: flex-start; }
}
@media (max-width: 900px) {
  .cp-hero { padding-top: 72px; }
  .cp-hero h1 { font-size: clamp(2.25rem, 9vw, 3rem); }
  .cp-hero-sub { font-size: 1.125rem; padding-bottom: 60px; }
  .cp-hero-trail { margin-bottom: 32px; width: min(70%, 320px); }
  .cp-main { padding: 70px 0 80px; }
  .cp-book { padding-bottom: 90px; }
  .cp-book-mono { padding: 36px 26px; }
}

/* ════════════════════════════════════════════════════════════════════
   ABOUT PAGE — "Jatkuva järjestelmä" (about-system-v1, 2026-06-13)
   /tietoa/ on the continuous dark canvas — the system explained. Wears
   the brand coral (--s1, logo dot) as its single accent via sp--s1;
   the four philosophy blocks are editorial rows (no card grid, no
   per-service colour decoration). Shared nav/footer/container/hairlines/
   reveals/sysdots. Prototype: _assets/about-page-system-v1.html
   The shared dark CTA band (cta-section.php) is appended on deploy.
   ════════════════════════════════════════════════════════════════════ */

/* ── INNER HERO ── */
.ab-hero { background: var(--bg); padding: 168px 0 0; overflow: hidden; }
.ab-hero .container { position: relative; }
.ab-hero-mark { display: block; width: 9px; height: 9px; background: var(--acc); margin-bottom: 34px; }
.ab-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 600;
  letter-spacing: -0.028em; line-height: 1.0; color: #fff; max-width: 900px; margin-bottom: 30px;
}
.ab-hero-trail {
  height: 8px; width: min(44%, 480px);
  background-image: radial-gradient(circle, var(--acc) 1.6px, transparent 1.7px);
  background-size: 14px 8px;
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 60%, transparent);
          mask-image: linear-gradient(to right, #000 0%, #000 60%, transparent);
  opacity: 0.85; margin-bottom: 44px;
}
.ab-hero-sub {
  font-size: 1.3125rem; line-height: 1.6; color: rgba(255,255,255,0.70);
  max-width: 60ch; text-wrap: pretty; padding-bottom: 88px;
  font-family: var(--font-body); font-weight: 400;
}

/* ── INTRO — the thesis, display scale ── */
.ab-intro { background: var(--bg); padding: 100px 0 110px; }
.ab-intro-grid { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: 64px; align-items: start; }
.ab-intro-side { position: sticky; top: 110px; }
.ab-intro-side .sysdots { margin-bottom: 0; }
.ab-intro-lede {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.7vw, 2.25rem);
  font-weight: 500; letter-spacing: -0.018em; line-height: 1.32;
  color: rgba(255,255,255,0.95); max-width: 24ch; text-wrap: balance;
}
.ab-intro-lede em { font-style: normal; color: rgba(255,255,255,0.5); }

/* ── PRINCIPLES — four editorial rows (not a card grid) ── */
.ab-principles { background: var(--bg); padding: 0 0 120px; }
.ab-rows { border-top: 1px solid var(--border-dark); }
.ab-row {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 56px; align-items: start;
  padding: 48px 0; border-bottom: 1px solid var(--border-dark);
}
.ab-row-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.05em; color: rgba(255,255,255,0.42); margin-bottom: 18px;
}
.ab-row-label::before { content: ''; width: 7px; height: 7px; background: var(--acc); flex-shrink: 0; }
.ab-row h3 {
  font-size: clamp(1.5rem, 2.8vw, 2.25rem); font-weight: 500;
  letter-spacing: -0.022em; line-height: 1.08; color: #fff; max-width: 18ch;
}
.ab-row p { font-size: 1.0625rem; line-height: 1.72; color: rgba(255,255,255,0.64); max-width: 60ch; padding-top: 6px; font-family: var(--font-body); }

/* ── EXPERTISE — mono chips ── */
.ab-expertise { background: var(--bg); padding: 0 0 130px; }
.ab-exp-rule {
  border-top: 1px solid var(--border-dark); padding-top: 14px; margin-bottom: 40px;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.05em; color: rgba(255,255,255,0.42);
}
.ab-exp-rule::before { content: ''; width: 7px; height: 7px; background: var(--acc); }
.ab-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.ab-chip {
  font-family: var(--font-mono); font-size: 0.8125rem; letter-spacing: -0.011em;
  color: rgba(255,255,255,0.72); border: 1px solid var(--border-dark);
  padding: 9px 16px; transition: border-color 0.18s, color 0.18s;
}
.ab-chip:hover { border-color: color-mix(in srgb, var(--acc) 50%, transparent); color: #fff; }

/* ── ABOUT PAGE — responsive ── */
@media (max-width: 900px) {
  .ab-hero { padding-top: 72px; }
  .ab-hero h1 { font-size: clamp(2.25rem, 9vw, 3rem); }
  .ab-hero-sub { font-size: 1.125rem; padding-bottom: 60px; }
  .ab-hero-trail { margin-bottom: 32px; }
  .ab-intro { padding: 70px 0 80px; }
  .ab-intro-grid { grid-template-columns: 1fr; gap: 28px; }
  .ab-intro-side { position: static; }
  .ab-intro-lede { max-width: none; }
  .ab-principles { padding-bottom: 80px; }
  .ab-row { grid-template-columns: 1fr; gap: 18px; padding: 36px 0; }
  .ab-row h3 { max-width: none; }
  .ab-expertise { padding-bottom: 90px; }
}

/* ════════════════════════════════════════════════════════════════════
   STARTER PACKAGES — "Jatkuva järjestelmä" (starter-system-v1, 2026-06-13)
   /aloituspaketit/ on the continuous dark canvas. The flat 6-card grid
   becomes three service sections (Analytiikka s2, AI-automaatiot s4,
   SEO s5), two boxes each, reusing the service-page offers grammar
   (sp-offer-feat + sp-offer-side) accent-matched per section via sp--sN.
   Kasvustrategia + Markkinointiteknologia intentionally excluded.
   Prototype: _assets/starter-page-system-v1.html. CTA band appended on deploy.
   ════════════════════════════════════════════════════════════════════ */

/* ── INNER HERO ── */
.ap-hero { background: var(--bg); padding: 168px 0 0; overflow: hidden; }
.ap-hero .container { position: relative; }
.ap-hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255,145,145,0.08) 0%, transparent 62%);
}
.ap-hero-glyph { position: relative; display: inline-flex; gap: 7px; margin-bottom: 36px; }
.ap-hero-glyph i { width: 8px; height: 8px; display: block; }
.ap-hero h1 {
  position: relative; font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 600;
  letter-spacing: -0.028em; line-height: 1.0; color: #fff; max-width: 900px; margin-bottom: 28px;
}
.ap-hero-sub {
  position: relative; font-size: 1.3125rem; line-height: 1.6; color: rgba(255,255,255,0.70);
  max-width: 60ch; text-wrap: pretty; padding-bottom: 64px; font-family: var(--font-body); font-weight: 400;
}

/* ── INTRO LEAD ── */
.ap-intro { background: var(--bg); padding: 64px 0 40px; }
.ap-intro p { font-size: 1.25rem; line-height: 1.7; color: rgba(255,255,255,0.74); max-width: 62ch; font-family: var(--font-body); }

/* ── SERVICE SECTION ── */
.ap-sec { background: var(--bg); padding: 56px 0 64px; }
.ap-sec-head { display: flex; align-items: center; gap: 14px; margin-bottom: 34px; }
.ap-sec-mark { width: 11px; height: 11px; background: var(--acc); flex-shrink: 0; }
.ap-sec-head h2 {
  font-size: clamp(1.625rem, 2.8vw, 2.375rem); font-weight: 600;
  letter-spacing: -0.024em; line-height: 1.0; color: #fff;
}

/* tuned offer boxes for the packages context (shorter copy than service pages) */
.ap-sec .sp-offer-feat { min-height: 360px; }
.ap-sec .sp-offer-feat h3 { font-size: clamp(1.5rem, 2.4vw, 2.125rem); max-width: 20ch; }
.ap-duration {
  position: relative;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.04em; color: rgba(255,255,255,0.45); margin-bottom: 10px;
}
/* the duration line already separates from the body; price sits right under it */
.ap-sec .sp-offer-price { margin-top: 0; }

/* ── STARTER PACKAGES — responsive ── */
@media (max-width: 900px) {
  .ap-hero { padding-top: 72px; }
  .ap-hero h1 { font-size: clamp(2.25rem, 9vw, 3rem); }
  .ap-hero-sub { font-size: 1.125rem; padding-bottom: 48px; }
  .ap-intro { padding: 48px 0 32px; }
  .ap-intro p { font-size: 1.125rem; }
  .ap-sec { padding: 44px 0 48px; }
}

/* ════════════════════════════════════════════════════════════════════
   PACKAGE PAGES — campaign landing (paketti-system-v1, 2026-06-13)
   The paketti-* pages become focused campaign landing pages on the dark
   canvas. Each wears its PARENT SERVICE accent via sp--sN (analytiikka
   → s2, ai-automaatio → s4). Conversion-first: hero offer + dual CTA +
   facts, "what you get", 3-step process, closing price monolith.
   Prototype: _assets/paketti-page-system-v1.html
   ════════════════════════════════════════════════════════════════════ */

/* ── HERO — the campaign hook ── */
.pk-hero { background: var(--bg); padding: 168px 0 0; overflow: hidden; }
.pk-hero .container { position: relative; }
.pk-hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 45% at 8% 0%, color-mix(in srgb, var(--acc) 15%, transparent) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 95% 16%, color-mix(in srgb, var(--acc) 6%, transparent) 0%, transparent 55%);
}
.pk-hero-meta { display: flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em; color: rgba(255,255,255,0.42); margin-bottom: 34px; }
.pk-hero-meta a { color: rgba(255,255,255,0.42); text-decoration: none; transition: color 0.15s; }
.pk-hero-meta a:hover { color: rgba(255,255,255,0.8); }
.pk-hero-meta .sep { color: rgba(255,255,255,0.22); }
.pk-hero-meta .crumb-svc { color: rgba(255,255,255,0.85); }
.pk-hero h1 { font-size: clamp(2.25rem, 5vw, 3.875rem); font-weight: 600; letter-spacing: -0.026em; line-height: 1.02; color: #fff; max-width: 18ch; margin-bottom: 26px; }
.pk-hero-trail {
  height: 8px; width: min(40%, 440px);
  background-image: radial-gradient(circle, var(--acc) 1.6px, transparent 1.7px);
  background-size: 14px 8px;
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 60%, transparent);
          mask-image: linear-gradient(to right, #000 0%, #000 60%, transparent);
  opacity: 0.85; margin-bottom: 34px;
}
.pk-hero-sub { font-size: 1.3125rem; line-height: 1.6; color: rgba(255,255,255,0.72); max-width: 54ch; text-wrap: pretty; margin-bottom: 40px; font-family: var(--font-body); font-weight: 400; }
.pk-hero-sub em { font-style: normal; color: rgba(255,255,255,0.45); }
.pk-hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; padding-bottom: 80px; }
.pk-hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.pk-hero-facts { display: flex; align-items: center; gap: 22px; }
.pk-fact { display: flex; flex-direction: column; gap: 3px; }
.pk-fact .pk-fact-k { font-family: var(--font-mono); font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.40); }
.pk-fact .pk-fact-v { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em; color: #fff; }
.pk-fact-sep { width: 1px; height: 34px; background: var(--border-dark); }

/* ── SECTION HEADER GRAMMAR (paketti-local) ── */
.pk-rule { border-top: 1px solid var(--border-dark); padding-top: 14px; margin-bottom: 40px; display: flex; align-items: center; gap: 10px; }
.pk-label { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.42); }
.pk-label::before { content: ''; width: 7px; height: 7px; background: var(--acc); }
.pk-head { margin-bottom: 48px; }
.pk-head h2 { font-size: clamp(1.75rem, 3.2vw, 2.625rem); font-weight: 600; letter-spacing: -0.025em; line-height: 1.02; color: #fff; max-width: 18ch; }

/* ── WHAT YOU GET — spec list ── */
.pk-get { background: var(--bg); padding: 100px 0 110px; }
.pk-inc-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; column-gap: 56px; border-top: 1px solid var(--border-dark); }
.pk-inc-list li { display: flex; align-items: baseline; gap: 16px; padding: 18px 4px; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 1rem; line-height: 1.55; color: rgba(255,255,255,0.78); }
.pk-inc-list li::before { content: ''; width: 6px; height: 6px; background: var(--acc); opacity: 0.7; flex-shrink: 0; transform: translateY(-1px); }

/* ── HOW IT WORKS — 3 steps ── */
.pk-steps { background: var(--bg); padding: 0 0 120px; }
.pk-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--border-dark); }
.pk-step { padding: 36px 32px 36px 0; border-right: 1px solid var(--border-dark); }
.pk-step:last-child { border-right: none; padding-right: 0; }
.pk-step-n { display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 0.8125rem; color: var(--acc); margin-bottom: 20px; }
.pk-step-n::after { content: ''; flex: 1; height: 1px; background: var(--border-dark); }
.pk-step h3 { font-size: clamp(1.375rem, 2vw, 1.75rem); font-weight: 500; letter-spacing: -0.02em; line-height: 1.1; color: #fff; margin-bottom: 14px; }
.pk-step p { font-size: 0.9375rem; line-height: 1.7; color: rgba(255,255,255,0.6); font-family: var(--font-body); }

/* ── OFFER MONOLITH — the close ── */
.pk-offer { background: var(--bg); padding: 0 0 140px; }
.pk-offer-mono { position: relative; display: grid; grid-template-columns: minmax(0,1.5fr) minmax(0,1fr); gap: 48px; align-items: center; padding: 56px 52px; background: color-mix(in srgb, var(--acc) 6%, #101010); border: 1px solid color-mix(in srgb, var(--acc) 34%, transparent); overflow: hidden; transition: border-color 0.25s; }
.pk-offer-mono:hover { border-color: color-mix(in srgb, var(--acc) 60%, transparent); }
.pk-offer-bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 100% 90% at 88% 115%, color-mix(in srgb, var(--acc) 22%, transparent) 0%, transparent 60%); }
.pk-offer-dots { position: absolute; inset: auto 0 0 0; height: 56%; background-image: radial-gradient(circle, var(--acc) 1.4px, transparent 1.5px); background-size: 13px 13px; -webkit-mask-image: linear-gradient(to top, #000 8%, transparent 95%); mask-image: linear-gradient(to top, #000 8%, transparent 95%); opacity: 0.32; pointer-events: none; }
.pk-offer-l { position: relative; }
.pk-offer-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em; color: color-mix(in srgb, var(--acc) 70%, #fff); margin-bottom: 24px; }
.pk-offer-tag::before { content: ''; width: 7px; height: 7px; background: var(--acc); }
.pk-offer-mono h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 600; letter-spacing: -0.025em; line-height: 1.04; color: #fff; margin-bottom: 18px; max-width: 16ch; }
.pk-offer-mono p { font-size: 1.0625rem; line-height: 1.7; color: rgba(255,255,255,0.74); max-width: 46ch; font-family: var(--font-body); }
.pk-offer-r { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.pk-offer-price { font-family: var(--font-display); font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 600; letter-spacing: -0.025em; line-height: 1; color: #fff; }
.pk-offer-price small { display: block; font-family: var(--font-mono); font-size: 0.75rem; font-weight: 400; letter-spacing: 0.03em; color: rgba(255,255,255,0.45); text-transform: uppercase; margin-top: 8px; }
.pk-offer-cta { display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; background: #fff; color: #0f0f0f; font-family: var(--font-mono); font-size: 0.875rem; text-transform: uppercase; letter-spacing: -0.011em; padding: 14px 26px; text-decoration: none; transition: background 0.15s; }
.pk-offer-cta:hover { background: #f0f0f0; }

/* ── PACKAGE PAGES — responsive ── */
@media (max-width: 900px) {
  .pk-hero { padding-top: 72px; }
  .pk-hero h1 { font-size: clamp(2rem, 8vw, 2.75rem); }
  .pk-hero-sub { font-size: 1.125rem; }
  .pk-hero-actions { flex-direction: column; align-items: flex-start; gap: 28px; padding-bottom: 56px; }
  .pk-get { padding: 70px 0 80px; }
  .pk-inc-list { grid-template-columns: 1fr; }
  .pk-steps { padding-bottom: 80px; }
  .pk-steps-grid { grid-template-columns: 1fr; }
  .pk-step { padding: 28px 0; border-right: none; border-bottom: 1px solid var(--border-dark); }
  .pk-step:last-child { border-bottom: none; }
  .pk-offer { padding-bottom: 90px; }
  .pk-offer-mono { grid-template-columns: 1fr; gap: 30px; padding: 36px 26px; }
}
