:root {
  --bg: #f5f5f3;
  --white: #ffffff;
  --ink: #0a0a0a;
  --ink-soft: #1a1a1a;
  --text: #1a1a1a;
  --text-sec: #555555;
  --text-muted: #888888;
  --text-dim: #aaaaaa;
  --border: #e8e8e8;
  --border-in: #cccccc;
  --danger: #c0392b;
  --warn-bg: #fdf6e3;
  --warn-bd: #d4a800;
  --gold: #9c7f4f;
  --gold-soft: #c9b48c;
  --spring: cubic-bezier(.22, 1, .36, 1);
  --display: 'Cormorant Garamond', Georgia, serif;
  --body: 'Inter', -apple-system, Helvetica, sans-serif;
  --mono: 'Inter', ui-monospace, 'SF Mono', Menlo, monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }

img, svg { display: block; max-width: 100%; }

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 1px;
}
.hero :focus-visible { outline-color: var(--white); }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Nav ─────────────────────────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245,245,243,.72);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 1px 0 rgba(10,10,10,.05);
  transition: box-shadow .3s ease, background .3s ease;
}
.nav.is-scrolled {
  background: rgba(245,245,243,.88);
  box-shadow: 0 1px 0 rgba(10,10,10,.09), 0 12px 24px rgba(10,10,10,.04);
}
@media (prefers-reduced-transparency: reduce) {
  .nav { background: var(--bg); backdrop-filter: none; -webkit-backdrop-filter: none; }
}
.nav .wrap {
  max-width: 1320px;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 1px;
  color: var(--ink);
}
.nav-logo-mark { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sec);
  letter-spacing: .3px;
  position: relative;
  transition: color .2s ease;
}
.nav-links a.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -5px;
  height: 1px;
  background: var(--ink);
  transition: right .28s var(--spring);
}
.nav-links a.nav-link:hover { color: var(--ink); }
.nav-links a.nav-link:hover::after { right: 0; }

.nav-login-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sec);
  transition: color .2s ease;
}
.nav-login-link:hover { color: var(--ink); }

.btn {
  display: inline-block;
  padding: 12px 26px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s, transform .3s var(--spring), box-shadow .3s var(--spring);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(10,10,10,.12); }
.btn:active { transform: scale(.96) translateY(0); box-shadow: none; transition-duration: .1s; }
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: var(--ink-soft); }
.btn-outline { background: transparent; color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-sm { padding: 9px 16px; font-size: 12px; }

/* ── Hero ────────────────────────────────────────────────────────────── */

.hero {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 148px 0 116px;
  text-align: center;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-tag, .hero h1, .hero p.lead, .hero-cta {
    animation: heroIn .9s cubic-bezier(.16,.8,.24,1) both;
  }
  .hero-tag  { animation-delay: .05s; }
  .hero h1   { animation-delay: .16s; }
  .hero p.lead { animation-delay: .3s; }
  .hero-cta  { animation-delay: .44s; }
}
@keyframes heroIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.hero::before {
  content: 'A';
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: 520px;
  color: rgba(255,255,255,.03);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.hero-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-dim);
  position: relative;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  max-width: 820px;
  margin: 22px auto 0;
  position: relative;
}
.hero h1 em { font-style: italic; color: var(--text-dim); }
.hero p.lead {
  max-width: 560px;
  margin: 26px auto 0;
  font-size: 17px;
  color: rgba(255,255,255,.6);
  position: relative;
  line-height: 1.7;
}
.hero p.lead-sub {
  max-width: 500px;
  margin-top: 14px;
  font-size: 15px;
  color: rgba(255,255,255,.4);
}
@media (prefers-reduced-motion: no-preference) {
  .hero p.lead-sub { animation-delay: .38s; }
}
.hero-cta {
  margin-top: 44px;
  display: flex;
  gap: 16px;
  justify-content: center;
  position: relative;
}
.hero .btn-outline { border-color: rgba(255,255,255,.35); color: var(--white); }
.hero .btn-outline:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.hero .btn-primary { background: var(--white); color: var(--ink); border-color: var(--white); }
.hero .btn-primary:hover { background: var(--bg); }

/* Signature element: a small commission-statement corner, the one real
   artifact from Aristos's own vocabulary anchoring the hero. */
.hero-signature {
  position: absolute;
  z-index: 2;
  right: 6%;
  bottom: 18%;
  width: 190px;
  padding: 15px 18px 17px;
  text-align: left;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  backdrop-filter: blur(6px);
}
.hero-signature-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  white-space: nowrap;
}
.hero-signature-number {
  font-family: var(--display);
  font-style: italic;
  font-size: 21px;
  color: var(--white);
  margin-top: 5px;
}
.hero-signature-amount {
  font-size: 11px;
  letter-spacing: .3px;
  color: var(--gold-soft);
  margin-top: 10px;
}
.hero-signature-seal {
  position: absolute;
  top: -12px; right: -12px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
  background: rgba(10,10,10,.7);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: var(--gold-soft);
}
@media (prefers-reduced-motion: no-preference) {
  .hero-signature {
    animation: heroIn .9s var(--spring) both;
    animation-delay: .52s;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-signature { animation: heroIn .9s ease both; animation-delay: .52s; }
}
@media (max-width: 900px) {
  .hero-signature { display: none; }
}

/* ── Section shell ───────────────────────────────────────────────────── */

section.section { padding: 132px 0; }
section.section.alt { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-head { max-width: 640px; margin: 0 auto 64px; text-align: center; }
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.section-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-top: 12px;
  color: var(--ink);
}
.section-lead {
  margin-top: 16px;
  font-size: 16px;
  color: var(--text-sec);
  line-height: 1.7;
}

/* ── Reveal-on-scroll ────────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(.98);
  transition: opacity .8s var(--spring), transform .8s var(--spring);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Problem section ─────────────────────────────────────────────────── */

.problem-narrative {
  max-width: 720px;
  margin: 0 auto 56px;
}
.problem-narrative p {
  color: var(--text-sec);
  font-size: 15.5px;
  line-height: 1.85;
  margin-bottom: 16px;
}
.problem-narrative p:last-child { margin-bottom: 0; }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 920px;
  margin: 0 auto;
}
.problem-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg);
}
.problem-card.is-good { border-color: var(--ink); background: var(--white); }
.problem-card h3 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 14px;
}
.problem-card p { color: var(--text-sec); font-size: 14.5px; line-height: 1.7; }
.problem-card ul { margin-top: 14px; padding-left: 18px; color: var(--text-sec); font-size: 14.5px; line-height: 1.9; }

/* ── Feature stories (alternating illustrated rows) ─────────────────── */

.feature-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 104px;
}
.feature-story:last-of-type { margin-bottom: 88px; }
.feature-story.reverse .feature-story-media { order: 1; }
.feature-story.reverse .feature-story-text { order: 2; }

.feature-story-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-in);
  border-radius: 20px;
  padding: 5px 12px 5px 8px;
  margin-bottom: 20px;
}
.feature-story-kicker::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.feature-story-text h3 {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: 30px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.2;
}
.feature-story-text p {
  color: var(--text-sec);
  font-size: 15.5px;
  line-height: 1.85;
}

.mockup-frame {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(10,10,10,.06);
  transition: transform .45s var(--spring), box-shadow .45s ease;
}
.mockup-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 64px rgba(10,10,10,.11);
}
.mockup-canvas {
  padding: 32px 26px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-illust { width: 100%; height: auto; max-width: 320px; display: block; }

.mockup-caption {
  padding: 10px 16px 14px;
  border-top: 1px solid var(--border);
  font-size: 10.5px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
}

.feature-grid-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

@media (max-width: 860px) {
  .feature-story {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 72px;
  }
  .feature-story .feature-story-media,
  .feature-story .feature-story-text { order: 0 !important; }
}

/* ── Feature grid ────────────────────────────────────────────────────── */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  max-width: 1000px;
  margin: 0 auto;
}
.feature-card {
  background: var(--white);
  padding: 36px 30px;
}
.feature-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border-in);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 15.5px; font-weight: 600; margin-bottom: 8px; }
.feature-card p { font-size: 13.5px; color: var(--text-sec); line-height: 1.6; }

/* ── Pricing ─────────────────────────────────────────────────────────── */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--spring), box-shadow .35s ease, border-color .35s ease;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(10,10,10,.09);
  border-color: var(--border-in);
}
.price-card.is-featured {
  border-color: var(--ink);
  box-shadow: 0 12px 32px rgba(10,10,10,.08);
  position: relative;
}
.price-card.is-featured:hover { box-shadow: 0 26px 52px rgba(10,10,10,.14); }
.price-card.is-featured::before {
  content: 'Empfohlen';
  position: absolute;
  top: -13px; left: 28px;
  background: var(--gold);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}
.price-name { font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); }
.price-amount { font-family: var(--display); font-weight: 300; font-size: 42px; color: var(--ink); margin-top: 12px; }
.price-amount span { font-size: 15px; font-family: var(--body); font-weight: 500; color: var(--text-muted); }
.price-users { font-size: 13px; color: var(--text-sec); margin-top: 6px; }
.price-rule { height: 1px; background: var(--border); margin: 24px 0; }
.price-features { list-style: none; flex: 1; }
.price-features li {
  font-size: 13.5px;
  color: var(--text-sec);
  padding: 7px 0 7px 22px;
  position: relative;
  line-height: 1.5;
}
.price-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ink);
  opacity: .55;
}
.price-features li.is-new { color: var(--ink); font-weight: 500; }
.price-features li.is-new::before { opacity: 1; }
.price-card .btn { margin-top: 28px; text-align: center; }

/* ── Trust section ──────────────────────────────────────────────────── */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.trust-item { padding-top: 20px; border-top: 2px solid var(--gold); }
.trust-item h3 { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.trust-item p { font-size: 13.5px; color: var(--text-sec); line-height: 1.65; }

/* ── Contact / closing CTA band ─────────────────────────────────────── */

.cta-section {
  background: var(--ink);
}
.cta-section .section-eyebrow { color: rgba(255,255,255,.45); }
.cta-section .section-title { color: var(--white); }
.cta-section .section-lead { color: rgba(255,255,255,.6); }

.contact-box {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px;
}
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13px; font-weight: 500; color: var(--text-sec); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--white);
  border: 1px solid var(--border-in);
  border-radius: 2px;
  font-size: 15px;
  font-family: var(--body);
  color: var(--ink);
  outline: none;
  resize: vertical;
  transition: border-color .18s, box-shadow .18s;
}
.field input:focus, .field textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(10,10,10,.08);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.form-msg { font-size: 13.5px; min-height: 18px; margin: -6px 0 16px; }
.form-msg.is-error { color: var(--danger); }
.form-msg.is-ok { color: #2e7d32; }
.contact-box .btn { width: 100%; }

/* ── Footer ──────────────────────────────────────────────────────────── */

footer.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.5);
  padding: 44px 0;
}
footer.site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
  color: rgba(255,255,255,.85);
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.5); }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.35); }
.footer-note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 12px;
  color: rgba(255,255,255,.3);
  text-align: center;
}

/* ── Simple legal pages (Impressum / Datenschutz) ───────────────────── */

.legal-main { padding: 72px 0 100px; }
.legal-box { max-width: 720px; margin: 0 auto; }
.legal-box h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: 36px;
  margin-bottom: 28px;
}
.legal-box h2 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  margin: 32px 0 10px;
}
.legal-box p { color: var(--text-sec); font-size: 15px; line-height: 1.8; margin-bottom: 10px; }
.legal-box ul { padding-left: 20px; color: var(--text-sec); font-size: 15px; line-height: 1.9; margin-bottom: 10px; }

.preliminary-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--warn-bg);
  border: 1px solid var(--warn-bd);
  border-radius: 4px;
  padding: 16px 20px;
  margin-bottom: 32px;
  font-size: 14px;
  color: #6b5600;
  line-height: 1.6;
}
.preliminary-banner strong { color: #4a3b00; }

/* ── Responsive ──────────────────────────────────────────────────────── */

@media (max-width: 860px) {
  .problem-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.is-featured { order: -1; }
}
@media (max-width: 860px) {
  .nav-links a.nav-link { display: none; }
  .nav-login-link { display: none; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .nav-links { gap: 14px; }
  .trust-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .hero { padding: 90px 0 70px; }
  footer.site-footer .wrap { flex-direction: column; align-items: flex-start; }
}
