/* AIM Transparency — landing page. Monochrome Swiss system, shared with the dashboard. */

:root {
  --ink: #0a0a0a;
  --ink-soft: #404040;
  --muted: #737373;
  --faint: #a3a3a3;
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --bg-ink: #0a0a0a;
  --line: #e5e5e5;
  --line-soft: #f0f0f0;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-sm: 10px;
  --maxw: 1140px;
  --font: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --mono: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 24px; border-radius: var(--radius-sm); font-size: 15px; font-weight: 600;
  cursor: pointer; border: 1px solid transparent; transition: background .16s ease, border-color .16s ease, transform .16s ease, color .16s ease; white-space: nowrap;
  font-family: inherit;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #262626; transform: translateY(-1px); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-sm { height: 40px; font-size: 14px; padding: 0 16px; }
.btn svg { width: 16px; height: 16px; }

/* Header */
header.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .8); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 16px; height: 66px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; letter-spacing: -.02em; font-size: 16px; }
.brand .mark {
  width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; color: #fff;
  background: var(--ink); flex: none;
}
.brand .mark svg { width: 20px; height: 20px; }
.nav-links { display: flex; gap: 28px; margin-left: 30px; }
.nav-links a { color: var(--muted); font-size: 14.5px; font-weight: 500; transition: color .15s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { margin-left: auto; display: flex; gap: 10px; align-items: center; }
@media (max-width: 760px) { .nav-links { display: none; } }

/* Eyebrow / pills */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600;
  color: var(--ink); background: #fff; border: 1px solid var(--line);
  padding: 7px 14px; border-radius: 999px; letter-spacing: -.005em;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ink); flex: none; }

/* Hero */
.hero { padding: 84px 0 36px; text-align: center; }
.hero h1 {
  font-size: clamp(38px, 6vw, 66px); line-height: 1.02; letter-spacing: -.035em; font-weight: 700;
  margin: 26px auto 0; max-width: 900px;
}
.hero h1 .grad {
  position: relative; white-space: nowrap;
  background: linear-gradient(180deg, transparent 62%, #e5e5e5 62%, #e5e5e5 92%, transparent 92%);
}
.hero p.sub { font-size: clamp(17px, 2vw, 20px); color: var(--muted); max-width: 660px; margin: 24px auto 0; line-height: 1.55; }
.hero-cta { display: flex; gap: 12px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.trust { margin-top: 22px; font-size: 13.5px; color: var(--muted); display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.trust span { display: inline-flex; align-items: center; gap: 7px; }
.trust svg { width: 15px; height: 15px; color: var(--ink); flex: none; }

/* Official EU labels strip */
.eu-row {
  margin: 36px auto 0; max-width: 760px; display: flex; flex-direction: column; align-items: center; gap: 16px;
  padding: 22px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-soft);
}
.eu-cap { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.eu-set { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; justify-content: center; }
.eu-badge {
  display: inline-flex; align-items: center; gap: 9px; background: var(--ink); color: #fff;
  font-weight: 600; font-size: 14px; letter-spacing: .01em; padding: 8px 16px 8px 9px; border-radius: 999px;
}
.eu-badge .eu-ai {
  display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 50%;
  background: #fff; color: var(--ink); font-weight: 800; font-size: 11px; letter-spacing: -.02em;
}
.eu-badge.solo { padding: 8px; }
.eu-badge .eu-word { text-transform: uppercase; letter-spacing: .04em; font-size: 12.5px; font-weight: 700; padding-right: 6px; }

/* Hero shot in a browser frame */
.shot {
  margin: 56px auto 0; max-width: 1000px; border-radius: var(--radius-lg);
  border: 1px solid var(--line); background: #fff; overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(10,10,10,.28), 0 12px 28px -18px rgba(10,10,10,.18);
}
.shot .bar { height: 40px; display: flex; align-items: center; gap: 7px; padding: 0 16px; border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.shot .bar i { width: 11px; height: 11px; border-radius: 50%; background: #d4d4d4; }
.shot img { width: 100%; display: block; }

/* Urgency band */
.band { background: var(--bg-ink); color: #fff; padding: 20px 0; }
.band .wrap { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; text-align: center; }
.band strong { color: #fff; font-weight: 600; }
.band .muted2 { color: #a3a3a3; }
.band .pill { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; background: #fff; color: var(--ink); padding: 4px 11px; border-radius: 999px; }

/* Sections */
section.block { padding: 92px 0; }
section.block.alt { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.head { text-align: center; max-width: 700px; margin: 0 auto 52px; }
.head .eyebrow { margin-bottom: 18px; }
.head h2 { font-size: clamp(28px, 3.6vw, 42px); letter-spacing: -.03em; margin: 0; line-height: 1.05; font-weight: 700; }
.head p { color: var(--muted); font-size: 17px; margin: 16px 0 0; line-height: 1.55; }
.head.oneline { max-width: 920px; }
.head.oneline h2 { font-size: clamp(26px, 3.2vw, 34px); }

/* Grids + cards */
.grid { display: grid; gap: 20px; }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .g3, .g4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .g3, .g4, .g2 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  transition: border-color .18s ease, transform .18s ease;
}
.card:hover { border-color: #d4d4d4; transform: translateY(-2px); }
.card .ico {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 18px;
  color: var(--ink); background: #fff; border: 1px solid var(--line);
}
.card .ico svg { width: 22px; height: 22px; }
.card h3 { margin: 0 0 8px; font-size: 18px; letter-spacing: -.015em; font-weight: 600; }
.card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
.card p .mono { font-family: var(--mono); font-size: .88em; color: var(--ink-soft); }

/* Steps */
.steps { display: grid; gap: 18px; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.step .num {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; font-weight: 700; font-size: 14px;
  color: #fff; background: var(--ink); margin-bottom: 16px; font-family: var(--mono);
}
.step h4 { margin: 0 0 6px; font-size: 16px; letter-spacing: -.01em; }
.step p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

/* Pricing / tiers */
.tiers { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 880px; margin: 0 auto; align-items: start; }
@media (max-width: 760px) { .tiers { grid-template-columns: 1fr; } }
.tier { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; }
.tier.featured { border-color: var(--ink); position: relative; box-shadow: 0 30px 60px -34px rgba(10,10,10,.4); }
.tier .tag { position: absolute; top: -12px; right: 26px; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: #fff; background: var(--ink); padding: 5px 13px; border-radius: 999px; }
.tier h3 { margin: 0; font-size: 19px; display: flex; align-items: center; gap: 10px; letter-spacing: -.01em; }
.tier .price { font-size: 42px; font-weight: 700; letter-spacing: -.03em; margin: 10px 0 2px; }
.tier .price small { font-size: 15px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.tier ul { list-style: none; padding: 0; margin: 22px 0 26px; display: grid; gap: 12px; }
.tier li { display: flex; gap: 11px; font-size: 14.5px; align-items: flex-start; color: var(--ink-soft); }
.tier li svg { flex: none; margin-top: 2px; width: 17px; height: 17px; color: var(--ink); }
.soon { font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); background: var(--bg-soft); border: 1px solid var(--line); padding: 3px 9px; border-radius: 999px; }

/* Waitlist */
.waitlist { background: var(--bg-ink); color: #fff; border-radius: var(--radius-lg); padding: 60px 40px; text-align: center; }
.waitlist h2 { font-size: clamp(28px, 3.6vw, 38px); letter-spacing: -.03em; margin: 0; font-weight: 700; }
.waitlist p { color: #a3a3a3; max-width: 540px; margin: 16px auto 0; }
.wl-form { display: flex; gap: 10px; max-width: 470px; margin: 28px auto 0; flex-wrap: wrap; }
.wl-form input {
  flex: 1; min-width: 220px; height: 50px; padding: 0 18px; border-radius: var(--radius-sm); border: 1px solid #333;
  background: #161616; color: #fff; font-size: 15px; outline: none; font-family: inherit;
}
.wl-form input::placeholder { color: #777; }
.wl-form input:focus { border-color: #fff; }
.wl-form .btn-primary { background: #fff; color: var(--ink); }
.wl-form .btn-primary:hover { background: #e5e5e5; }
.wl-note { font-size: 13px; color: #777; margin-top: 16px; }
.wl-note a { color: #a3a3a3; text-decoration: underline; }
.wl-ok { display: none; margin-top: 20px; font-size: 16px; color: #fff; }
.wl-ok b { color: #fff; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; transition: border-color .15s ease; }
.faq details[open] { border-color: #d4d4d4; }
.faq summary { cursor: pointer; font-weight: 600; font-size: 16px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; letter-spacing: -.01em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--muted); font-size: 22px; font-weight: 300; flex: none; }
.faq details[open] summary::after { content: '–'; }
.faq p { margin: 14px 0 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
.faq code { font-family: var(--mono); font-size: .88em; background: var(--bg-soft); border: 1px solid var(--line); padding: 1px 6px; border-radius: 6px; }

/* Footer */
footer { border-top: 1px solid var(--line); padding: 48px 0; color: var(--muted); font-size: 14px; }
footer .wrap { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; }
footer .brand { font-size: 15px; }
.disclaimer { display: flex; gap: 16px; align-items: flex-start; max-width: 920px; margin: 0 auto 44px; padding: 20px 22px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); }
.disclaimer-ico { flex: none; width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); color: var(--ink); }
.disclaimer-ico svg { width: 20px; height: 20px; }
.disclaimer-label { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); margin-bottom: 5px; }
.disclaimer p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.65; }
