/* =========================================================
   VENTARY.ORG  —  Public Marketing Site
   Brand: Petrol #003843 · Accent #72a7a0 · Gold #c69f65
   ========================================================= */

:root {
  /* ─── Ventary CI · nur 3 offizielle Markenfarben (repo ventary-ci/tokens) ─── */
  --petrol:        #003843;   /* CI Petrol — Haupt/Splash */
  --accent:        #72a7a0;   /* CI Petrol-Light — Hover/Sekundär/Borders */
  --gold:          #c69f65;   /* CI Gold — CTAs/Highlights */

  /* Tiefe & Schattierungen NUR aus den 3 CI-Farben + Schwarz/Weiß abgeleitet (color-mix), keine erfundenen Hex-Werte */
  --petrol-light:  color-mix(in srgb, var(--petrol) 82%, #fff);
  --petrol-dark:   color-mix(in srgb, var(--petrol) 78%, #000);
  --petrol-900:    color-mix(in srgb, var(--petrol) 58%, #000);

  --accent-light:  color-mix(in srgb, var(--accent) 52%, #fff);
  --accent-dark:   color-mix(in srgb, var(--accent) 72%, #000);

  --gold-light:    color-mix(in srgb, var(--gold) 60%, #fff);
  --gold-dark:     color-mix(in srgb, var(--gold) 76%, #000);

  --ink:           color-mix(in srgb, var(--petrol) 80%, #000);
  --muted:         color-mix(in srgb, var(--petrol) 50%, #fff);
  --line:          rgba(114, 167, 160, 0.18);   /* CI --v-b-subtle/default */
  --bg:            color-mix(in srgb, var(--accent) 5%, #fff);
  --bg-soft:       color-mix(in srgb, var(--accent) 10%, #fff);
  --white:         #ffffff;

  /* ─── CI Radii (6/8/12/16, pill 100px) ─── */
  --radius:        12px;
  --radius-lg:     16px;
  --shadow-sm:     0 2px 10px rgba(0, 38, 45, 0.06);
  --shadow:        0 18px 50px rgba(0, 38, 45, 0.12);
  --shadow-lg:     0 40px 90px rgba(0, 38, 45, 0.22);

  /* ─── CI Motion ─── */
  --ease:          cubic-bezier(.3, 0, .2, 1);
  --t-fast:        .14s;
  --t-base:        .18s;
  --t-slow:        .22s;

  --maxw:          1180px;
  /* ─── Ventary CI typography ─── */
  --font:          'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;       /* body */
  --font-head:     'Archivo Black', 'Inter', system-ui, sans-serif;                          /* headlines */
  --font-sub:      'Archivo', 'Inter', system-ui, sans-serif;                                /* sub-heads */
  --font-mono:     'DM Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;              /* system labels */
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ─── CI scrollbars (petrol-light thumb) ─── */
* { scrollbar-width: thin; scrollbar-color: var(--accent) transparent; }
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--accent-dark), var(--accent)); border-radius: var(--radius-pill, 100px);
  border: 2px solid transparent; background-clip: padding-box;
}
*::-webkit-scrollbar-thumb:hover { background: linear-gradient(var(--accent), var(--accent-light)); background-clip: padding-box; }
*::-webkit-scrollbar-corner { background: transparent; }

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

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

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

section { position: relative; }

h1, h2, h3, h4 { letter-spacing: -0.02em; }
h1, h2 { font-family: var(--font-head); font-weight: 400; line-height: 1.08; }
h3, h4 { font-family: var(--font-sub); font-weight: 700; line-height: 1.16; letter-spacing: -0.01em; }
.pc-name { font-family: var(--font-sub); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent-dark);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
}

.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); color: var(--petrol); margin: 16px 0 14px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 0.97rem; padding: 13px 26px;
  border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), background var(--t-base) var(--ease), color var(--t-base) var(--ease);
  white-space: nowrap; font-family: inherit;
}
.btn:active { transform: translateY(1px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--petrol-dark);
  box-shadow: 0 10px 26px rgba(198, 159, 101, 0.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(198, 159, 101, 0.5); }
.btn-accent {
  background: var(--accent); color: #fff;
  box-shadow: 0 10px 26px rgba(114, 167, 160, 0.4);
}
.btn-accent:hover { transform: translateY(-2px); background: var(--accent-dark); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,0.35); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-outline { background: transparent; border-color: var(--line); color: var(--petrol); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent-dark); }
.btn-lg { padding: 16px 34px; font-size: 1.04rem; }
.btn-block { width: 100%; }

/* ---------- Announcement bar ---------- */
.topbar {
  background: linear-gradient(90deg, var(--petrol-dark), var(--petrol-light));
  color: #dff0ee; font-size: 0.86rem; font-weight: 600;
  text-align: center; padding: 9px 16px; position: relative; z-index: 60;
}
.topbar b { color: var(--gold-light); }
.topbar a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 2px; }
.topbar .dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-light); margin-right: 8px; box-shadow: 0 0 0 0 rgba(217,188,146,.7);
  animation: pulse 2s infinite; vertical-align: middle; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(217,188,146,.6); }
  70%  { box-shadow: 0 0 0 8px rgba(217,188,146,0); }
  100% { box-shadow: 0 0 0 0 rgba(217,188,146,0); }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(0, 38, 45, 0.82);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background .3s ease;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.nav .brand { flex: 0 0 auto; line-height: 0; }
.nav .brand img { height: 56px; width: auto; transition: transform .2s ease; }
.nav .brand:hover img { transform: scale(1.03); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: #cfe3e0; font-weight: 600; font-size: 0.95rem; transition: color .15s; }
.nav-links a:hover { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 14px; }

/* Login dropdown */
.login-menu { position: relative; }
.login-trigger {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.18);
  padding: 10px 18px; border-radius: 999px; font-weight: 700; font-size: 0.92rem; cursor: pointer;
  transition: background .15s, border-color .15s; font-family: inherit;
}
.login-trigger:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.4); }
.login-trigger svg { transition: transform .2s ease; }
.login-menu.open .login-trigger svg { transform: rotate(180deg); }
.login-dropdown {
  position: absolute; right: 0; top: calc(100% + 12px); width: 330px;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 10px; opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s; border: 1px solid var(--line);
}
.login-menu.open .login-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.login-item { display: flex; gap: 14px; align-items: flex-start; padding: 14px; border-radius: 13px; transition: background .15s; }
.login-item:hover { background: var(--bg-soft); }
.login-item .li-icon {
  flex: 0 0 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--petrol), var(--petrol-light)); color: #fff;
}
.login-item.control .li-icon { background: linear-gradient(135deg, var(--accent-dark), var(--accent)); }
.login-item.partner .li-icon { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); }
.login-item .li-title { font-weight: 800; color: var(--petrol); font-size: 0.98rem; }
.login-item .li-url { font-size: 0.78rem; color: var(--accent-dark); font-weight: 500; font-family: var(--font-mono); }
.login-item .li-desc { font-size: 0.82rem; color: var(--muted); margin-top: 3px; }
.login-sep { height: 1px; background: var(--line); margin: 4px 8px; }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 600px at 78% -8%, rgba(114,167,160,0.30), transparent 60%),
    radial-gradient(900px 600px at 8% 12%, rgba(198,159,101,0.16), transparent 55%),
    linear-gradient(160deg, var(--petrol-dark) 0%, var(--petrol) 55%, var(--petrol-light) 120%);
  color: #fff; padding: 80px 0 110px;
}
/* large faint brand mark watermark for brand presence */
.hero-mark {
  position: absolute; right: -120px; bottom: -80px; width: 620px; opacity: 0.06;
  pointer-events: none; user-select: none; filter: grayscale(1) brightness(3);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.badge-live {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(198,159,101,0.16); border: 1px solid rgba(198,159,101,0.4);
  color: var(--gold-light); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.04em;
  padding: 7px 15px; border-radius: 999px;
}
.badge-live .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-light); animation: pulse 2s infinite; }
.hero h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); margin: 22px 0 18px; }
.hero h1 .grad {
  background: linear-gradient(100deg, var(--gold-light), var(--accent-light));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { font-size: 1.18rem; color: #cfe3e0; max-width: 540px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { margin-top: 22px; font-size: 0.88rem; color: #9fc1bc; display: flex; align-items: center; gap: 8px; }

/* Countdown card */
.countdown-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg); padding: 30px; backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
}
.countdown-card .cc-label { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-light); font-weight: 700; }
.countdown-card .cc-date { font-size: 1.5rem; font-weight: 800; margin: 6px 0 22px; color: #fff; }
.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.cd-unit { background: rgba(0,0,0,0.18); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 16px 8px; text-align: center; }
.cd-unit .num { font-size: clamp(1.5rem, 4vw, 2.1rem); font-weight: 500; color: var(--gold-light); font-variant-numeric: tabular-nums; font-family: var(--font-mono); }
.cd-unit .lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: #9fc1bc; margin-top: 4px; }
.cc-foot { margin-top: 22px; display: flex; gap: 12px; align-items: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.86rem; color: #cfe3e0; }
.cc-foot strong { color: #fff; }

.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; z-index: 1; }
.hero-wave svg { width: 100%; height: 70px; }

/* ---------- Brand strip (logo moment) ---------- */
.brand-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.brand-strip .wrap { display: flex; flex-direction: column; align-items: center; gap: 18px; padding: 50px 24px; text-align: center; }
.brand-strip img { height: 112px; }
.brand-strip p { color: var(--muted); font-size: 1.05rem; max-width: 640px; }
.brand-strip p b { color: var(--petrol); }

/* ---------- Stats strip ---------- */
.stats { background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 44px 0; }
.stat { text-align: center; }
.stat .s-num { font-size: 2.1rem; font-weight: 800;
  background: linear-gradient(120deg, var(--petrol), var(--accent-dark)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .s-lbl { color: var(--muted); font-size: 0.92rem; font-weight: 600; margin-top: 4px; }

/* ---------- Generic section spacing ---------- */
.block { padding: 96px 0; }
.block.alt { background: var(--bg-soft); }
.block.tight { padding: 72px 0; }

/* ---------- About / detailed explanation ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-copy h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); color: var(--petrol); margin: 16px 0 18px; }
.about-copy p { color: var(--muted); font-size: 1.05rem; margin-bottom: 16px; }
.about-copy p strong { color: var(--ink); }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.about-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 1rem; color: var(--ink); }
.about-list li .chk { flex: 0 0 26px; height: 26px; border-radius: 8px; display: grid; place-items: center;
  background: var(--bg-soft); color: var(--accent-dark); border: 1px solid var(--line); }
.about-visual {
  border-radius: var(--radius-lg); padding: 34px; color: #fff;
  background: radial-gradient(600px 300px at 80% 10%, rgba(114,167,160,0.3), transparent 60%), linear-gradient(155deg, var(--petrol-dark), var(--petrol-light));
  box-shadow: var(--shadow);
}
.about-visual h4 { font-size: 1.05rem; color: var(--gold-light); letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 18px; }
.layer { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.layer:last-child { border-bottom: 0; }
.layer .l-num { flex: 0 0 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; font-weight: 800;
  background: rgba(255,255,255,0.12); color: var(--gold-light); }
.layer h5 { font-size: 1.05rem; color: #fff; margin-bottom: 3px; }
.layer p { font-size: 0.92rem; color: #b9d6d1; }

/* ---------- Features grid ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(114,167,160,0.4); }
.feature .f-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--bg-soft), #fff); border: 1px solid var(--line); color: var(--accent-dark);
}
.feature h3 { font-size: 1.2rem; color: var(--petrol); margin-bottom: 9px; }
.feature p { color: var(--muted); font-size: 0.96rem; }

/* ---------- How it works ---------- */
.flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.flow-step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px;
  position: relative; box-shadow: var(--shadow-sm);
}
.flow-step .step-n {
  position: absolute; top: -18px; left: 28px; width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--petrol), var(--petrol-light)); box-shadow: var(--shadow-sm);
}
.flow-step h3 { color: var(--petrol); font-size: 1.18rem; margin: 16px 0 10px; }
.flow-step p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Modules ---------- */
.modules { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.module {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s;
}
.module:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.module.bundle { background: linear-gradient(160deg, var(--petrol-dark), var(--petrol)); color: #fff; border-color: var(--gold); }
.module .m-icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 16px;
  background: var(--bg-soft); color: var(--accent-dark); border: 1px solid var(--line); }
.module.bundle .m-icon { background: rgba(255,255,255,0.12); color: var(--gold-light); border-color: rgba(255,255,255,0.2); }
.module h3 { font-size: 1.12rem; color: var(--petrol); margin-bottom: 7px; }
.module.bundle h3 { color: #fff; }
.module p { font-size: 0.92rem; color: var(--muted); flex: 1; }
.module.bundle p { color: #c5dedb; }
.module .m-price { margin-top: 16px; font-weight: 800; color: var(--petrol); font-size: 1.15rem; }
.module .m-price small { font-weight: 600; color: var(--muted); font-size: 0.82rem; }
.module.bundle .m-price { color: var(--gold-light); }
.module.bundle .m-price small { color: #c5dedb; }

/* ---------- Info panels (Partner / Marketing / Token / Support) ---------- */
.info-panels { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.info-panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px;
  box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.info-panel:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.info-panel.dark {
  background: radial-gradient(600px 300px at 85% 0%, rgba(114,167,160,0.28), transparent 60%), linear-gradient(155deg, var(--petrol-dark), var(--petrol-light));
  color: #fff; border-color: transparent;
}
.ip-head { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.ip-head .ip-icon { flex: 0 0 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: var(--bg-soft); color: var(--accent-dark); border: 1px solid var(--line); }
.info-panel.dark .ip-head .ip-icon { background: rgba(255,255,255,0.12); color: var(--gold-light); border-color: rgba(255,255,255,0.18); }
.ip-head h3 { font-size: 1.3rem; color: var(--petrol); }
.info-panel.dark .ip-head h3 { color: #fff; }
.ip-tag { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; color: var(--accent-dark); }
.info-panel.dark .ip-tag { color: var(--gold-light); }
.ip-lead { color: var(--muted); font-size: 0.98rem; margin: 4px 0 18px; }
.info-panel.dark .ip-lead { color: #c5dedb; }
.ip-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ip-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.95rem; color: var(--ink); }
.info-panel.dark .ip-list li { color: #e3efed; }
.ip-list li svg { flex: 0 0 19px; margin-top: 2px; color: var(--accent); }
.info-panel.dark .ip-list li svg { color: var(--gold-light); }
.ip-list li b { color: var(--petrol); }
.info-panel.dark .ip-list li b { color: #fff; }

/* ---------- Products ---------- */
.products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.product {
  display: flex; gap: 20px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product .p-icon { flex: 0 0 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--petrol), var(--petrol-light)); }
.product.accent .p-icon { background: linear-gradient(135deg, var(--accent-dark), var(--accent)); }
.product h3 { color: var(--petrol); font-size: 1.18rem; margin-bottom: 6px; }
.product .p-tag { font-size: 0.78rem; font-weight: 700; color: var(--accent-dark); letter-spacing: 0.04em; }
.product p { color: var(--muted); font-size: 0.95rem; margin-top: 7px; }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s; position: relative;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.featured {
  background: linear-gradient(165deg, var(--petrol-dark), var(--petrol) 90%); color: #fff;
  border-color: var(--gold); box-shadow: var(--shadow-lg); overflow: hidden;
}
/* CI B-Style · 2px Gold-LED-Stripe = Primär-/Empfehlungs-Signal */
.price-card.featured::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); box-shadow: 0 0 12px rgba(198, 159, 101, 0.75);
}
.price-card.featured .pc-name,
.price-card.featured .pc-price { color: #fff; }
.pc-flag {
  position: absolute; top: 22px; right: 22px; background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--petrol-dark); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em;
  padding: 5px 12px; border-radius: 999px; text-transform: uppercase;
}
.pc-name { font-size: 1.25rem; font-weight: 800; color: var(--petrol); }
.pc-devices { font-size: 0.9rem; color: var(--accent-dark); font-weight: 700; margin-top: 4px; }
.pc-sub { font-size: 0.9rem; color: var(--muted); margin-top: 8px; min-height: 42px; }
.price-card.featured .pc-sub { color: #aecdc9; }
.pc-price { font-size: 2.5rem; font-weight: 800; color: var(--petrol); margin: 18px 0 2px; }
.pc-price small { font-size: 0.95rem; font-weight: 600; color: var(--muted); }
.price-card.featured .pc-price small { color: #aecdc9; }
.pc-per { font-size: 0.84rem; color: var(--muted); margin-bottom: 22px; }
.price-card.featured .pc-per { color: #aecdc9; }
.pc-year { font-size: 0.82rem; color: var(--accent-dark); font-weight: 700; margin-bottom: 22px; }
.price-card.featured .pc-year { color: var(--gold-light); }
.pc-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex: 1; }
.pc-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.93rem; color: var(--ink); }
.price-card.featured .pc-list li { color: #e3efed; }
.pc-list li svg { flex: 0 0 18px; margin-top: 3px; color: var(--accent); }
.price-card.featured .pc-list li svg { color: var(--gold-light); }

/* conditions row */
.conditions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.cond {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px;
  display: flex; gap: 13px; align-items: flex-start; box-shadow: var(--shadow-sm);
}
.cond .c-ic { flex: 0 0 36px; height: 36px; border-radius: 10px; display: grid; place-items: center;
  background: var(--bg-soft); color: var(--accent-dark); }
.cond strong { display: block; color: var(--petrol); font-size: 0.95rem; }
.cond span { font-size: 0.85rem; color: var(--muted); }
.pricing-note { text-align: center; color: var(--muted); font-size: 0.88rem; margin-top: 30px; }

/* ---------- Mailing list ---------- */
.mailing {
  background:
    radial-gradient(800px 400px at 15% 10%, rgba(114,167,160,0.22), transparent 60%),
    radial-gradient(700px 400px at 90% 90%, rgba(198,159,101,0.16), transparent 60%),
    linear-gradient(150deg, var(--petrol-dark), var(--petrol));
  color: #fff; border-radius: var(--radius-lg); padding: 56px; box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.mailing h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin-bottom: 14px; }
.mailing .m-lead { color: #cfe3e0; font-size: 1.05rem; margin-bottom: 28px; }
.optin-steps { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.optin-steps li { display: flex; gap: 14px; align-items: flex-start; }
.optin-steps .o-num { flex: 0 0 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; font-weight: 800;
  background: rgba(255,255,255,0.12); color: var(--gold-light); }
.optin-steps strong { color: #fff; display: block; }
.optin-steps span { color: #b9d6d1; font-size: 0.92rem; }

.signup-card { background: #fff; border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-lg); color: var(--ink); }
.signup-card h3 { color: var(--petrol); font-size: 1.3rem; margin-bottom: 6px; }
.signup-card .sc-sub { color: var(--muted); font-size: 0.95rem; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--petrol); margin-bottom: 7px; }
.field input[type=text], .field input[type=email] {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  font-size: 1rem; font-family: inherit; color: var(--ink); transition: border-color .15s, box-shadow .15s;
}
.field input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(114,167,160,0.18); }
.consent { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 20px; font-size: 0.84rem; color: var(--muted); }
.consent input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--accent-dark); flex: 0 0 auto; }
.consent a { color: var(--accent-dark); text-decoration: underline; }
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 14px; text-align: center; }
.form-msg { display: none; border-radius: 12px; padding: 16px; font-size: 0.92rem; margin-bottom: 16px; }
.form-msg.show { display: block; }
.form-msg.success { background: rgba(114,167,160,0.14); border: 1px solid rgba(114,167,160,0.4); color: var(--petrol); }
.form-msg.error { background: rgba(198,90,90,0.1); border: 1px solid rgba(198,90,90,0.35); color: #9b3a3a; }
.signup-success { display: none; text-align: center; }
.signup-success.show { display: block; }
.signup-success .ss-ic { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 18px;
  background: rgba(114,167,160,0.16); color: var(--accent-dark); }
.signup-success h3 { margin-bottom: 10px; }
.signup-success p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Login portals ---------- */
.portals { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.portals.portals-3 { grid-template-columns: repeat(3, 1fr); }
.portal {
  border-radius: var(--radius-lg); padding: 38px; color: #fff; position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.portal.cloud { background: linear-gradient(150deg, var(--petrol-dark), var(--petrol-light)); }
.portal.control { background: linear-gradient(150deg, var(--accent-dark), var(--accent)); }
.portal.partner { background: linear-gradient(150deg, var(--gold-dark), var(--gold)); }
.portal.partner .btn-gold { background: #fff; color: var(--petrol-dark); }
.portal::after {
  content: ""; position: absolute; right: -40px; top: -40px; width: 180px; height: 180px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.portal .pt-icon { width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center;
  background: rgba(255,255,255,0.15); margin-bottom: 18px; }
.portal h3 { font-size: 1.5rem; margin-bottom: 6px; }
.portal .pt-url { font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: 14px; font-size: 0.95rem; }
.portal p { color: rgba(255,255,255,0.85); margin-bottom: 26px; font-size: 0.98rem; max-width: 420px; }
.portal .btn { position: relative; z-index: 2; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 4px 24px;
  box-shadow: var(--shadow-sm); transition: box-shadow .2s;
}
.faq details[open] { box-shadow: var(--shadow); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 0; font-weight: 700; color: var(--petrol);
  font-size: 1.05rem; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .q-ic { flex: 0 0 24px; height: 24px; border-radius: 7px; display: grid; place-items: center;
  background: var(--bg-soft); color: var(--accent-dark); transition: transform .2s; }
.faq details[open] summary .q-ic { transform: rotate(45deg); }
.faq .a { padding: 0 0 22px; color: var(--muted); font-size: 0.98rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  text-align: center; box-shadow: var(--shadow-sm);
}
.contact-card .c-icon { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; margin: 0 auto 14px;
  background: var(--bg-soft); color: var(--accent-dark); }
.contact-card h4 { color: var(--petrol); font-size: 1.05rem; margin-bottom: 6px; }
.contact-card p, .contact-card a { color: var(--muted); font-size: 0.95rem; }
.contact-card a:hover { color: var(--accent-dark); }

/* ---------- Footer ---------- */
.footer { background: var(--petrol-900); color: #9fc1bc; padding: 64px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer .brand img { height: 44px; margin-bottom: 18px; }
.footer .f-about { font-size: 0.92rem; max-width: 300px; }
.footer h5 { color: #fff; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer ul a, .footer ul li { font-size: 0.92rem; color: #9fc1bc; transition: color .15s; }
.footer ul a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: 0.85rem; flex-wrap: wrap; gap: 12px; }
.footer-bottom .legal { display: flex; gap: 22px; flex-wrap: wrap; }

/* ---------- Legal pages (Impressum / AGB) ---------- */
.legal-nav { position: sticky; top: 0; z-index: 50; background: var(--petrol-dark); border-bottom: 1px solid rgba(255,255,255,0.08); }
.legal-nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.legal-nav .brand img { height: 46px; }
.legal-nav a.back { color: #cfe3e0; font-weight: 600; font-size: 0.95rem; display: inline-flex; gap: 8px; align-items: center; transition: color var(--t-base) var(--ease); }
.legal-nav a.back:hover { color: #fff; }
.legal-hero { background: radial-gradient(800px 400px at 85% -20%, rgba(114,167,160,0.28), transparent 60%), linear-gradient(160deg, var(--petrol-dark), var(--petrol)); color: #fff; padding: 64px 0; }
.legal-hero .eyebrow { color: var(--gold-light); }
.legal-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 14px 0 10px; }
.legal-hero p { color: #cfe3e0; max-width: 640px; }
.legal-body { padding: 60px 0 90px; }
.legal-body .wrap { max-width: 880px; }
.legal-body h2 { font-size: 1.3rem; color: var(--petrol); margin: 40px 0 12px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 1.05rem; color: var(--petrol); margin: 24px 0 8px; font-family: var(--font-sub); }
.legal-body p, .legal-body li { color: var(--ink); font-size: 0.98rem; line-height: 1.7; }
.legal-body p { margin-bottom: 14px; }
.legal-body ul, .legal-body ol { padding-left: 22px; margin-bottom: 16px; }
.legal-body li { margin-bottom: 8px; }
.legal-body a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 2px; }
.legal-body a:hover { color: var(--petrol); }
.legal-body dl { margin: 4px 0 20px; }
.legal-body dt { font-weight: 700; color: var(--petrol); margin-top: 14px; }
.legal-body dd { margin: 2px 0 0; color: var(--ink); }
.legal-body .ph { background: rgba(198,159,101,0.14); border: 1px solid rgba(198,159,101,0.45); border-radius: 6px; padding: 1px 8px; font-family: var(--font-mono); font-size: 0.85em; color: var(--gold-dark); white-space: nowrap; }
.legal-note { background: var(--bg-soft); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: var(--radius); padding: 16px 18px; font-size: 0.92rem; color: var(--muted); margin: 8px 0 28px; }
.legal-note strong { color: var(--petrol); }
.legal-updated { color: var(--muted); font-size: 0.88rem; margin-top: 44px; padding-top: 20px; border-top: 1px solid var(--line); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features, .flow, .products, .pricing, .info-panels { grid-template-columns: 1fr; }
  .modules { grid-template-columns: repeat(2, 1fr); }
  .conditions { grid-template-columns: repeat(2, 1fr); }
  .mailing { grid-template-columns: 1fr; gap: 36px; padding: 40px 28px; }
  .portals, .portals.portals-3, .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 84px; left: 0; right: 0;
    background: var(--petrol-dark); padding: 22px 24px; gap: 18px; border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-toggle { display: block; }
  .nav-actions .btn-gold { display: none; }
  .nav .brand img { height: 48px; }
  .hero-mark { display: none; }
}
@media (max-width: 560px) {
  .stats-grid, .modules, .conditions, .footer-top { grid-template-columns: 1fr; }
  .countdown { grid-template-columns: repeat(2, 1fr); }
  .portal, .mailing, .signup-card { padding: 30px 22px; }
  .login-dropdown { width: 280px; }
  .brand-strip img { height: 84px; }
}
