/* DAS-XL — FinTech Haut de Gamme */
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500&display=swap');

:root {
  --navy: #0A1F44;
  --navy-700: #16305C;
  --navy-50: #EEF1F6;
  --emerald: #0E7C5A;
  --emerald-700: #0B6347;
  --emerald-50: #E6F2EC;
  --slate-900: #0F172A;
  --slate-700: #334155;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-200: #E2E8F0;
  --ivory: #FAFAF7;
  --ivory-2: #F4F3EE;
  --line: #E6E4DC;
  --line-2: #D8D6CE;
  --white: #FFFFFF;
  --danger: #B45309;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 0 rgba(15,23,42,.04), 0 1px 2px rgba(15,23,42,.04);
  --shadow-md: 0 4px 16px -8px rgba(10,31,68,.18), 0 1px 0 rgba(15,23,42,.04);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--slate-700);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11", "tnum";
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1,h2,h3,h4 {
  font-family: 'Geist', sans-serif;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  font-weight: 500;
}
h1 { font-size: clamp(40px, 5.2vw, 64px); letter-spacing: -0.035em; font-weight: 500; }
h2 { font-size: clamp(28px, 3.2vw, 40px); letter-spacing: -0.028em; }
h3 { font-size: 20px; letter-spacing: -0.015em; font-weight: 500; }
h4 { font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--slate-500); font-weight: 500; font-family: 'Geist Mono', monospace; }
p { margin: 0; }

.mono { font-family: 'Geist Mono', monospace; font-feature-settings: "tnum"; }
.eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-500);
  font-weight: 500;
}

/* Layout primitives */
.shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) { .shell { padding: 0 20px; } }

.section { padding: 96px 0; }
.section--sm { padding: 56px 0; }
@media (max-width: 720px) { .section { padding: 64px 0; } }

.row { display: flex; align-items: center; gap: 16px; }
.col { display: flex; flex-direction: column; gap: 16px; }
.grid { display: grid; gap: 24px; }
.spacer { flex: 1; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .15s ease, border-color .15s ease, transform .1s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--emerald); color: white; border-color: var(--emerald); }
.btn--primary:hover { background: var(--emerald-700); border-color: var(--emerald-700); }
.btn--navy { background: var(--navy); color: white; border-color: var(--navy); }
.btn--navy:hover { background: var(--navy-700); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line-2); }
.btn--ghost:hover { background: var(--white); border-color: var(--navy); }
.btn--link { background: transparent; color: var(--navy); padding: 0; height: auto; border: none; }
.btn--link:hover { color: var(--emerald); }
.btn--sm { height: 36px; padding: 0 14px; font-size: 13px; }
.btn--lg { height: 52px; padding: 0 24px; font-size: 15px; }

.btn .arrow {
  display: inline-block;
  width: 14px; height: 14px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 4px;
  transition: transform .15s ease;
}
.btn:hover .arrow { transform: rotate(45deg) translate(2px, -2px); }

/* Badge / chip */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 26px;
  padding: 0 10px;
  border-radius: 100px;
  background: var(--ivory-2);
  border: 1px solid var(--line);
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--slate-700);
}
.chip--emerald { background: var(--emerald-50); border-color: #BFE0CF; color: var(--emerald-700); }
.chip--navy { background: var(--navy-50); border-color: #C8D4E5; color: var(--navy); }
.chip .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: 0.7; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
  font-size: 17px;
}
.logo__mark {
  width: 28px; height: 28px;
  background: var(--navy);
  border-radius: 5px;
  position: relative;
  display: grid;
  place-items: center;
  color: white;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Geist Mono', monospace;
  letter-spacing: -0.04em;
}
.logo__mark::after {
  content: '';
  position: absolute;
  inset: 4px 4px auto auto;
  width: 6px; height: 6px;
  background: var(--emerald);
  border-radius: 50%;
}
.site-nav { display: flex; gap: 28px; }
.site-nav a {
  font-size: 14px;
  color: var(--slate-700);
  font-weight: 400;
  transition: color .15s ease;
}
.site-nav a:hover, .site-nav a.is-active { color: var(--navy); }
.site-nav a.is-active { font-weight: 500; }
@media (max-width: 720px) { .site-nav { display: none; } }

/* Hero */
.hero {
  padding: 96px 0 64px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
}
@media (max-width: 960px) { .hero__grid { grid-template-columns: 1fr; gap: 40px; } }
.hero__title { margin-top: 20px; max-width: 14ch; }
.hero__sub {
  font-size: 17px;
  color: var(--slate-500);
  margin-top: 24px;
  max-width: 56ch;
  line-height: 1.5;
}
.hero__cta { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }

/* Stat strip */
.statbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.statbar__cell {
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}
.statbar__cell:last-child { border-right: none; }
.statbar__num {
  font-family: 'Geist', sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
  font-feature-settings: "tnum";
}
.statbar__lbl { font-size: 12px; color: var(--slate-500); margin-top: 8px; font-family: 'Geist Mono', monospace; letter-spacing: 0.02em; }
@media (max-width: 720px) {
  .statbar { grid-template-columns: repeat(2, 1fr); }
  .statbar__cell:nth-child(2) { border-right: none; }
  .statbar__cell:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* Card / Pack tile */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
  position: relative;
}
.card:hover { border-color: var(--line-2); box-shadow: var(--shadow-md); }
.card__num {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--slate-400);
  letter-spacing: 0.1em;
}
.card__title { margin-top: 12px; font-size: 22px; }
.card__lead { margin-top: 12px; color: var(--slate-500); font-size: 14px; line-height: 1.5; }
.card__meta { display: flex; gap: 12px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 12px; color: var(--slate-500); font-family: 'Geist Mono', monospace; }
.card__price { font-size: 18px; color: var(--navy); font-weight: 500; }

/* Pack hero card (catalogue) */
.pack {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  min-width: 0;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.pack:hover { border-color: var(--line-2); box-shadow: var(--shadow-md); }
.pack__head {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
}
.pack__index {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--slate-400);
  letter-spacing: 0.12em;
}
.pack__name { font-size: 22px; margin-top: 6px; max-width: 24ch; }
.pack__body { padding: 24px 28px; display: grid; gap: 18px; }
.pack__target {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  font-size: 13px;
}
.pack__target dt { color: var(--slate-400); font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; padding-top: 2px; }
.pack__target dd { margin: 0; color: var(--slate-700); }
.pack__files {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px dashed var(--line);
  padding-top: 18px;
}
.pack__files li {
  list-style: none;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--slate-700);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  overflow-wrap: anywhere;
  min-width: 0;
}
.pack__files li::before {
  content: 'xlsx';
  display: inline-block;
  font-size: 9px;
  font-weight: 500;
  padding: 2px 5px;
  border-radius: 3px;
  background: var(--emerald-50);
  color: var(--emerald-700);
  letter-spacing: 0.04em;
}
.pack__foot {
  padding: 20px 28px;
  background: var(--ivory-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
}
.pack__price { font-family: 'Geist', sans-serif; font-size: 24px; color: var(--navy); font-weight: 500; letter-spacing: -0.02em; }
.pack__price small { font-size: 12px; color: var(--slate-500); font-weight: 400; }

/* Filter bar */
.filterbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  flex-wrap: wrap;
}
.filter {
  height: 36px;
  padding: 0 16px;
  border-radius: 100px;
  border: 1px solid transparent;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  color: var(--slate-700);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .12s ease, color .12s ease, border-color .12s ease;
}
.filter:hover { background: var(--ivory-2); }
.filter.is-active { background: var(--navy); color: white; }
.filter .count {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  opacity: 0.7;
  padding: 1px 6px;
  border-radius: 100px;
  background: rgba(255,255,255,0.12);
}
.filter:not(.is-active) .count { background: var(--ivory-2); opacity: 1; color: var(--slate-500); }

/* Reassure row */
.reassure {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.reassure__item {
  padding: 32px 32px 32px 0;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.reassure__item:nth-child(2) { padding-left: 32px; }
.reassure__item:nth-child(3) { padding-left: 32px; border-right: none; }
.reassure__item h3 { font-size: 17px; color: var(--navy); }
.reassure__item p { font-size: 14px; color: var(--slate-500); }
@media (max-width: 720px) {
  .reassure { grid-template-columns: 1fr; }
  .reassure__item { padding: 24px 0 !important; border-right: none; border-bottom: 1px solid var(--line); }
  .reassure__item:last-child { border-bottom: none; }
}

/* Founder block */
.founder {
  background: var(--navy);
  color: white;
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.founder::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 40%;
  background:
    linear-gradient(to right, transparent, rgba(14,124,90,0.08)),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 12px);
  pointer-events: none;
}
.founder h2 { color: white; max-width: 18ch; }
.founder p { color: rgba(255,255,255,0.75); font-size: 15px; }
.founder__avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1B3A6E, #0E7C5A 130%);
  display: grid;
  place-items: center;
  color: white;
  font-family: 'Geist', sans-serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.founder__sig {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  letter-spacing: 0.06em;
}
@media (max-width: 960px) {
  .founder { grid-template-columns: 1fr; padding: 40px 28px; }
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ivory-2);
  padding: 64px 0 32px;
  margin-top: 96px;
  font-size: 13px;
  color: var(--slate-500);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 720px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
.site-footer h4 { color: var(--navy); font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: 0.1em; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer a:hover { color: var(--navy); }
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--slate-400);
}
.site-footer .legal {
  margin-top: 24px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 12px;
  line-height: 1.5;
}
.site-footer .legal strong { color: var(--navy); font-weight: 500; }

/* Page intro */
.page-intro {
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--line);
}
.page-intro__eyebrow { color: var(--emerald-700); font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
.page-intro h1 { margin-top: 16px; font-size: clamp(36px, 4.4vw, 52px); }
.page-intro__lead { margin-top: 20px; font-size: 17px; color: var(--slate-500); max-width: 64ch; line-height: 1.5; }

/* Disclaimer block */
.disclaimer {
  background: #FFF8EE;
  border: 1px solid #F1D89A;
  border-left: 3px solid #C7872C;
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 13px;
  color: #6B4A1E;
  line-height: 1.55;
}
.disclaimer strong { display: block; color: #5A3C12; font-weight: 500; margin-bottom: 6px; font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }

/* Form */
.form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 12px; font-family: 'Geist Mono', monospace; color: var(--slate-500); letter-spacing: 0.06em; text-transform: uppercase; }
.field input, .field textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--slate-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  transition: border-color .12s ease, box-shadow .12s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(10,31,68,0.08); }
.field textarea { min-height: 140px; resize: vertical; }

/* Payment buttons */
.pay-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  color: var(--slate-900);
}
.pay-btn:hover { border-color: var(--navy); box-shadow: var(--shadow-sm); }
.pay-btn__brand { display: flex; align-items: center; gap: 12px; font-weight: 500; }
.pay-btn__brand .pill {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-radius: 3px;
  background: var(--navy);
  color: white;
  font-weight: 500;
}
.pay-btn__brand .pill.revolut { background: #0666EB; }
.pay-btn__meta { font-size: 12px; color: var(--slate-500); font-family: 'Geist Mono', monospace; }

/* Table-y list (product features) */
.feature-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.feature-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--slate-700);
}
.feature-list li::before {
  content: '';
  width: 16px; height: 16px;
  border: 1.5px solid var(--emerald);
  border-radius: 50%;
  margin-top: 3px;
  background:
    linear-gradient(45deg, transparent 50%, var(--emerald) 50%, var(--emerald) 60%, transparent 60%) no-repeat center / 60% 60%;
  position: relative;
}

/* Highlight strip */
.callout {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.callout h3 { color: var(--navy); }
.callout p { color: var(--slate-500); font-size: 14px; margin-top: 6px; }

/* Utilities */
.divider { height: 1px; background: var(--line); width: 100%; }
.muted { color: var(--slate-500); }
.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cols-2-1 { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; }
@media (max-width: 960px) {
  .cols-2, .cols-2-1 { grid-template-columns: 1fr; gap: 32px; }
  .cols-3 { grid-template-columns: 1fr; }
}

/* Visual: Excel-like ribbon mock */
.sheet {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  box-shadow: var(--shadow-md);
}
.sheet__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--ivory-2);
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  color: var(--slate-500);
}
.sheet__bar .dot { width: 9px; height: 9px; border-radius: 50%; background: #D8D6CE; }
.sheet__bar .dot.r { background: #E07A6A; }
.sheet__bar .dot.y { background: #E0BC5A; }
.sheet__bar .dot.g { background: var(--emerald); }
.sheet__bar .name { margin-left: 8px; }
.sheet__grid {
  display: grid;
  grid-template-columns: 40px repeat(5, 1fr);
}
.sheet__grid > div {
  padding: 8px 10px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  color: var(--slate-700);
  background: white;
  min-height: 32px;
  display: flex;
  align-items: center;
}
.sheet__grid > div:nth-child(6n) { border-right: none; }
.sheet__grid > .h {
  background: var(--ivory-2);
  color: var(--slate-500);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sheet__grid > .rh { background: var(--ivory-2); justify-content: center; color: var(--slate-400); }
.sheet__grid > .v { color: var(--navy); font-feature-settings: "tnum"; }
.sheet__grid > .v.pos { color: var(--emerald-700); }
.sheet__grid > .v.neg { color: #B45309; }
.sheet__tabs {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--line);
  background: var(--ivory-2);
  padding: 6px 8px;
  font-size: 11px;
}
.sheet__tabs span {
  padding: 4px 12px;
  border-radius: 3px;
  color: var(--slate-500);
}
.sheet__tabs span.active { background: white; color: var(--navy); border: 1px solid var(--line); }
