/* IPO Labs — one-pager (redesign 2026-08-01).
   Design language: warm paper + near-black zones, IPO Labs orange accent,
   pill nav, hard offset shadows, handwritten margin notes. */

/* ---------- fonts (self-hosted, greek+latin) ---------- */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/manrope-400-greek.woff2") format("woff2");
  unicode-range: U+0370-03FF, U+1F00-1FFF;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/manrope-400-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/manrope-500-greek.woff2") format("woff2");
  unicode-range: U+0370-03FF, U+1F00-1FFF;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/manrope-500-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/manrope-700-greek.woff2") format("woff2");
  unicode-range: U+0370-03FF, U+1F00-1FFF;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/manrope-700-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/manrope-800-greek.woff2") format("woff2");
  unicode-range: U+0370-03FF, U+1F00-1FFF;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/manrope-800-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212;
}
@font-face {
  font-family: "Playpen Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/playpen-600-greek.woff2") format("woff2");
  unicode-range: U+0370-03FF, U+1F00-1FFF;
}
@font-face {
  font-family: "Playpen Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/playpen-600-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212;
}

/* ---------- tokens / reset ---------- */
:root {
  /* Warm base — lifted from sites/ipolabs brand tokens */
  --paper: #f6f2ea;
  --paper-2: #fdfaf3;
  --ink: #16130f;
  --ink-2: #241d15;
  --ink-3: #1e1811;
  /* Orange scale sampled straight off the IPO Labs logo:
     gold = the letterform fill, amber = the outline (= brand --amber #e8730a),
     brown = the "LABS" word + drop shadow.
     Split by luminance so each does the job lime used to do:
     gold  #ffc040 (L .59) -> large light fills   — 11.4:1 on ink
     amber #e8730a (L .29) -> CTAs & punch accents —  6.1:1 on ink  */
  --gold: #ffc040;
  --amber: #e8730a;
  /* Το --amber είναι 6.1:1 πάνω στο ink, αλλά μόνο 2.9:1 πάνω στο κρεμ χαρτί — δηλαδή
     ΚΟΒΕΤΑΙ στο WCAG AA όταν γίνεται ΚΕΙΜΕΝΟ σε ανοιχτό φόντο (η κάρτα «Τι δεν χρεώνουμε»).
     Ίδια απόχρωση, χαμηλότερη φωτεινότητα: 4.75:1 στο #fdfaf3. Χρησιμοποίησέ το ΠΑΝΤΑ
     αντί για --amber σε amber κείμενο πάνω σε χαρτί — το site υπόσχεται WCAG AA. */
  --amber-ink: #b5540a;
  --brown: #603018;
  --cream: #f0e8db;
  --grey: #b9ac9c;
  --line: rgba(22, 19, 15, 0.14);
  --line-inv: rgba(246, 242, 234, 0.16);
  --r-card: 14px;
  --r-big: 26px;
  --shadow: 4px 4px 0 var(--ink);
  --wrap: 1320px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
}
/* smooth anchor scrolling happens in JS (reduced-motion gated) — never here */
body {
  background: var(--ink);
  color: var(--ink);
  font-family:
    "Manrope",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.sheet-a :focus-visible,
.sheet-b :focus-visible,
.sheet-c :focus-visible {
  outline-color: var(--ink);
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: clamp(18px, 3.4vw, 44px);
}

/* light "sheets" that curve away from the dark body — the section-transition trick */
.sheet {
  background: var(--paper);
  position: relative;
  z-index: 1;
}
.sheet-a {
  border-radius: 0 0 var(--r-big) var(--r-big);
}
.sheet-b {
  border-radius: var(--r-big);
  margin-top: 0;
}
.sheet-c {
  border-radius: var(--r-big);
}

/* ---------- type helpers ---------- */
h1,
h2,
h3,
h4 {
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.sub {
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 500;
  max-width: 620px;
}
.hand {
  font-family: "Playpen Sans", cursive;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
}

/* ---------- pills / buttons ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  padding: 13px 22px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
  box-shadow: var(--shadow);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.pill:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}
.pill:active {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 var(--ink);
}
.pill-big {
  padding: 17px 28px;
  font-size: 14px;
}
.pill-amber {
  background: var(--amber);
  color: var(--ink);
}
.pill-dark {
  background: var(--ink-2);
  color: var(--paper);
}
.pill-outline {
  background: transparent;
  color: var(--ink);
  justify-content: center;
}
.arr {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
}
.arr-inv {
  background: var(--paper);
  color: var(--ink);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 700;
}
.badge-dot {
  color: var(--gold);
}

.tick {
  display: inline-grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  font-size: 11px;
  margin-right: 6px;
  vertical-align: -3px;
}

/* ---------- header ---------- */
.hdr {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(18px, 2.6vw, 36px);
  pointer-events: none;
}
.hdr > * {
  pointer-events: auto;
}
/* the real IPO Labs mark; .logo-dk is the brown-recoloured variant used
   wherever the mark sits on ink (the brown "LABS" is only 1.7:1 on --ink) */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.logo img {
  height: 52px;
  width: auto;
}
.logo-dk {
  display: none;
}
.card-logo {
  height: 74px;
  width: auto;
  margin: auto;
}
.f-logo {
  line-height: 0;
}
.f-logo img {
  height: 76px;
  width: auto;
}
.hdr-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--ink);
  border-radius: 999px;
  padding: 7px 10px;
}
.nav-pill a {
  color: var(--paper);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 9px 13px;
  border-radius: 999px;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}
.nav-pill a:hover {
  background: var(--amber);
  color: var(--ink);
}
.hdr-cta {
  box-shadow: none;
  border-color: transparent;
  padding: 15px 20px;
}
.hdr-cta:hover {
  transform: none;
  box-shadow: none;
  filter: brightness(1.05);
}
.burger {
  display: none;
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--paper);
  transition: transform 0.2s ease;
}
.burger[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}
.burger[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.m-menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: var(--ink);
  display: grid;
  place-items: center;
}
.m-menu[hidden] {
  display: none;
}
html.menu-open .logo-lt {
  display: none;
}
html.menu-open .logo-dk {
  display: block;
}
.m-menu nav {
  display: grid;
  gap: 8px;
  text-align: center;
  justify-items: center;
}
.m-menu a {
  color: var(--paper);
  text-decoration: none;
  font-size: 30px;
  font-weight: 800;
  padding: 10px;
}
.m-menu .pill {
  margin-top: 22px;
  font-size: 14px;
  box-shadow: 4px 4px 0 rgba(232, 115, 10, 0.34);
  color: var(--ink);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  /* ψηλότερο από πριν (92vh/120px): το overflow:hidden έκοβε την .pol-5 στη μέση της
     εικόνας της. Ο επιπλέον χώρος κάτω τη χωράει ολόκληρη χωρίς να την ανεβάσει πάνω
     στα κουμπιά — τελικό ύψος ~835px (κοντό viewport) έως 96vh (ψηλό). */
  padding: 170px 24px 130px;
  min-height: 96vh;
}
.hero-halo {
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  width: min(1050px, 95vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(closest-side, #efe7d9 0%, #f3ece1 55%, rgba(246, 242, 234, 0) 100%);
  pointer-events: none;
}
.hero-core {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}
.hero-core .kicker {
  margin: 26px 0 14px;
  color: var(--ink);
}
.hero h1 {
  font-size: clamp(46px, 7.6vw, 86px);
  letter-spacing: -0.03em;
}
.hero .sub {
  margin: 22px auto 30px;
}
.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.assure {
  margin-top: 26px;
  font-size: 14px;
  font-weight: 600;
}

/* polaroids */
.pol {
  background: #fffdf8;
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  padding: 9px 9px 7px;
  box-shadow: var(--shadow);
  /* --w varies the size card to card so the scatter reads as depth, not a grid */
  width: calc(clamp(200px, 17.5vw, 290px) * var(--w, 1));
  flex: 0 0 auto;
}
.pol img {
  width: 100%;
  /* ⚠ ΑΠΑΡΑΙΤΗΤΟ: τα <img> έχουν width/height attributes (για να μη χοροπηδά το layout —
     CLS). Το presentational hint του height ΔΕΝ είναι `auto`, οπότε ακυρώνει το
     aspect-ratio και η κάρτα βγαίνει 100%×475px. Με height:auto ξαναδουλεύει το 16/10. */
  height: auto;
  border-radius: 6px;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: top;
}
.pol figcaption {
  font-size: 14px;
  padding: 7px 4px 2px;
  color: var(--ink);
}
.hero > .pol {
  position: absolute;
  z-index: 1;
  transform: rotate(var(--rot, 0deg));
}
/* --w = size · --rot = resting tilt · --rot0 = tumble it starts from · --bd = burst delay.
   The two cards that bleed furthest off-screen (2 and 3) are the small ones.
   Idle float: --amp/--drift/--dur/--dly. These MUST live on the card (not in separate
   .pol-N rules next to the animation) — a `.pol-2{animation-duration}` rule is 0,1,0 and
   loses to `.hero > .pol` at 0,2,0, which is how all five ended up bobbing in lockstep.
   Amplitude tracks --w: bigger card = nearer = floats further. */
/*  ┌──────────────────────────────────────────────────────────────────┐
    │  IDLE FLOAT SPEED — the one knob. Higher = faster.               │
    │  1 = current · 1.5 = 50% faster · 2 = double · .5 = half.        │
    │  Scales every card's --beat and --off together, so the cards      │
    │  keep their ratios and stay out of phase. Don't set it to 0.      │
    └──────────────────────────────────────────────────────────────────┘ */
.hero {
  --float-speed: 3;
}
/* --beat = seconds per sweep · --off = negative phase offset (both × --float-speed) */
.pol-1 {
  top: -36px;
  left: 19%;
  --w: 1.14;
  --rot: 3.5deg;
  --rot0: -14deg;
  --bd: 60ms;
  --amp: 10px;
  --drift: 0.7deg;
  --beat: 6.8;
  --off: -0.4;
}
.pol-2 {
  top: 38%;
  left: max(-60px, -4vw);
  --w: 0.84;
  --rot: -5deg;
  --rot0: 12deg;
  --bd: 150ms;
  --amp: 6px;
  --drift: -0.9deg;
  --beat: 8.6;
  --off: -2.4;
}
.pol-3 {
  top: 13%;
  right: max(-70px, -5vw);
  --w: 0.9;
  --rot: 6deg;
  --rot0: -16deg;
  --bd: 0ms;
  --amp: 7px;
  --drift: 0.6deg;
  --beat: 7.6;
  --off: -1.1;
}
.pol-4 {
  top: 63%;
  right: max(-24px, -2vw);
  --w: 1.05;
  --rot: -3deg;
  --rot0: 13deg;
  --bd: 100ms;
  --amp: 9px;
  --drift: -0.7deg;
  --beat: 9.4;
  --off: -3.7;
}
.pol-5 {
  /* ΟΧΙ αρνητικό: είναι η μόνη κάρτα που «βγαίνει» κάτω, κι εκεί την κόβει το
     overflow:hidden του .hero. Με 10px μένει ολόκληρη μέσα (η κλίση 7deg + το bob
     ±12px τρώνε λίγη από τη μύτη της, που είναι και το ζητούμενο ως bleed). */
  bottom: 10px;
  left: 11%;
  --w: 1.22;
  --rot: 7deg;
  --rot0: -11deg;
  --bd: 200ms;
  --amp: 12px;
  --drift: 1deg;
  --beat: 8;
  --off: -5.2;
}
.hero-note {
  position: absolute;
  /* όχι κολλητά στο δεξί άκρο (ήταν 3%): έμοιαζε να «φεύγει» εκτός οθόνης. Το ποσοστό
     κρατά την απόσταση από τα γράμματα του .hero-core σταθερή όσο μεγαλώνει το παράθυρο. */
  right: 8%;
  top: 46%;
  z-index: 2;
  font-size: 15px;
  transform: rotate(-7deg);
  text-align: right;
  max-width: 190px;
}
.doodle-arrow {
  width: 44px;
  height: 30px;
  display: block;
  margin: 6px 0 0 auto;
}
.pol-strip {
  display: none;
}

/* ---- burst-in: on load the polaroids sit stacked behind the headline and
   fly out to their resting spots. --bx/--by (the offset from each card to the
   hero's optical centre) are measured per card in site.js; --rot0/--bd above
   give each one its own tumble and its own beat. ---- */
html.burst-ready .hero > .pol {
  /* Opacity has no stagger: all five snap into view as one small stack behind the
     headline. The transform waits 180ms on top of that, so the stack is legible for a
     beat before it blows apart — --bd then fires them outward in a tight ripple. */
  transition:
    transform 0.8s cubic-bezier(0.18, 0.85, 0.28, 1.03) calc(180ms + var(--bd, 0ms)),
    opacity 0.18s ease-out;
}
html.burst-ready.burst-hold .hero > .pol {
  transform: translate(var(--bx, 0px), var(--by, 0px)) rotate(var(--rot0, 0deg)) scale(0.38);
  opacity: 0;
  /* MUST be none: the transition above is what the RELEASE uses. Left active here, its
     180ms delay would swallow the --bx/--by the script sets and the cards would never
     reach the centre at all — they'd just scale up in place. */
  transition: none;
}
html.burst-ready .hero-note {
  --bd: 640ms;
  transition:
    transform 0.8s cubic-bezier(0.2, 0.8, 0.3, 1) var(--bd),
    opacity 0.6s ease var(--bd);
}
html.burst-ready.burst-hold .hero-note {
  transform: rotate(-7deg) scale(0.86);
  opacity: 0;
  transition: none;
}
/* ---- the same move, adapted to the ≤1160px strip: at 375px only ~1.5 cards are on
   screen, so an outward explosion would happen off-canvas. Instead the cards wait
   stacked on the first one's spot and deal out into the row — and because they only
   ever travel RIGHT from there, the hold state can't widen the strip's scroll extent.
   Released on scroll-into-view (the strip sits near the fold on a phone). ---- */
/* nth-child(5n+…): το strip κρατά ~18 κάρτες (+ τους κλώνους του marquee), οπότε το
   μοτίβο μεγέθους/κλίσης επαναλαμβάνεται ανά πεντάδα αντί να σταματά στην 5η — αλλιώς
   όλες οι κάρτες από την 6η και μετά έπεφταν στο ίδιο --w:1 και η σειρά «ίσιωνε». */
.pol-strip .pol:nth-child(5n + 1) {
  --w: 1;
  --rot0: -3deg;
  --bd: 0ms;
}
.pol-strip .pol:nth-child(5n + 2) {
  --w: 0.88;
  --rot0: 5deg;
  --bd: 80ms;
}
.pol-strip .pol:nth-child(5n + 3) {
  --w: 1.08;
  --rot0: -6deg;
  --bd: 160ms;
}
.pol-strip .pol:nth-child(5n + 4) {
  --w: 0.94;
  --rot0: 4deg;
  --bd: 240ms;
}
.pol-strip .pol:nth-child(5n + 5) {
  --w: 1.02;
  --rot0: -5deg;
  --bd: 320ms;
}
html.burst-ready .pol-strip .pol {
  transition:
    transform 0.7s cubic-bezier(0.18, 0.85, 0.28, 1.03) calc(140ms + var(--bd, 0ms)),
    opacity 0.2s ease-out;
}
html.burst-ready .pol-strip.deal-hold .pol {
  transform: translateX(var(--dx, 0px)) rotate(var(--rot0, 0deg)) scale(0.84);
  opacity: 0;
  transition: none; /* same reason as the hero cards above */
}
@media (prefers-reduced-motion: reduce) {
  html.burst-ready .hero > .pol,
  html.burst-ready .hero-note,
  html.burst-ready .pol-strip .pol {
    transition: none;
  }
  html.burst-hold .hero > .pol {
    transform: rotate(var(--rot, 0deg));
    opacity: 1;
  }
  html.burst-hold .hero-note {
    transform: rotate(-7deg);
    opacity: 1;
  }
  html.burst-ready .pol-strip.deal-hold .pol {
    transform: none;
    opacity: 1;
  }
}

@media (prefers-reduced-motion: no-preference) {
  /* Idle float. Every card gets its own period and a negative delay, so they're already
     out of phase on the first frame and never re-sync — a group drifting in lockstep
     reads as a static block. Runs on translate+rotate, which compose with the burst's
     transform instead of clobbering it, so the float carries straight on after landing. */
  .hero > .pol {
    animation: bob calc(var(--beat, 7) / var(--float-speed, 1) * 1s) ease-in-out calc(var(--off, 0) / var(--float-speed, 1) * 1s) infinite alternate;
  }
}
@keyframes bob {
  from {
    translate: 0 calc(var(--amp, 7px) * -1);
    rotate: calc(var(--drift, 0deg) * -1);
  }
  to {
    translate: 0 var(--amp, 7px);
    rotate: var(--drift, 0deg);
  }
}

/* ---------- problem ---------- */
.problem {
  padding: 40px 0 90px;
}
.problem-box {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  width: calc(100% - clamp(28px, 5vw, 80px));
  background: var(--ink);
  border-radius: var(--r-big);
  display: grid;
  grid-template-columns: 44% 1fr;
  gap: clamp(28px, 4vw, 70px);
  padding: clamp(28px, 3.5vw, 54px);
  overflow: hidden;
}
/* Η λίστα δεν τελειώνει ποτέ: παράθυρο σταθερού ύψους, το site.js στοιβάζει δύο
   ίδια σετ μέσα και τα κυλάει -50% (κάθε .task κουβαλά το δικό της κάτω margin,
   άρα το μισό ύψος = ακριβώς ένα σετ → αθέατο loop). Χωρίς JS μένει στατική. */
.todo-app {
  position: relative;
  height: clamp(300px, 39vw, 452px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 7%, #000 88%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 7%, #000 88%, transparent 100%);
}
/* flow-root: κρατά το κάτω margin του τελευταίου .task ΜΕΣΑ στο σετ — αλλιώς
   καταρρέει ανάμεσα στα δύο σετ και το -50% πέφτει 5px λάθος (ορατό «τικ» ανά γύρο) */
.todo-set {
  display: flow-root;
}
.todo-roll.rolling {
  animation: todo-roll 42s linear infinite;
  will-change: transform;
}
.problem-box:not(.live) .todo-roll.rolling {
  animation-play-state: paused;
}
@keyframes todo-roll {
  to {
    transform: translateY(-50%);
  }
}
.task {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  background: var(--ink-3);
  border: 1px solid #382c1e;
  border-radius: 10px;
  padding: 15px 16px;
  color: #ded2c1;
  font-size: 14px;
  font-weight: 500;
}
.cb {
  width: 16px;
  height: 16px;
  border: 1.5px solid #756553;
  border-radius: 4px;
  flex: 0 0 auto;
}
.dots {
  margin-left: auto;
  color: #756553;
  letter-spacing: 2px;
}
/* Τα σημειώματα ζουν πάνω από ΟΛΟ το κουτί (όχι μόνο τη λίστα), ώστε να
   πέφτουν και δίπλα στον τίτλο· το overflow:hidden του κουτιού τα κόβει στην άκρη. */
.sticky-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.sticker {
  --rot: 0deg;
  position: absolute;
  background: var(--gold);
  color: var(--ink);
  border-radius: 8px;
  padding: 7px 13px;
  font-size: 13.5px;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.45);
  white-space: nowrap;
  transform: rotate(var(--rot));
}
.st-1 {
  --rot: 4deg;
  top: 15%;
  left: 24%;
}
.st-2 {
  --rot: -3deg;
  top: 62%;
  left: 6%;
}
/* δυναμικά: μπαίνουν με «τσακ», φεύγουν σβήνοντας προς τα πάνω */
.note {
  transition:
    opacity 0.3s ease,
    transform 0.38s cubic-bezier(0.18, 0.9, 0.28, 1.35);
}
.note.pre {
  opacity: 0;
  transform: rotate(var(--rot)) scale(0.68) translateY(10px);
}
.note.out {
  opacity: 0;
  transform: rotate(var(--rot)) scale(0.94) translateY(-10px);
  transition-duration: 0.32s, 0.32s;
}
.problem-copy {
  align-self: center;
  padding-right: clamp(0px, 2vw, 30px);
}
.problem-copy .eyebrow {
  color: var(--grey);
  margin-bottom: 16px;
}
.problem-copy h2 {
  color: var(--paper);
  font-size: clamp(30px, 3.4vw, 44px);
}

/* ---------- simple (one-cards) ---------- */
.simple {
  padding: 60px 0 90px;
}
.simple-grid {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: clamp(18px, 3.4vw, 44px);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(30px, 4vw, 70px);
  align-items: center;
}
.simple-copy .eyebrow {
  margin-bottom: 14px;
}
.simple-copy h3 {
  font-size: clamp(32px, 3.6vw, 50px);
  margin-bottom: 30px;
}
.one-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.one-card {
  border-radius: var(--r-card);
  padding: 20px;
  min-height: 172px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  border: 1.5px solid var(--ink);
  box-shadow: var(--shadow);
}
.one-card p {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}
.oc-gold {
  background: var(--gold);
}
.oc-cream {
  background: var(--cream);
}
.oc-ink {
  background: var(--ink);
  align-items: center;
  justify-content: center;
}
.chk {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  font-size: 13px;
}

/* ---------- kanban board ---------- */
.board-sec {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 30px clamp(18px, 3.4vw, 44px) 110px;
}
.board-note {
  position: absolute;
  top: -34px;
  right: 8%;
  font-size: 15px;
  transform: rotate(3deg);
  z-index: 2;
}
.board-note .doodle-arrow {
  margin: 4px auto 0 0;
}
.board {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 560px;
}
.bcol {
  border-left: 1px solid var(--line);
  padding: 0 12px;
}
.bcol:first-child {
  border-left: 0;
}
.bhead {
  background: #ebe2d4;
  border-radius: 8px;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--brown);
  padding: 8px 6px;
  margin-bottom: 14px;
}
.bcard {
  background: var(--gold);
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 18px;
  margin-bottom: 16px;
}
.bcard h4 {
  font-size: 16.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 9px;
  letter-spacing: -0.01em;
}
.bcard p {
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.45;
}
.num {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}
.bc-1 {
  margin-top: 76px;
}
.bc-2 {
  margin-top: 150px;
}
.bc-3 {
  margin-top: 262px;
}
.bc-4 {
  margin-top: 262px;
}
.bc-5 {
  margin-top: 0;
}
.bc-6 {
  margin-top: 380px;
}

/* ---------- ticker ---------- */
.ticker {
  background: var(--ink);
  overflow: hidden;
  position: relative;
  z-index: 0;
  /* ⚠ ΣΚΟΠΙΜΑ ΑΣΥΜΜΕΤΡΟ: το .sheet-b από κάτω έχει margin-top:-26px και σκεπάζει 26px
     της μπάρας (z-index 1 πάνω από το 0 εδώ). Μαζί με τα ::before/::after των 30px, ο
     ΟΡΑΤΟΣ χώρος βγαίνει 30+30=60px πάνω και 56+30-26=60px κάτω. Με ίσα paddings το
     κείμενο κάθεται 26px χαμηλότερα από το κέντρο της μαύρης λωρίδας. */
  padding: 30px 0 56px;
}
.ticker::before,
.ticker::after {
  content: "";
  display: block;
  height: 30px;
}
.track {
  display: flex;
  align-items: center;
  gap: 42px;
  width: max-content;
  white-space: nowrap;
}
.track span {
  color: var(--paper);
  font-size: clamp(20px, 2.2vw, 27px);
  font-weight: 800;
  letter-spacing: 0.04em;
}
.track i {
  color: var(--amber);
  font-style: normal;
  font-size: 22px;
}
@media (prefers-reduced-motion: no-preference) {
  .track {
    animation: mq 34s linear infinite;
  }
}
@keyframes mq {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------- meet ---------- */
.sheet-b {
  margin-top: -26px;
}
.meet {
  position: relative;
  text-align: center;
  padding: 110px 24px 150px;
}
.meet .eyebrow {
  margin-bottom: 26px;
}
.meet-title {
  font-size: clamp(52px, 8vw, 92px);
  letter-spacing: -0.035em;
}
.hl {
  background: var(--gold);
  border-radius: 14px;
  padding: 0 0.16em;
  box-decoration-break: clone;
}
.meet-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 44px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink-2);
  color: var(--paper);
  border-radius: 8px;
  padding: 11px 17px;
  font-size: 13.5px;
  font-weight: 700;
}
.chip i {
  width: 7px;
  height: 7px;
  background: var(--amber);
  border-radius: 2px;
}
.meet-note {
  /* left side, so the doodle arrow points INWARD at the chips/packages
     instead of off the right edge */
  position: absolute;
  left: 10%;
  bottom: 40px;
  font-size: 15px;
  transform: rotate(-5deg);
}

/* ---------- pricing ---------- */
.pricing {
  background: var(--cream);
  border-radius: var(--r-big);
  margin: 0 auto;
  max-width: var(--wrap);
  width: calc(100% - clamp(28px, 5vw, 80px));
  padding: clamp(48px, 6vw, 96px) clamp(20px, 3.5vw, 56px);
  text-align: center;
}
.pricing h2 {
  font-size: clamp(38px, 5vw, 64px);
  margin: 26px 0 14px;
}
.pricing > .sub {
  margin: 0 auto 54px;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
  align-items: stretch;
}
.pcard {
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid var(--ink);
}
.pc-light {
  background: var(--paper-2);
}
.pc-dark {
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
}
.ptag {
  align-self: flex-start;
  background: var(--ink);
  color: var(--paper);
  border-radius: 6px;
  padding: 6px 11px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.09em;
}
.pc-dark .ptag-gold {
  background: var(--gold);
  color: var(--ink);
}
.xc-gold .ptag {
  background: var(--ink);
  color: var(--gold);
}
.pprice {
  font-size: clamp(44px, 3.8vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 20px 0 4px;
}
.pprice small {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  margin-left: 8px;
}
.pdeliv {
  font-size: 13.5px;
  font-weight: 800;
  margin-bottom: 18px;
}
.pdeliv span {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  font-weight: 600;
  color: #6b5c4c;
}
.pdeliv-gold {
  color: var(--gold);
}
.pcard ul {
  list-style: none;
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-bottom: 24px;
}
.pc-dark ul {
  border-top-color: var(--line-inv);
}
.pcard li {
  font-size: 14px;
  font-weight: 500;
  padding-left: 26px;
  position: relative;
}
.pcard li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--gold);
  font-size: 9.5px;
}
.pc-dark li::before {
  background: var(--gold);
  color: var(--ink);
}
/* «Όλα της ΤΑΥΤΟΤΗΤΑΣ, και:» — η γραμμή που ο πελάτης προσπερνά και μετά νομίζει ότι
   το ακριβότερο πακέτο έχει ΜΟΝΟ τα 4 bullets από κάτω. Δεν είναι bullet: είναι
   δική της ζώνη, μεγαλύτερη, με «+» αντί για ✓, ώστε να διαβάζεται με μια ματιά. */
.pcard li.pinherit,
.xcard li.pinherit {
  font-size: 16.5px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
  background: var(--gold);
  color: var(--ink);
  border-radius: 10px;
  padding: 11px 14px 11px 44px;
  margin: -2px 0 4px;
}
.pcard li.pinherit::before,
.xcard li.pinherit::before {
  content: "+";
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  font-size: 15px;
  font-weight: 800;
  background: var(--ink);
  color: var(--gold);
}
/* Στη χρυσή κάρτα (ΦΡΟΝΤΙΔΑ) το χρυσό band θα χανόταν — αντιστρέφεται. */
.xc-gold li.pinherit {
  background: var(--ink);
  color: var(--gold);
}
.xc-gold li.pinherit::before {
  background: var(--gold);
  color: var(--ink);
}
/* Το ΔΩΡΟ της ΞΕΓΝΟΙΑΣΙΑΣ — έξω από τη λίστα, με δικό του βάρος: είναι αυτό που
   δικαιολογεί τη διαφορά από την ΚΙΝΗΣΗ, όχι άλλο ένα bullet. */
.pbonus {
  border: 1.5px dashed var(--ink);
  border-radius: 12px;
  background: rgba(255, 192, 64, 0.22);
  padding: 14px 16px;
  margin: 4px 0 20px;
  display: grid;
  gap: 5px;
  justify-items: start;
}
.pbonus-tag {
  background: var(--ink);
  color: var(--gold);
  border-radius: 5px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.pbonus strong {
  font-size: 15.5px;
  font-weight: 800;
  line-height: 1.25;
}
.pbonus span:last-child {
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.4;
}
.pcard .pill {
  margin-top: auto;
  justify-content: center;
}
.pc-dark .pill-amber {
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5);
}
.pfree {
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  margin-top: 12px;
  opacity: 0.75;
}
/* «Σε κάθε πακέτο» — ένα κοινό band κάτω από τις τρεις κάρτες. Τα 6 τεχνικά είναι
   ίδια παντού, οπότε δεν επαναλαμβάνονται μέσα σε κάθε κάρτα (ο πελάτης χάνεται). */
.incl-band {
  margin-top: 18px;
  padding: 20px 24px 18px;
  border: 1.5px dashed var(--ink);
  border-radius: 18px;
  text-align: left;
}
.incl-h {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 12px;
}
.incl-band ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px 26px;
}
.incl-band li {
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.4;
  padding-left: 24px;
  position: relative;
}
.incl-band li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--gold);
  font-size: 9px;
}
.price-extra {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 18px;
  margin-top: 18px;
  text-align: left;
}
.xcard {
  border-radius: 18px;
  padding: 28px;
  border: 1.5px solid var(--ink);
}
.xc-gold {
  background: var(--gold);
  box-shadow: var(--shadow);
}
.xc-white {
  background: var(--paper-2);
}
.xprice {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 14px 0 12px;
}
.xprice small {
  font-size: 15px;
  font-weight: 700;
}
.xcard ul {
  list-style: none;
  display: grid;
  gap: 8px;
}
.xcard li {
  font-size: 14px;
  font-weight: 600;
  padding-left: 24px;
  position: relative;
}
.xcard li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--gold);
  font-size: 9px;
}
.bang {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  border: 1.5px solid var(--ink);
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 14px;
}
.xc-white h4 {
  font-size: 19px;
  margin-bottom: 10px;
}
/* μόνο η παράγραφος κειμένου της κάρτας «Email & domains» — ΟΧΙ το .xprice,
   που αλλιώς το έτρωγε λόγω μεγαλύτερης ειδικότητας (η ΒΑΣΙΚΗ έδειχνε 120€ σε 14.5px) */
.xc-white h4 + p {
  font-size: 14.5px;
  font-weight: 500;
}
.xcard li strong {
  font-weight: 800;
}

/* ---------- τι ΔΕΝ χρεώνουμε (μέσα στη σύγκριση — καμία νέα ενότητα) ---------- */
.nocharge {
  max-width: 760px;
  margin: 64px auto 0;
  text-align: left;
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  background: var(--paper-2);
  padding: 24px 26px 20px;
  box-shadow: var(--shadow);
}
.nocharge h4 {
  font-size: 20px;
  margin-bottom: 14px;
}
.nocharge h4 em {
  font-style: normal;
  color: var(--amber-ink);
}
.nocharge ul {
  list-style: none;
  display: grid;
  gap: 2px;
}
.nocharge li {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr;
  gap: 10px;
  align-items: baseline;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.nocharge li:first-child {
  border-top: 0;
}
.nc-w {
  font-weight: 700;
}
.nc-o {
  color: #7c6d5c;
  text-decoration: line-through;
}
.nc-u {
  font-weight: 800;
  color: var(--amber-ink);
}

/* ---------- δύο εγγυήσεις ---------- */
.guars {
  max-width: 760px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  text-align: left;
}
.guar {
  border-left: 3px solid var(--amber);
  padding: 4px 0 4px 16px;
}
.guar h4 {
  font-size: 17px;
  line-height: 1.25;
  margin-bottom: 5px;
}
.guar p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  color: #4a4038;
}

/* ---------- compare ---------- */
.compare {
  position: relative;
  text-align: center;
  padding: 110px clamp(18px, 3.4vw, 44px) 100px;
  max-width: var(--wrap);
  margin: 0 auto;
}
.compare .eyebrow {
  margin-bottom: 18px;
}
.compare-title {
  font-size: clamp(38px, 5vw, 62px);
}
.cmp-note {
  position: absolute;
  right: 9%;
  top: 96px;
  font-size: 15px;
  transform: rotate(4deg);
  text-align: left;
}
.compare .sub {
  margin: 22px auto 60px;
  max-width: 660px;
}
.tbl-scroll {
  overflow-x: auto;
  text-align: left;
  -webkit-overflow-scrolling: touch;
}
.tbl {
  min-width: 920px;
}
.trow {
  display: grid;
  grid-template-columns: 150px repeat(4, 1fr);
  gap: 18px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 24px 6px;
}
.trow.thead {
  border-top: 0;
  padding-bottom: 10px;
}
.tlabel {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--brown);
}
.colchip {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  border-radius: 6px;
  padding: 7px 12px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
}
.cc-gold {
  background: var(--gold);
  color: var(--ink);
}
.tc {
  font-size: 15px;
  font-weight: 700;
  position: relative;
  padding-left: 30px;
}
.tc::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
}
.tc.yes::before {
  content: "✓";
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--ink);
}
.tc.no::before {
  content: "✕";
  background: #ddd3c4;
  color: #8f8170;
}
.tc.no {
  font-weight: 600;
  color: #554839;
}
.mid-cta {
  margin-top: 90px;
}
.mid-cta p {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 28px;
}

/* ---------- dark zone: why us ---------- */
.dark-zone {
  background: var(--ink);
  color: var(--paper);
  padding: 130px 0 40px;
  margin-top: -26px;
  position: relative;
  z-index: 0;
}
/* «βροχή» δειγμάτων: columns of preview shots falling behind the zone, looping forever.
   Each strip holds its images twice, so animating it -50% → 0 wraps seamlessly. The stage
   is sticky, so the rain only ever has to fill ONE viewport no matter how tall the zone
   grows (a few dozen <img> instead of a couple hundred) — and it drifts with the scroll.
   overflow:hidden sits on the sticky element itself, never on an ancestor. The veil
   (::after, outside the dimmed .rain-inner) keeps the headline the loudest thing.

   ⚠ The strip's vertical rhythm is a margin-bottom on each <img>, NOT flex `gap` — do not
   "tidy" it back. With `gap` the strip is 2n·h + (2n−1)·g tall, i.e. one gap SHORT of two
   whole sets, so -50% lands half a gap off and every loop restart snapped the column down
   by g/2 (measured 12.94px @1440). With a trailing margin on every item the height is
   exactly 2n·(h+g), so -50% is exactly one set and the wrap is invisible. */
.rain {
  --rain-gap: clamp(12px, 1.8vw, 26px); /* one source of truth: column gap == item pitch */
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.rain-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.rain-inner {
  position: absolute;
  inset: -14% -10%;
  display: flex;
  justify-content: center;
  gap: var(--rain-gap);
  transform: rotate(-6deg);
  opacity: 0.92; /* the veil below, not this, decides how far forward the rain comes */
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 13%, #000 85%, transparent),
    linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 13%, #000 85%, transparent),
    linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}
.rain-col {
  /* stretch to fill the stage — fixed widths left dark margins at tablet sizes */
  flex: 1 1 0;
  min-width: 0;
  max-width: 340px;
}
.rain-strip {
  display: flex;
  flex-direction: column;
  /* no `gap` here — see the note above; the pitch is the img's margin-bottom */
  will-change: transform;
  animation: rain-fall var(--dur, 34s) linear var(--delay, 0s) infinite;
}
.rain-strip img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: var(--rain-gap); /* the trailing one is what makes -50% a whole set */
  aspect-ratio: 4 / 3.1;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  filter: saturate(0.72) contrast(0.94);
}
@keyframes rain-fall {
  from {
    transform: translate3d(0, -50%, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
/* The depth veil. It sits on .rain (section-anchored, NOT on the sticky stage), so its
   bands line up with the layout: ink over the heading + tile row, clearing almost to
   nothing through the empty band — where the shots read as foreground — then closing
   back down over the caption, the divider and the «μικροί» copy. The rain itself never
   changes opacity; what changes is how much ink is stacked in front of it. */
.rain::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 26% at 30% 6%, rgba(22, 19, 15, 0.97), rgba(22, 19, 15, 0.6) 60%, rgba(22, 19, 15, 0) 100%),
    /* stops track the measured layout: heading ends ~20%, tile row ~36%, caption ~64%, divider ~71% */
    linear-gradient(
      to bottom,
      rgba(22, 19, 15, 0.94) 0%,
      rgba(22, 19, 15, 0.9) 21%,
      rgba(22, 19, 15, 0.6) 30%,
      rgba(22, 19, 15, 0.12) 39%,
      rgba(22, 19, 15, 0.12) 55%,
      rgba(22, 19, 15, 0.62) 61%,
      rgba(22, 19, 15, 0.9) 67%,
      rgba(22, 19, 15, 0.94) 100%
    );
}
.why-wrap {
  position: relative;
  z-index: 1;
}

.why-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(30px, 5vw, 90px);
  align-items: end;
  margin-bottom: 64px;
}
.why-head .eyebrow {
  color: var(--grey);
  margin-bottom: 18px;
}
.why-head h3 {
  font-size: clamp(34px, 4vw, 54px);
}
.why-blurb {
  font-size: 16.5px;
  font-weight: 500;
  color: #ded2c1;
}
/* one tight row of four stat tiles, then a deliberately empty band. The previews used to
   sit here as a grid; they're the background now, so repeating them in front only hid the
   thing they were proving. */
.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
  align-items: start;
  /* the empty band under the row IS the stage — that's where the rain comes forward */
  margin-bottom: clamp(340px, 58vh, 700px);
}
.mcell {
  border-radius: 14px;
  overflow: hidden;
  background: var(--ink-3);
}
.mstat {
  background: var(--gold);
  color: var(--ink);
  padding: clamp(24px, 2.1vw, 34px);
  min-height: 200px;
  /* hard offset shadow (the site's idiom) — separates the tile from the moving rain */
  box-shadow: 14px 14px 0 rgba(22, 19, 15, 0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.mnum {
  font-size: clamp(40px, 3.4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.mstat h4 {
  font-size: 17px;
}
.mstat p:last-child {
  font-size: 13.5px;
  font-weight: 500;
}
.mosaic-cap {
  font-size: 12.5px;
  color: #8f8170;
  margin-top: 14px;
}
.small-guys {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(30px, 5vw, 90px);
  border-top: 1px solid var(--line-inv);
  margin-top: 80px;
  padding: 90px 0 80px;
}
.small-guys h3 {
  font-size: clamp(34px, 4.2vw, 56px);
}
.sg-note {
  color: var(--gold);
  font-size: 15px;
  margin-top: 26px;
  transform: rotate(-2deg);
  display: inline-block;
}
.sg-copy p {
  color: #ded2c1;
  font-weight: 500;
  margin-bottom: 18px;
}
.sg-copy .pill {
  margin-top: 10px;
}

/* ---------- faq ---------- */
.sheet-c {
  margin-top: -26px;
  padding-top: 26px;
}
.faq-sec {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 90px clamp(18px, 3.4vw, 44px) 40px;
}
.faq-box {
  background: var(--gold);
  border: 1.5px solid var(--ink);
  border-radius: var(--r-big);
  box-shadow: 6px 6px 0 var(--ink);
  padding: clamp(30px, 4.5vw, 66px);
}
.faq-box h3 {
  font-size: clamp(44px, 5.5vw, 70px);
  margin-bottom: 34px;
}
.faq-box details {
  border-top: 1.5px solid var(--ink);
}
.faq-box summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 800;
  padding: 22px 2px;
}
.faq-box summary::-webkit-details-marker {
  display: none;
}
.chev {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  font-size: 15px;
  line-height: 1;
  padding-bottom: 4px;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
details[open] .chev {
  transform: rotate(180deg);
  background: var(--ink);
  color: var(--gold);
  padding-bottom: 0;
  padding-top: 4px;
}
.faq-box details p {
  padding: 0 2px 24px;
  max-width: 820px;
  font-size: 15.5px;
  font-weight: 500;
}

/* ---------- final cta + form ---------- */
.final {
  text-align: center;
  padding: 100px clamp(18px, 3.4vw, 44px) 110px;
  max-width: var(--wrap);
  margin: 0 auto;
}
.kicker-dot {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.kicker-dot i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--amber);
  border: 1px solid var(--ink);
}
.final h2 {
  font-size: clamp(38px, 5.6vw, 72px);
  margin: 20px 0 22px;
  letter-spacing: -0.03em;
}
.final > .sub {
  margin: 0 auto 60px;
}
.form-card {
  background: var(--gold);
  border: 1.5px solid var(--ink);
  border-radius: var(--r-big);
  box-shadow: 6px 6px 0 var(--ink);
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 52px);
  text-align: left;
}
.form-card h3 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin-bottom: 26px;
}
#lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
#lead-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
}
.f-full {
  grid-column: 1/-1;
}
#lead-form input,
#lead-form textarea {
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: var(--paper-2);
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  padding: 15px 16px;
  width: 100%;
}
#lead-form textarea {
  resize: vertical;
}
#lead-form input:focus,
#lead-form textarea:focus {
  outline: 3px solid var(--ink);
  outline-offset: 1px;
}
#lead-form ::placeholder {
  color: #7c6d5b;
}
.f-foot {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.f-foot p {
  font-size: 13.5px;
  font-weight: 700;
  text-align: right;
}
.form-alt {
  margin-top: 22px;
  font-size: 14px;
  font-weight: 600;
}
.form-alt a {
  font-weight: 800;
}

/* ---------- footer ---------- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding-top: 110px;
  position: relative;
  z-index: 0;
  margin-top: -26px;
  overflow: hidden;
}
.f-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.6fr;
  gap: clamp(28px, 4vw, 70px);
  padding-top: 26px;
}
.f-brand p:not(.f-logo) {
  color: var(--grey);
  max-width: 340px;
  margin: 18px 0 26px;
  font-size: 15px;
}
.f-head {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #8f8170;
  margin-bottom: 16px;
}
.f-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.f-col a {
  color: var(--paper);
  text-decoration: none;
  font-size: 15.5px;
  font-weight: 600;
}
.f-col a:hover {
  color: var(--amber);
}
.f-legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line-inv);
  margin-top: 70px;
  padding: 26px 0 44px;
  font-size: 13.5px;
  color: var(--grey);
}

/* ---------- reveal on scroll ---------- */
.rv {
  opacity: 0;
  transform: translateY(26px);
}
.rv.in {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.6, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}
@media (prefers-reduced-motion: reduce) {
  .rv {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .pill,
  .chev {
    transition: none;
  }
  /* site.js never builds the rain under reduced motion — this is the belt-and-braces */
  .rain {
    display: none;
  }
  /* ούτε την κυλιόμενη λίστα ούτε τα σημειώματα — μένουν τα δύο στατικά του HTML */
  .todo-roll.rolling {
    animation: none;
  }
  .note {
    transition: none;
  }
}

/* ---------- responsive ---------- */
@media (max-width: 1160px) {
  /* direct children only — the strip's own .pol cards live inside .hero too, and a
     descendant selector here used to hide them, leaving the strip an empty 86px box */
  .hero > .pol {
    display: none;
  }
  .hero-note {
    display: none;
  }
  .hero {
    min-height: 0;
    padding-top: 150px;
    padding-bottom: 40px;
  }
  .pol-strip {
    display: flex;
    /* όχι stretch: οι κάρτες έχουν διαφορετικό --w, οπότε το stretch άφηνε στις μικρές
       ως και 50px λευκό κάτω από τη λεζάντα — έμοιαζε με λάθος, όχι με πλαίσιο πολαρόιντ */
    align-items: flex-start;
    gap: 20px;
    overflow-x: auto;
    padding: 56px 24px 34px;
    -webkit-overflow-scrolling: touch;
    /* κυλάει μόνο του (site.js) — η μπάρα θα φαινόταν να «τρέχει» χωρίς λόγο */
    scrollbar-width: none;
  }
  .pol-strip::-webkit-scrollbar {
    display: none;
  }
  .pol-strip .pol {
    width: calc(276px * var(--w, 1));
  }
  /* πιο ψηλή κάρτα σε κινητό: τα δείγματα είναι screenshots site — με 4/3 (αντί 16/10)
     φαίνεται περισσότερη σελίδα κάτω από το hero τους, χωρίς να πλαταίνει η σειρά */
  .pol-strip .pol img {
    aspect-ratio: 4/3;
  }
}
@media (max-width: 1000px) {
  .nav-pill {
    display: none;
  }
  .hdr-cta {
    display: none;
  }
  .burger {
    display: flex;
  }
  .problem-box {
    grid-template-columns: 1fr;
  }
  .problem-copy {
    padding: 6px 6px 10px;
  }
  .st-1 {
    left: auto;
    right: 2px;
  }
  .st-2 {
    top: 44%;
  }
  .simple-grid {
    grid-template-columns: 1fr;
  }
  .one-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .board {
    display: flex;
    overflow-x: auto;
    min-height: 0;
    gap: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .bcol {
    flex: 0 0 240px;
    border-left: 1px solid var(--line);
  }
  .bc-1,
  .bc-2,
  .bc-3,
  .bc-4,
  .bc-6 {
    margin-top: 0;
  }
  .board-note {
    position: static;
    transform: none;
    margin: 0 0 18px auto;
    width: max-content;
    text-align: right;
  }
  .why-head {
    grid-template-columns: 1fr;
  }
  /* four across gets cramped below ~1100px — two rows of two, same tight block */
  .mosaic {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: clamp(260px, 44vh, 480px);
  }
  .small-guys {
    grid-template-columns: 1fr;
    padding: 70px 0 60px;
  }
  .price-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }
  .price-extra {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }
  .incl-band {
    max-width: 560px;
    margin-inline: auto;
  }
  .incl-band ul {
    grid-template-columns: 1fr 1fr;
  }
  .guars {
    grid-template-columns: 1fr;
  }
  /* οι τρεις στήλες χωράνε άνετα μέχρι τα ~700px — δεν σπάμε το footer εδώ */
  .f-grid {
    gap: clamp(24px, 3.5vw, 60px);
  }
  .cmp-note {
    display: none;
  }
  .meet-note {
    position: static;
    display: inline-block;
    margin-top: 30px;
    transform: rotate(-4deg);
  }
}
@media (max-width: 700px) {
  /* phones: 2×2 block, tighter type so «Σχέδια-προτάσεις» doesn't hyphen-break */
  .mosaic {
    gap: 12px;
    margin-bottom: clamp(220px, 38vh, 340px);
  }
  .mstat {
    min-height: 0;
    padding: 18px 16px;
    box-shadow: 9px 9px 0 rgba(22, 19, 15, 0.55);
  }
  .mnum {
    font-size: 32px;
  }
  .mstat h4 {
    font-size: 14.5px;
  }
  .mstat p:last-child {
    font-size: 12px;
  }
  /* footer σε δύο στήλες αντί για μία μακριά κολόνα: αριστερά η μάρκα
     (λογότυπο/κείμενο/κουμπί), δεξιά ΠΛΟΗΓΗΣΗ και από κάτω ΕΠΙΚΟΙΝΩΝΙΑ —
     το .f-brand πιάνει και τις δύο γραμμές, οπότε τα δύο .f-col πέφτουν
     μόνα τους στη 2η στήλη */
  .f-grid {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 34px clamp(18px, 5vw, 44px);
  }
  .f-brand {
    grid-column: 1;
    grid-row: 1 / span 2;
  }
  .f-brand p:not(.f-logo) {
    margin: 16px 0 22px;
  }
  .f-legal {
    margin-top: 48px;
  }
  /* the copy stacks straight over the rain on phones — hold it further back */
  .rain-inner {
    opacity: 0.6;
  }
  /* and the zone is proportionally taller here: tiles end ~45%, caption starts ~59% */
  .rain::after {
    background:
      radial-gradient(90% 24% at 40% 6%, rgba(22, 19, 15, 0.97), rgba(22, 19, 15, 0.6) 60%, rgba(22, 19, 15, 0) 100%),
      linear-gradient(
        to bottom,
        rgba(22, 19, 15, 0.94) 0%,
        rgba(22, 19, 15, 0.9) 30%,
        rgba(22, 19, 15, 0.5) 42%,
        rgba(22, 19, 15, 0.1) 48%,
        rgba(22, 19, 15, 0.1) 54%,
        rgba(22, 19, 15, 0.72) 58%,
        rgba(22, 19, 15, 0.92) 63%,
        rgba(22, 19, 15, 0.94) 100%
      );
  }
}

@media (max-width: 560px) {
  .one-cards {
    grid-template-columns: 1fr;
  }
  .incl-band ul {
    grid-template-columns: 1fr;
  }
  /* τρεις στήλες δεν χωράνε σε τηλέφωνο: τίτλος από πάνω, «άλλοι | εμείς» από κάτω */
  .nocharge li {
    grid-template-columns: auto 1fr;
    grid-template-areas: "w w" "o u";
    gap: 3px 12px;
  }
  .nc-w {
    grid-area: w;
  }
  .nc-o {
    grid-area: o;
  }
  .nc-u {
    grid-area: u;
  }
  #lead-form {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: clamp(42px, 12vw, 56px);
  }
  .cta-row .pill-big {
    width: 100%;
    justify-content: center;
  }
  .f-foot {
    justify-content: center;
    text-align: center;
  }
  .f-foot p {
    text-align: center;
  }
  /* σε τηλέφωνο η στήλη της μάρκας είναι ~200px — μικραίνουμε λογότυπο, κείμενο
     και κουμπί ώστε να μη βγει έξω το pill (scrollWidth) */
  .f-logo img {
    height: 62px;
  }
  .f-brand p:not(.f-logo) {
    font-size: 13.5px;
    margin: 14px 0 20px;
  }
  .f-brand .pill {
    padding: 12px 16px;
    font-size: 11.5px;
    gap: 8px;
  }
  .f-col a {
    font-size: 14px;
  }
}
