:root {
  --navy-950: #061321;
  --navy-900: #091b2d;
  --navy-850: #0c2439;
  --navy-800: #13344d;
  --blue-700: #0f476f;
  --blue-500: #4b86ad;
  --gold-500: #d1a859;
  --gold-300: #f2dfb3;
  --cream: #f5f3ed;
  --paper: #fbfaf7;
  --white: #ffffff;
  --ink: #15263b;
  --muted: #5f6c7a;
  --line: rgba(15, 42, 65, 0.13);
  --success: #269158;
  --warning: #c88720;
  --shadow-sm: 0 12px 35px rgba(7, 27, 45, 0.08);
  --shadow-lg: 0 35px 90px rgba(4, 19, 34, 0.18);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-height: 76px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --type-body: 17px;
  --type-secondary: 16px;
  --type-meta: 15px;
  --type-label: 14px;
  --type-micro: 14px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: var(--type-body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; }

a { color: inherit; }

button, input, textarea, select { font: inherit; }

button { color: inherit; }

::selection { background: var(--gold-300); color: var(--navy-950); }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section { padding: 108px 0; }

.section-shell { position: relative; overflow: hidden; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy-900);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(251, 250, 247, 0.88);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(6, 25, 43, 0.06);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
}

body:not(.inner-page) .site-header:not(.is-scrolled) .brand,
body:not(.inner-page) .site-header:not(.is-scrolled) .primary-nav a {
  color: rgba(255, 255, 255, .86);
}

body:not(.inner-page) .site-header:not(.is-scrolled) .primary-nav a {
  color: rgba(255, 255, 255, .62);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  color: var(--navy-900);
  font-size: 19px;
  font-weight: 760;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand img {
  display: block;
  border-radius: 11px;
  box-shadow: 0 5px 14px rgba(5, 23, 43, 0.18);
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 0 auto;
}

.primary-nav a {
  position: relative;
  color: #33465a;
  font-size: var(--type-meta);
  font-weight: 560;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--gold-500);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after { transform: scaleX(1); }

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  padding: 6px 9px;
  border: 1px solid rgba(15, 42, 65, .12);
  border-radius: 99px;
  color: #607080;
  background: rgba(255, 255, 255, .48);
  font-size: var(--type-label);
  font-weight: 680;
  line-height: 1;
}

.language-switcher a {
  color: inherit;
  text-decoration: none;
}

.language-switcher a[aria-current="page"] { color: var(--navy-900); }
.language-switcher > span { color: rgba(15, 42, 65, .25); }

body:not(.inner-page) .site-header:not(.is-scrolled) .language-switcher {
  border-color: rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .62);
  background: rgba(255, 255, 255, .05);
}

body:not(.inner-page) .site-header:not(.is-scrolled) .language-switcher a[aria-current="page"] { color: var(--white); }

html[lang="de"] .hero h1 { font-size: clamp(48px, 5.35vw, 72px); }
html[lang="de"] .feature-card h3 { overflow-wrap: anywhere; }

.menu-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 680;
  line-height: 1.15;
  text-align: left;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(5, 25, 44, 0.12);
  transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(5, 25, 44, 0.18);
}

.button:focus-visible,
.primary-nav a:focus-visible,
.text-link:focus-visible,
.light-link:focus-visible,
.site-footer nav a:focus-visible,
.legal-nav a:focus-visible,
.language-switcher a:focus-visible,
.contact-card a:focus-visible,
.brand:focus-visible,
.menu-toggle:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(209, 168, 89, .58);
  outline-offset: 4px;
}

.button small {
  display: block;
  margin-bottom: 1px;
  font-size: var(--type-label);
  font-weight: 600;
  letter-spacing: .02em;
  opacity: .74;
}

.button-small {
  min-height: 44px;
  padding: 10px 15px;
  border-radius: 11px;
  color: var(--white);
  background: var(--navy-900);
  font-size: var(--type-label);
  white-space: nowrap;
}

.mobile-app-store-link { display: none; }

.button-primary {
  min-height: 60px;
  color: var(--white);
  background: var(--navy-900);
}

.button-light {
  min-height: 60px;
  color: var(--navy-950);
  background: var(--white);
}

.apple-mark {
  position: relative;
  top: -1px;
  font-size: 18px;
  line-height: 1;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, .72);
  font-size: var(--type-label);
  font-weight: 720;
  letter-spacing: .15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 1px;
  background: var(--gold-500);
}

.eyebrow-dark { color: var(--blue-700); }

.hero {
  min-height: 760px;
  padding: calc(var(--header-height) + 82px) 0 78px;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 38%, rgba(38, 99, 139, .22), transparent 33%),
    linear-gradient(128deg, var(--navy-950) 0%, var(--navy-900) 58%, #0b2940 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -140px;
  left: -10%;
  height: 240px;
  border-radius: 50% 50% 0 0;
  background: var(--paper);
  transform: translateY(72%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero-glow-one {
  top: 10%;
  right: 7%;
  width: 430px;
  height: 430px;
  background: rgba(55, 129, 170, .13);
}

.hero-glow-two {
  bottom: 5%;
  left: 25%;
  width: 240px;
  height: 240px;
  background: rgba(209, 168, 89, .08);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(480px, 1.05fr);
  align-items: center;
  gap: 60px;
}

.hero-copy { max-width: 650px; }

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(52px, 5.9vw, 78px);
  font-weight: 680;
  letter-spacing: -.057em;
  line-height: 1.01;
}

.hero-lead {
  max-width: 580px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .75);
  font-size: 18px;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .83);
  font-size: var(--type-secondary);
  font-weight: 650;
  text-decoration: none;
}

.text-link span { transition: transform .2s var(--ease); }
.text-link:hover span { transform: translateY(3px); }
.text-link-dark { color: var(--blue-700); }
.text-link-dark:hover span { transform: translateX(3px); }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 28px;
  color: rgba(255, 255, 255, .53);
  font-size: var(--type-meta);
}

.trust-row span { display: flex; align-items: center; gap: 7px; }
.trust-row i { color: var(--gold-500); font-style: normal; }

.hero-visual {
  position: relative;
  display: grid;
  min-height: 590px;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 50%;
  transform: rotate(-22deg);
}

.orbit-one { width: 540px; height: 350px; }
.orbit-two { width: 670px; height: 430px; border-color: rgba(209, 168, 89, .11); }

.phone {
  position: relative;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 46px;
  background: linear-gradient(145deg, #64819a 0%, #152e46 15%, #071727 74%, #748a9e 100%);
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255, 255, 255, .18);
}

.phone-hero {
  z-index: 3;
  width: 278px;
  height: auto;
  aspect-ratio: .475;
  transform: rotate(3.2deg);
}

.phone::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: inherit;
  pointer-events: none;
}

.phone-buttons::before,
.phone-buttons::after {
  content: "";
  position: absolute;
  left: -4px;
  z-index: -1;
  width: 4px;
  border-radius: 4px 0 0 4px;
  background: #19334a;
}

.phone-buttons::before { top: 112px; height: 65px; }
.phone-buttons::after { top: 188px; height: 45px; }

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 38px;
  background: #f4f3ef;
}

.app-screenshot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
}

.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 99px;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.pill-gold { color: #845818; background: #f7ecd5; }
.pill-blue { color: #265976; background: #e6f0f5; }
.pill-green { color: #237046; background: #e4f3ea; }

.float-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 205px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 15px;
  color: var(--white);
  background: rgba(10, 34, 54, .73);
  box-shadow: 0 15px 38px rgba(1, 13, 24, .26);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.float-card-left { top: 115px; left: 2px; }
.float-card-right { right: -12px; bottom: 130px; }
.float-card strong, .float-card small { display: block; }
.float-card strong { font-size: var(--type-label); }
.float-card small { margin-top: 2px; color: rgba(255, 255, 255, .65); font-size: var(--type-micro); }
.float-icon { font-size: 15px; font-weight: 740; }
.gold { color: var(--gold-500); }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold-500); box-shadow: 0 0 0 5px rgba(209, 168, 89, .12); }

.interface-note {
  position: absolute;
  bottom: -2px;
  left: 50%;
  margin: 0;
  color: rgba(255, 255, 255, .37);
  font-size: var(--type-micro);
  letter-spacing: .05em;
  transform: translateX(-50%);
  white-space: nowrap;
}

.trust-strip {
  position: relative;
  z-index: 4;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: #7d8790;
  font-size: var(--type-label);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.trust-strip i { width: 3px; height: 3px; border-radius: 50%; background: var(--gold-500); }

.problem-section { background: var(--paper); }

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(450px, 1.15fr);
  align-items: center;
  gap: 100px;
}

.section-copy h2,
.section-heading h2,
.privacy-copy h2,
.final-cta h2,
.page-hero h1 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(40px, 4.7vw, 62px);
  font-weight: 650;
  letter-spacing: -.05em;
  line-height: 1.06;
}

.section-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.memory-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.memory-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 2px 24px;
  color: var(--navy-900);
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -.02em;
}

.memory-count { padding: 7px 11px; border-radius: 99px; color: #735521; background: #f6edd9; font-size: var(--type-label); font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.memory-list { display: grid; margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.memory-list li { display: flex; align-items: center; gap: 16px; padding: 15px 4px; border-bottom: 1px solid var(--line); color: #465666; font-size: var(--type-secondary); font-weight: 560; }
.memory-list span { display: grid; width: 36px; height: 36px; flex: 0 0 auto; border-radius: 10px; color: #896b31; background: #f7f1e3; font-size: var(--type-label); font-weight: 800; letter-spacing: .05em; place-items: center; }
.memory-resolved { display: flex; align-items: center; gap: 15px; margin-top: 20px; padding: 20px; border-radius: 17px; color: var(--white); background: var(--navy-900); }
.memory-resolved i { display: grid; width: 42px; height: 42px; flex: 0 0 auto; border-radius: 12px; color: var(--navy-900); background: var(--gold-500); font-size: 18px; font-style: normal; place-items: center; }
.memory-resolved strong, .memory-resolved small { display: block; }
.memory-resolved strong { font-size: 16px; letter-spacing: -.015em; }
.memory-resolved small { margin-top: 3px; color: rgba(255, 255, 255, .74); font-size: var(--type-meta); }

.features-section { background: var(--cream); }

.section-heading { margin-bottom: 56px; }
.section-heading.centered { max-width: 760px; margin-right: auto; margin-left: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading > p:not(.eyebrow) { max-width: 620px; margin: 21px auto 0; color: var(--muted); font-size: 16px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(8, 35, 55, .1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .8);
  box-shadow: 0 10px 35px rgba(9, 31, 48, .04);
  transition: transform .3s var(--ease), box-shadow .3s ease;
}

.feature-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(8, 31, 49, .09); }
.feature-card-large { min-height: 410px; }
.feature-number { color: #856f43; font-size: var(--type-label); font-weight: 800; letter-spacing: .14em; }
.feature-card h3 { margin: 28px 0 11px; color: var(--navy-900); font-size: 25px; letter-spacing: -.035em; line-height: 1.15; }
.feature-card p { max-width: 500px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }

.feature-visual {
  min-height: 155px;
  margin: 27px 0 10px;
  border: 1px solid rgba(12, 50, 76, .08);
  border-radius: 17px;
  background: #f5f6f4;
}

.track-visual { padding: 25px; }
.track-top { display: flex; align-items: end; justify-content: space-between; color: #5f6d79; font-size: var(--type-label); }
.track-top strong { color: var(--navy-900); font-size: 30px; letter-spacing: -.04em; }
.track-bar { position: relative; height: 3px; margin: 32px 10px 12px; background: #dce2e3; }
.track-bar i { position: absolute; inset: 0 39% 0 0; background: var(--navy-800); }
.track-bar b, .track-bar em { position: absolute; top: 50%; width: 14px; height: 14px; border: 3px solid var(--white); border-radius: 50%; background: var(--gold-500); box-shadow: 0 1px 5px rgba(0, 0, 0, .14); transform: translate(-50%, -50%); }
.track-bar b { left: 0; background: var(--navy-800); }
.track-bar em { left: 61%; }
.track-labels { display: flex; justify-content: space-between; color: #677581; font-size: var(--type-label); font-weight: 650; }

.claim-visual { display: grid; grid-template-columns: 53px 1fr auto; align-items: center; gap: 18px; padding: 26px; }
.claim-date { display: grid; width: 53px; height: 62px; border-radius: 13px; color: var(--navy-900); background: var(--white); box-shadow: 0 7px 20px rgba(8, 31, 49, .08); place-items: center; align-content: center; }
.claim-date span { font-size: 22px; font-weight: 750; line-height: 1; }
.claim-date small { color: #9f7833; font-size: var(--type-micro); font-weight: 800; letter-spacing: .08em; }
.claim-visual strong, .claim-visual small { display: block; }
.claim-visual strong { color: var(--navy-900); font-size: 15px; }
.claim-visual small { max-width: 225px; margin-top: 5px; color: #65727d; font-size: var(--type-label); }
.claim-visual > i { display: grid; width: 31px; height: 31px; border-radius: 50%; color: var(--white); background: var(--navy-900); font-style: normal; place-items: center; }

.feature-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 29px; }
.feature-tags span { padding: 8px 11px; border: 1px solid var(--line); border-radius: 8px; color: #526474; background: #f7f7f4; font-size: var(--type-label); }
.status-stack { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 27px; }
.status-stack .pill { padding: 8px 11px; font-size: var(--type-label); }
.template-lines { display: grid; gap: 8px; margin-top: 28px; }
.template-lines span { height: 12px; border: 1px solid rgba(10, 46, 70, .08); border-radius: 6px; background: linear-gradient(90deg, #dce4e7 28%, #f3f4f1 28%); }
.template-lines span:nth-child(2) { width: 83%; }
.template-lines span:nth-child(3) { width: 64%; }
.attachment-stack { position: relative; height: 57px; margin-top: 24px; }
.attachment-stack span { position: absolute; display: grid; width: 58px; height: 58px; border: 1px solid var(--line); border-radius: 12px; color: #6f5c35; background: var(--white); box-shadow: 0 7px 15px rgba(8, 31, 49, .07); font-size: var(--type-micro); font-weight: 750; place-items: center; }
.attachment-stack span:nth-child(2) { left: 37px; transform: rotate(5deg); }
.attachment-stack span:nth-child(3) { left: 74px; transform: rotate(10deg); }

.founder-section {
  padding: 0 0 108px;
  background: var(--cream);
}

.founder-panel {
  position: relative;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 76px;
  overflow: hidden;
  padding: 58px;
  border: 1px solid rgba(8, 35, 55, .1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .8);
  box-shadow: var(--shadow-sm);
}

.founder-panel::after {
  content: "";
  position: absolute;
  top: -150px;
  left: -160px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(209, 168, 89, .14);
  border-radius: 50%;
  pointer-events: none;
}

.founder-heading, .founder-story { position: relative; z-index: 1; }
.founder-heading h2 { margin: 0; color: var(--navy-900); font-size: clamp(34px, 4vw, 50px); font-weight: 650; letter-spacing: -.05em; line-height: 1.08; }
.founder-story { padding-left: 46px; border-left: 1px solid rgba(209, 168, 89, .55); }
.founder-story > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.founder-story > p + p { margin-top: 18px; }
.founder-story .founder-signoff { display: flex; align-items: center; gap: 12px; margin-top: 28px; color: var(--navy-900); font-size: var(--type-meta); font-weight: 750; }
.founder-signoff i { display: grid; width: 31px; height: 31px; flex: 0 0 auto; border-radius: 9px; color: var(--navy-950); background: var(--gold-500); font-style: normal; place-items: center; }

.plans-section {
  padding: 0 0 108px;
  background: var(--cream);
}

.plans-panel {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 70px;
  padding: 54px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), #0d344e);
  box-shadow: var(--shadow-lg);
}

.plans-intro h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(35px, 4vw, 51px);
  font-weight: 660;
  letter-spacing: -.05em;
  line-height: 1.05;
}

.plans-intro > p:not(.eyebrow) {
  max-width: 500px;
  margin: 21px 0 0;
  color: rgba(255, 255, 255, .59);
  font-size: var(--type-secondary);
}

.plan-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }

.plan-card {
  min-height: 235px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 19px;
  background: rgba(255, 255, 255, .055);
}

.plan-card-pro {
  border-color: rgba(209, 168, 89, .36);
  background: linear-gradient(145deg, rgba(209, 168, 89, .15), rgba(255, 255, 255, .055));
}

.plan-label {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 99px;
  color: var(--gold-300);
  background: rgba(209, 168, 89, .11);
  font-size: var(--type-label);
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.plan-card strong { display: block; margin-top: 23px; font-size: 20px; letter-spacing: -.025em; }
.plan-card p { margin: 10px 0 0; color: rgba(255, 255, 255, .72); font-size: var(--type-meta); line-height: 1.65; }
.plan-card small { display: block; margin-top: 16px; color: var(--gold-300); font-size: var(--type-label); font-weight: 650; }

.how-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
}

.how-glow {
  position: absolute;
  top: -300px;
  right: -230px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(209, 168, 89, .13);
  border-radius: 50%;
  box-shadow: inset 0 0 120px rgba(22, 81, 115, .13);
}

.section-heading-light h2 { color: var(--white); }
.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 0; padding: 0; list-style: none; }
.step-card { position: relative; min-height: 295px; padding: 29px; border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--radius-md); background: rgba(255, 255, 255, .045); }
.step-number { position: absolute; top: 26px; right: 26px; color: rgba(255, 255, 255, .46); font-size: var(--type-label); font-weight: 750; letter-spacing: .12em; }
.step-icon { display: grid; width: 48px; height: 48px; border: 1px solid rgba(209, 168, 89, .35); border-radius: 14px; color: var(--gold-500); background: rgba(209, 168, 89, .08); font-size: 21px; place-items: center; }
.step-icon-track { position: relative; display: flex; align-items: center; justify-content: center; gap: 5px; }
.step-icon-track::before { content: ""; position: absolute; width: 27px; height: 2px; border-radius: 2px; background: rgba(209, 168, 89, .42); }
.step-icon-track i { position: relative; z-index: 1; display: block; width: 7px; height: 7px; border: 2px solid var(--gold-500); border-radius: 50%; background: var(--navy-900); }
.step-icon-track i:nth-child(1), .step-icon-track i:nth-child(2) { background: var(--gold-500); }
.step-card h3 { margin: 58px 0 12px; font-size: 22px; letter-spacing: -.035em; }
.step-card p { margin: 0; color: rgba(255, 255, 255, .7); font-size: var(--type-secondary); }

.preview-section { overflow: hidden; background: var(--paper); }
.phone-gallery { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); align-items: end; gap: 18px; max-width: 1140px; margin: 68px auto 0; }
.preview-item { margin: 0; text-align: center; }
.phone-preview { width: 100%; max-width: 215px; aspect-ratio: .475; height: auto; margin: 0 auto; padding: 6px; border-radius: 34px; }
.phone-preview .phone-screen { border-radius: 33px; }
.preview-item figcaption { display: grid; margin-top: 23px; }
.preview-item figcaption strong { color: var(--navy-900); font-size: var(--type-secondary); }
.preview-item figcaption span { color: #65727e; font-size: var(--type-meta); }

.workflow-section { position: relative; overflow: hidden; color: var(--white); background: var(--navy-950); }
.workflow-section::before { content: ""; position: absolute; top: -330px; right: -250px; width: 760px; height: 760px; border: 1px solid rgba(209, 168, 89, .11); border-radius: 50%; box-shadow: inset 0 0 150px rgba(22, 94, 132, .12); }
.workflow-heading { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 80px; }
.workflow-heading h2 { margin: 0; color: var(--white); font-size: clamp(40px, 4.7vw, 62px); font-weight: 650; line-height: 1.06; letter-spacing: -.05em; }
.workflow-heading > p { max-width: 540px; margin: 0 0 5px; color: rgba(255, 255, 255, .68); font-size: 16px; }
.workflow-gallery { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: start; gap: 30px; max-width: 1080px; margin: 70px auto 0; }
.workflow-item { margin: 0; }
.workflow-item .phone-preview { max-width: 230px; }
.workflow-item figcaption { display: grid; grid-template-columns: 36px 1fr; gap: 13px; align-items: center; max-width: 230px; min-height: 92px; margin: 18px auto 0; padding: 15px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 15px; background: rgba(255, 255, 255, .055); text-align: left; }
.workflow-item figcaption > span { display: grid; width: 36px; height: 36px; border-radius: 10px; color: var(--navy-950); background: var(--gold-500); font-size: var(--type-label); font-weight: 850; letter-spacing: .04em; place-items: center; }
.workflow-item figcaption div { display: grid; gap: 5px; }
.workflow-item figcaption strong { color: var(--white); font-size: 16px; line-height: 1.2; }
.workflow-item figcaption small { color: rgba(255, 255, 255, .72); font-size: var(--type-meta); line-height: 1.45; }

.privacy-section { padding-top: 96px; background: var(--paper); }
.privacy-panel { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; min-height: 500px; overflow: hidden; border-radius: var(--radius-lg); color: var(--white); background: linear-gradient(135deg, var(--navy-950), #0a3049); box-shadow: var(--shadow-lg); }
.privacy-copy { position: relative; z-index: 2; padding: 70px 80px 70px 40px; }
.privacy-copy h2 { color: var(--white); }
.privacy-copy > p:not(.eyebrow) { max-width: 590px; margin: 23px 0 0; color: rgba(255, 255, 255, .72); font-size: 16px; }
.privacy-copy .privacy-caveat { padding-left: 14px; border-left: 1px solid rgba(209, 168, 89, .6); color: rgba(255, 255, 255, .56); font-size: var(--type-meta); }
.light-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 27px; color: var(--gold-300); font-size: var(--type-meta); font-weight: 700; text-decoration: none; }
.light-link span { transition: transform .2s var(--ease); }
.light-link:hover span { transform: translateX(4px); }
.privacy-art { position: relative; display: grid; height: 100%; place-items: center; }
.privacy-orbit { position: absolute; width: 420px; height: 420px; border: 1px solid rgba(255, 255, 255, .08); border-radius: 50%; box-shadow: inset 0 0 100px rgba(40, 112, 150, .1); }
.privacy-orbit::before, .privacy-orbit::after { content: ""; position: absolute; border: 1px solid rgba(209, 168, 89, .13); border-radius: 50%; }
.privacy-orbit::before { inset: 47px; }
.privacy-orbit::after { inset: 103px; }
.lock-shape { position: relative; z-index: 1; width: 135px; height: 112px; margin-top: 45px; border: 1px solid rgba(255, 255, 255, .27); border-radius: 27px; background: rgba(255, 255, 255, .06); box-shadow: 0 20px 50px rgba(0, 0, 0, .22); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.lock-shape::before { content: ""; position: absolute; top: -73px; left: 30px; width: 71px; height: 75px; border: 10px solid rgba(255, 255, 255, .7); border-bottom: 0; border-radius: 42px 42px 0 0; }
.lock-shape span { position: absolute; top: 43px; left: 50%; width: 14px; height: 24px; border-radius: 8px; background: var(--gold-500); transform: translateX(-50%); }

.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; }
.faq-grid .text-link { margin-top: 28px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 24px 50px 24px 0; color: var(--navy-900); font-size: 17px; font-weight: 650; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; top: 50%; right: 4px; width: 14px; height: 1px; background: var(--blue-700); transition: transform .22s ease; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 650px; margin: -5px 45px 24px 0; color: var(--muted); font-size: var(--type-secondary); }

.final-cta { padding: 112px 0; color: var(--white); background: var(--navy-950); }
.final-cta::before, .final-cta::after { content: ""; position: absolute; border: 1px solid rgba(255, 255, 255, .06); border-radius: 50%; }
.final-cta::before { top: -220px; left: -140px; width: 550px; height: 550px; }
.final-cta::after { right: -90px; bottom: -240px; width: 600px; height: 600px; border-color: rgba(209, 168, 89, .08); }
.cta-glow { position: absolute; top: 50%; left: 50%; width: 700px; height: 250px; border-radius: 50%; background: rgba(22, 94, 132, .17); filter: blur(65px); transform: translate(-50%, -50%); }
.final-cta-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; }
.final-cta img { margin-bottom: 25px; border-radius: 20px; box-shadow: 0 15px 35px rgba(0, 0, 0, .23); }
.final-cta .eyebrow { margin-bottom: 20px; }
.final-cta h2 { color: var(--white); font-size: clamp(50px, 6vw, 76px); }
.final-cta p:not(.eyebrow) { max-width: 540px; margin: 24px 0 33px; color: rgba(255, 255, 255, .57); }

.site-footer { padding: 68px 0 34px; border-top: 1px solid rgba(255, 255, 255, .05); color: rgba(255, 255, 255, .66); background: #050f1a; }
.site-footer .brand { color: var(--white); }
.footer-main { display: flex; justify-content: space-between; gap: 48px; padding-bottom: 50px; }
.footer-brand p { margin: 18px 0 0; font-size: var(--type-secondary); line-height: 1.55; }
.site-footer nav { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 16px 30px; }
.site-footer nav a { font-size: var(--type-secondary); font-weight: 620; text-decoration: none; text-underline-offset: 5px; transition: color .2s ease; }
.site-footer nav a:hover { color: var(--white); text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, .08); font-size: var(--type-meta); line-height: 1.6; }
.footer-bottom p { margin: 0; }

.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .72s var(--ease), transform .72s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Inner pages */
.inner-page { background: var(--paper); }
.inner-page .site-header { background: rgba(251, 250, 247, .92); border-color: var(--line); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); }
.page-main { padding-top: var(--header-height); }
.page-hero { position: relative; overflow: hidden; padding: 105px 0 85px; color: var(--white); background: linear-gradient(135deg, var(--navy-950), #0d314a); }
.page-hero::after { content: ""; position: absolute; top: -190px; right: -100px; width: 520px; height: 520px; border: 1px solid rgba(209, 168, 89, .1); border-radius: 50%; box-shadow: inset 0 0 90px rgba(45, 116, 151, .08); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 800px; color: var(--white); }
.page-hero p:not(.eyebrow) { max-width: 690px; margin: 25px 0 0; color: rgba(255, 255, 255, .64); font-size: 18px; }
.page-breadcrumb { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 35px; color: rgba(255, 255, 255, .52); font-size: var(--type-label); }
.page-breadcrumb a { color: rgba(255, 255, 255, .68); text-decoration: none; }
.content-section { padding: 90px 0 110px; }
.support-layout { display: grid; grid-template-columns: minmax(390px, .9fr) minmax(0, 1.1fr); align-items: start; gap: 72px; }
.support-aside { position: sticky; top: 110px; }
.support-aside h2, .content-card h2, .legal-content h2 { margin: 0; color: var(--navy-900); font-size: 38px; letter-spacing: -.045em; line-height: 1.12; }
.support-aside > p:not(.eyebrow):not(.support-note) { margin: 20px 0 0; color: var(--muted); font-size: 17px; line-height: 1.72; }
.contact-card { margin-top: 32px; padding: 31px; border-radius: 22px; color: var(--white); background: linear-gradient(145deg, var(--navy-950), var(--navy-800)); box-shadow: var(--shadow-sm); }
.contact-card .contact-label { display: block; color: var(--gold-300); font-size: var(--type-label); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-card strong { display: block; margin-top: 16px; font-size: 24px; letter-spacing: -.03em; line-height: 1.2; }
.contact-card p { margin: 12px 0 24px; color: rgba(255, 255, 255, .74); font-size: var(--type-secondary); line-height: 1.7; }
.contact-card a { display: flex; align-items: center; justify-content: center; width: 100%; min-height: 52px; padding: 12px 16px; border-radius: 12px; color: var(--navy-950); background: var(--white); font-size: 16px; font-weight: 750; text-align: center; text-decoration: none; overflow-wrap: anywhere; transition: transform .2s var(--ease), box-shadow .2s ease; }
.contact-card a:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0, 0, 0, .16); }
.support-content .faq-list { margin-top: 5px; }
.support-content .faq-list summary { font-size: 18px; }
.support-content .faq-list details p { font-size: var(--type-secondary); line-height: 1.75; }
.support-note { margin-top: 24px; padding: 21px 23px; border: 1px solid #dfc584; border-radius: 16px; color: #665025; background: #fbf4e3; font-size: var(--type-meta); line-height: 1.7; }
.support-note strong { color: #493716; font-weight: 800; }

.legal-wrap { display: grid; grid-template-columns: 245px minmax(0, 760px); align-items: start; justify-content: center; gap: 80px; }
.legal-nav { position: sticky; top: 110px; padding: 21px; border: 1px solid var(--line); border-radius: 17px; background: var(--white); box-shadow: 0 8px 25px rgba(8, 31, 49, .04); }
.legal-nav strong { display: block; margin-bottom: 13px; color: var(--navy-900); font-size: var(--type-meta); }
.legal-nav a { display: block; padding: 7px 0; color: #687581; font-size: var(--type-meta); text-decoration: none; }
.legal-nav a:hover { color: var(--blue-700); }
.privacy-page .legal-wrap { grid-template-columns: 300px minmax(0, 760px); gap: 68px; }
.privacy-page .legal-nav { padding: 28px; border-radius: 21px; box-shadow: 0 14px 36px rgba(8, 31, 49, .07); }
.privacy-page .legal-nav strong { margin-bottom: 18px; color: var(--navy-900); font-size: 16px; letter-spacing: -.01em; }
.privacy-page .legal-nav a { position: relative; margin: 3px 0; padding: 11px 14px 11px 31px; border-radius: 10px; color: #47596a; font-size: 15px; font-weight: 650; line-height: 1.35; transition: color .2s ease, background .2s ease, transform .2s var(--ease); }
.privacy-page .legal-nav a::before { content: ""; position: absolute; top: 50%; left: 14px; width: 6px; height: 6px; border: 1px solid var(--gold-500); border-radius: 50%; transform: translateY(-50%); }
.privacy-page .legal-nav a:hover, .privacy-page .legal-nav a:focus-visible { color: var(--navy-900); background: #f5f2e9; transform: translateX(2px); }
.legal-notice { margin-bottom: 35px; padding: 22px 24px; border: 1px solid #dfbd76; border-radius: 16px; color: #5f4a22; background: #fcf5e5; }
.legal-notice strong { display: block; margin-bottom: 5px; color: #4c3918; font-size: var(--type-meta); }
.legal-notice p { margin: 0; font-size: var(--type-meta); }
.legal-meta { margin: 0 0 38px; color: #6f7b85; font-size: var(--type-meta); }
.legal-content section { scroll-margin-top: 110px; }
.legal-content section + section { margin-top: 48px; padding-top: 48px; border-top: 1px solid var(--line); }
.legal-content h2 { font-size: 26px; }
.legal-content h3 { margin: 28px 0 9px; color: var(--navy-900); font-size: 17px; letter-spacing: -.02em; }
.legal-content p, .legal-content li { color: #5f6c78; font-size: var(--type-secondary); line-height: 1.78; }
.legal-content ul { padding-left: 20px; }
.legal-content a { color: var(--blue-700); }
.legal-wrap-single { display: block; max-width: 840px; }
.imprint-content section:first-child { margin-top: 0; }
.imprint-address { margin-top: 21px; padding: 24px 26px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: 0 8px 24px rgba(8, 31, 49, .04); }
.imprint-address p { margin: 0; }
.imprint-address p + p { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.optional-legal-line { margin: 13px 0 0; padding: 15px 17px; border-left: 3px solid var(--gold-500); border-radius: 0 10px 10px 0; background: #f8f5ec; }
.imprint-contact { display: inline-flex; margin-top: 5px; padding: 13px 17px; border-radius: 11px; color: var(--navy-900) !important; background: #f3ead6; font-size: 16px !important; }
.data-table-wrap { overflow-x: auto; margin-top: 22px; border: 1px solid var(--line); border-radius: 14px; }
.data-table { width: 100%; border-collapse: collapse; background: var(--white); font-size: var(--type-meta); }
.data-table th, .data-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); color: #5f6c78; text-align: left; vertical-align: top; }
.data-table th { color: var(--navy-900); background: #f5f6f3; font-size: var(--type-label); letter-spacing: .04em; text-transform: uppercase; }
.data-table tr:last-child td { border-bottom: 0; }
.inner-page .site-footer { margin-top: 0; }

/* Editorial guide pages */
.guide-page .site-header { background: rgba(251, 250, 247, .94); }
.guide-hero { padding: 96px 0 78px; }
.guide-hero h1 { max-width: 920px; font-size: clamp(48px, 6vw, 76px); }
.guide-hero p:not(.eyebrow) { max-width: 790px; font-size: 19px; line-height: 1.72; }
.guide-hero .page-breadcrumb { margin-top: 30px; }
.guide-content-section { padding: 84px 0 112px; }
.guide-layout { display: grid; grid-template-columns: 230px minmax(0, 820px); align-items: start; justify-content: center; gap: 72px; }
.guide-toc { position: sticky; top: 108px; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: 0 10px 28px rgba(8, 31, 49, .05); }
.guide-toc strong { display: block; margin-bottom: 13px; color: var(--navy-900); font-size: var(--type-secondary); }
.guide-toc a { display: block; padding: 7px 0; color: #536475; font-size: var(--type-meta); font-weight: 620; line-height: 1.45; text-decoration: none; }
.guide-toc a:hover, .guide-toc a:focus-visible { color: var(--blue-700); text-decoration: underline; text-underline-offset: 4px; }
.guide-article { min-width: 0; }
.guide-article > p:first-child { margin-top: 0; color: #384d61; font-size: 20px; line-height: 1.75; }
.guide-article p, .guide-article li { color: #4e6071; font-size: 17px; line-height: 1.82; }
.guide-article p { margin: 0 0 22px; }
.guide-article ul, .guide-article ol { margin: 19px 0 28px; padding-left: 25px; }
.guide-article li + li { margin-top: 9px; }
.guide-article h2 { margin: 64px 0 21px; color: var(--navy-900); font-size: clamp(30px, 3.3vw, 40px); letter-spacing: -.045em; line-height: 1.14; }
.guide-article h3 { margin: 38px 0 13px; color: var(--navy-900); font-size: 23px; letter-spacing: -.025em; line-height: 1.25; }
.guide-article a { color: #0b527d; font-weight: 650; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.guide-article a:hover { color: var(--navy-900); }
.guide-summary { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; margin: 32px 0 42px; }
.guide-summary span { padding: 17px; border: 1px solid var(--line); border-radius: 14px; color: var(--navy-900); background: var(--white); font-size: var(--type-meta); font-weight: 720; line-height: 1.45; box-shadow: 0 7px 20px rgba(8, 31, 49, .04); }
.guide-callout, .source-note, .partner-disclaimer { margin: 30px 0; padding: 25px 27px; border-radius: 17px; }
.guide-callout { border: 1px solid #e2c684; background: #fbf4e4; }
.guide-callout strong, .source-note strong, .partner-disclaimer strong { display: block; margin-bottom: 7px; color: var(--navy-900); font-size: var(--type-secondary); }
.guide-callout p, .source-note p, .partner-disclaimer p { margin: 0; font-size: var(--type-secondary); line-height: 1.72; }
.source-note { border: 1px solid #c9d9e2; background: #eef5f7; }
.partner-disclaimer { border-left: 4px solid var(--gold-500); background: #f4f1e9; }
.partner-disclaimer p { color: #53606d; }
.guide-checklist { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px 17px; padding: 0; list-style: none; }
.guide-checklist li { position: relative; margin: 0; padding: 15px 16px 15px 45px; border: 1px solid var(--line); border-radius: 13px; background: var(--white); }
.guide-checklist li::before { content: "✓"; position: absolute; top: 14px; left: 16px; color: var(--success); font-weight: 850; }
.guide-steps { padding: 0; list-style: none; counter-reset: guide-step; }
.guide-steps li { position: relative; min-height: 58px; margin: 0; padding: 2px 0 25px 63px; counter-increment: guide-step; }
.guide-steps li::before { content: counter(guide-step, decimal-leading-zero); position: absolute; top: 0; left: 0; display: grid; width: 43px; height: 43px; border-radius: 12px; color: var(--navy-950); background: var(--gold-300); font-size: var(--type-label); font-weight: 850; place-items: center; }
.guide-steps li + li { margin-top: 10px; }
.guide-faq details { border-top: 1px solid var(--line); }
.guide-faq details:last-child { border-bottom: 1px solid var(--line); }
.guide-faq summary { padding: 20px 36px 20px 0; color: var(--navy-900); font-size: 18px; font-weight: 730; line-height: 1.45; cursor: pointer; }
.guide-faq details p { margin: -4px 0 22px; }
.related-guides { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 22px; }
.related-guides a { display: flex; min-height: 116px; padding: 22px; border: 1px solid var(--line); border-radius: 16px; color: var(--navy-900); background: var(--white); font-size: var(--type-secondary); font-weight: 730; line-height: 1.45; text-decoration: none; box-shadow: 0 9px 25px rgba(8, 31, 49, .05); align-items: flex-end; transition: transform .2s var(--ease), border-color .2s ease; }
.related-guides a:hover { border-color: rgba(15, 71, 111, .38); transform: translateY(-2px); }
.guide-cta { margin-top: 70px; padding: 42px; border-radius: 25px; color: var(--white); background: linear-gradient(140deg, var(--navy-950), #113b57); box-shadow: var(--shadow-sm); }
.guide-cta h2 { margin: 0 0 15px; color: var(--white); font-size: 34px; }
.guide-cta p { max-width: 640px; color: rgba(255, 255, 255, .74); }
.guide-cta .button { margin-top: 8px; color: var(--navy-950); background: var(--white); }

.guide-hub-intro { max-width: 820px; margin-bottom: 52px; }
.guide-hub-intro p { color: #4e6071; font-size: 18px; line-height: 1.78; }
.guide-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.guide-card { display: flex; flex-direction: column; min-height: 300px; padding: 31px; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: var(--shadow-sm); }
.guide-card:first-child { color: var(--white); background: linear-gradient(145deg, var(--navy-950), #123f5d); }
.guide-card .guide-card-label { color: var(--gold-500); font-size: var(--type-label); font-weight: 820; letter-spacing: .1em; text-transform: uppercase; }
.guide-card h2 { margin: 25px 0 14px; color: var(--navy-900); font-size: 29px; letter-spacing: -.04em; line-height: 1.16; }
.guide-card:first-child h2 { color: var(--white); }
.guide-card p { margin: 0 0 25px; color: #5d6d7b; font-size: var(--type-secondary); line-height: 1.7; }
.guide-card:first-child p { color: rgba(255, 255, 255, .7); }
.guide-card a { margin-top: auto; color: var(--blue-700); font-size: var(--type-secondary); font-weight: 760; text-decoration: none; }
.guide-card:first-child a { color: var(--gold-300); }
.guide-card a:hover { text-decoration: underline; text-underline-offset: 5px; }
.problem-guide-link { display: inline-flex; margin-top: 12px; color: var(--blue-700); font-size: var(--type-secondary); font-weight: 760; text-decoration: none; }
.problem-guide-link:hover { text-decoration: underline; text-underline-offset: 5px; }

.error-page { min-height: 100vh; display: grid; color: var(--white); background: var(--navy-950); place-items: center; }
.error-card { width: min(90%, 650px); text-align: center; }
.error-card img { width: 76px; border-radius: 20px; }
.error-card .error-code { display: block; margin: 24px 0 5px; color: var(--gold-500); font-size: var(--type-label); font-weight: 800; letter-spacing: .17em; }
.error-card h1 { margin: 0; font-size: clamp(42px, 8vw, 75px); letter-spacing: -.055em; }
.error-card p { margin: 18px auto 30px; color: rgba(255, 255, 255, .6); }

@media (max-width: 1040px) {
  .header-inner { gap: 18px; }
  .primary-nav { gap: 22px; }
  .hero-grid { grid-template-columns: minmax(0, .95fr) minmax(390px, 1.05fr); gap: 25px; }
  .hero h1 { font-size: clamp(49px, 7vw, 72px); }
  .float-card-left { left: -30px; }
  .float-card-right { right: -20px; }
  .problem-grid { gap: 55px; }
  .phone-gallery { gap: 12px; }
  .privacy-copy { padding-right: 45px; }
}

@media (max-width: 1000px) {
  :root { --header-height: 70px; }
  .container { width: min(calc(100% - 36px), var(--container)); }
  .section { padding: 88px 0; }
  .header-inner { gap: 12px; }
  .language-switcher { margin-left: auto; }
  .menu-toggle { display: grid; width: 42px; height: 42px; margin-left: 0; padding: 10px; border: 1px solid var(--line); border-radius: 11px; background: rgba(255, 255, 255, .78); place-content: center; gap: 4px; }
  .menu-toggle span:not(.sr-only) { display: block; width: 18px; height: 1.5px; background: var(--navy-900); transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(5.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-5.5px) rotate(-45deg); }
  .primary-nav { position: fixed; top: var(--header-height); right: 0; left: 0; display: grid; gap: 0; margin: 0; padding: 14px 18px 24px; border-bottom: 1px solid var(--line); background: rgba(251, 250, 247, .98); box-shadow: 0 20px 40px rgba(5, 24, 41, .1); opacity: 0; transform: translateY(-12px); visibility: hidden; transition: opacity .2s ease, transform .2s ease, visibility .2s; }
  .primary-nav.is-open { opacity: 1; transform: translateY(0); visibility: visible; }
  .primary-nav a { padding: 14px 10px; border-bottom: 1px solid rgba(9, 27, 45, .07); color: var(--navy-900); font-size: 16px; }
  .primary-nav a:last-child { border-bottom: 0; }
  .primary-nav a::after { display: none; }
  .header-cta { display: none; }
  .primary-nav .mobile-app-store-link { display: flex; margin-top: 12px; border: 0; border-radius: 12px; color: var(--white); background: var(--navy-900); font-weight: 720; justify-content: center; }
  body:not(.inner-page) .site-header:not(.is-scrolled) .primary-nav a { color: var(--navy-900); }
  body:not(.inner-page) .site-header:not(.is-scrolled) .primary-nav .mobile-app-store-link { color: var(--white); }
  .hero { padding-top: calc(var(--header-height) + 68px); }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { max-width: 720px; margin: auto; }
  .hero .eyebrow, .hero-actions, .trust-row { justify-content: center; }
  .hero-lead { margin-right: auto; margin-left: auto; }
  .hero-visual { min-height: 620px; }
  .float-card-left { left: 0; }
  .float-card-right { right: 0; }
  .problem-grid { grid-template-columns: 1fr; gap: 55px; }
  .section-copy { max-width: 680px; }
  .feature-card, .feature-card-large { min-height: 0; }
  .founder-panel { grid-template-columns: 1fr; gap: 38px; padding: 45px; }
  .founder-story { padding: 35px 0 0; border-top: 1px solid rgba(209, 168, 89, .55); border-left: 0; }
  .plans-section { padding-bottom: 88px; }
  .plans-panel { grid-template-columns: 1fr; gap: 35px; padding: 42px; }
  .steps { grid-template-columns: 1fr; }
  .step-card { min-height: auto; }
  .step-card h3 { margin-top: 28px; }
  .phone-gallery { grid-template-columns: repeat(2, 1fr); row-gap: 75px; }
  .preview-item:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .workflow-heading { grid-template-columns: 1fr; gap: 25px; }
  .workflow-gallery { grid-template-columns: repeat(2, 1fr); row-gap: 70px; }
  .privacy-section { padding-top: 72px; }
  .privacy-panel { grid-template-columns: 1fr; }
  .privacy-art { min-height: 350px; }
  .privacy-copy { padding: 20px 55px 65px; }
  .faq-grid { grid-template-columns: 1fr; gap: 50px; }
  .support-layout { grid-template-columns: 1fr; gap: 55px; }
  .support-aside { position: static; }
  .legal-wrap { grid-template-columns: 1fr; gap: 35px; }
  .legal-nav { position: static; display: flex; flex-wrap: wrap; gap: 5px 15px; }
  .legal-nav strong { width: 100%; }
  .privacy-page .legal-wrap { grid-template-columns: 1fr; gap: 45px; }
  .privacy-page .legal-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; padding: 24px; }
  .privacy-page .legal-nav strong { grid-column: 1 / -1; width: auto; margin-bottom: 10px; }
  .privacy-page .legal-nav a { margin: 0; font-size: 15px; }
  .guide-layout { grid-template-columns: 1fr; gap: 38px; }
  .guide-toc { position: static; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px 18px; }
  .guide-toc strong { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 74px 0; }
  .brand { font-size: 17px; }
  .brand img { width: 39px; height: 39px; }
  .language-switcher { gap: 6px; padding: 6px 8px; }
  .hero { min-height: auto; padding-bottom: 50px; }
  .hero h1 { font-size: clamp(46px, 13vw, 62px); }
  html[lang="de"] .hero h1 { font-size: clamp(41px, 11.6vw, 55px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { flex-direction: column; gap: 18px; }
  .hero-actions .button { width: min(100%, 300px); }
  .trust-row { gap: 9px 17px; }
  .hero-visual { min-height: 530px; margin-top: 15px; }
  .phone-hero { width: 242px; height: auto; }
  .phone { border-radius: 40px; }
  .phone-screen { border-radius: 33px; }
  .float-card { min-width: 175px; padding: 11px; }
  .float-card-left { top: 80px; left: -5px; }
  .float-card-right { right: -3px; bottom: 74px; }
  .float-card strong { font-size: var(--type-label); }
  .orbit-one { width: 360px; height: 250px; }
  .orbit-two { width: 440px; height: 310px; }
  .interface-note { display: none; }
  .trust-strip-inner { flex-wrap: wrap; gap: 12px 19px; }
  .trust-strip i { display: none; }
  .section-copy h2, .section-heading h2, .privacy-copy h2, .page-hero h1 { font-size: clamp(37px, 11vw, 50px); }
  .section-heading { margin-bottom: 42px; }
  .memory-card { padding: 22px; border-radius: 24px; }
  .memory-card-head { align-items: flex-start; gap: 12px; font-size: 16px; }
  .memory-count { font-size: var(--type-label); white-space: nowrap; }
  .memory-list li { padding: 14px 2px; font-size: var(--type-secondary); }
  .memory-resolved { padding: 17px; }
  .memory-resolved strong { font-size: var(--type-secondary); }
  .memory-resolved small { font-size: var(--type-meta); }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-card-large { grid-column: auto; min-height: 0; padding: 25px; }
  .feature-card-large { min-height: 360px; }
  .feature-card h3 { margin-top: 23px; font-size: 23px; }
  .feature-card p { font-size: var(--type-secondary); }
  .founder-section { padding-bottom: 74px; }
  .founder-panel { width: calc(100% - 20px); padding: 31px 24px; border-radius: 27px; }
  .founder-heading h2 { font-size: 34px; }
  .founder-story { padding-top: 28px; }
  .founder-story > p { font-size: var(--type-secondary); }
  .founder-story .founder-signoff { align-items: flex-start; font-size: var(--type-meta); }
  .plans-section { padding-bottom: 74px; }
  .plans-panel { width: calc(100% - 20px); padding: 34px 24px; border-radius: 27px; }
  .plan-cards { grid-template-columns: 1fr; }
  .plan-card { min-height: 0; }
  .claim-visual { grid-template-columns: 45px 1fr; padding: 20px; }
  .claim-visual > i { display: none; }
  .phone-gallery { display: flex; gap: 20px; margin-right: -14px; margin-left: -14px; padding: 0 14px 22px; overflow-x: auto; scroll-padding-inline: 14px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .preview-item { flex: 0 0 min(76vw, 285px); scroll-snap-align: center; }
  .phone-preview { max-width: 258px; }
  .phone-gallery::-webkit-scrollbar { height: 5px; }
  .phone-gallery::-webkit-scrollbar-thumb { border-radius: 5px; background: rgba(9, 27, 45, .18); }
  .workflow-heading h2 { font-size: clamp(37px, 11vw, 50px); }
  .workflow-heading > p { font-size: var(--type-secondary); }
  .workflow-gallery { display: flex; gap: 20px; margin: 55px -14px 0; padding: 0 14px 22px; overflow-x: auto; scroll-padding-inline: 14px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .workflow-item { flex: 0 0 min(76vw, 285px); scroll-snap-align: center; }
  .workflow-item .phone-preview { max-width: 258px; }
  .workflow-item figcaption { max-width: 258px; }
  .workflow-gallery::-webkit-scrollbar { height: 5px; }
  .workflow-gallery::-webkit-scrollbar-thumb { border-radius: 5px; background: rgba(255, 255, 255, .17); }
  .privacy-section { padding-top: 58px; }
  .privacy-panel { width: calc(100% - 20px); min-height: auto; border-radius: 28px; }
  .privacy-art { min-height: 280px; }
  .privacy-orbit { width: 330px; height: 330px; }
  .privacy-copy { padding: 10px 28px 48px; }
  .privacy-copy > p:not(.eyebrow) { font-size: var(--type-secondary); }
  .faq-list summary { font-size: 17px; }
  .support-aside h2 { font-size: 34px; }
  .support-aside > p:not(.eyebrow):not(.support-note) { font-size: 16px; }
  .contact-card { padding: 24px; }
  .contact-card strong { font-size: 22px; }
  .contact-card p { font-size: var(--type-secondary); }
  .contact-card a { font-size: var(--type-secondary); }
  .support-note { padding: 18px; font-size: var(--type-meta); }
  .support-content .faq-list summary { font-size: 17px; }
  .support-content .faq-list details p { font-size: var(--type-secondary); }
  .final-cta { padding: 85px 0; }
  .final-cta h2 { font-size: clamp(43px, 12vw, 59px); }
  .footer-main { flex-direction: column; gap: 40px; padding-bottom: 42px; }
  .site-footer nav { align-items: flex-start; flex-direction: column; gap: 18px; }
  .footer-bottom { flex-direction: column; gap: 12px; padding-top: 25px; }
  .page-hero { padding: 78px 0 65px; }
  .page-hero p:not(.eyebrow) { font-size: 16px; }
  .content-section { padding: 65px 0 85px; }
  .legal-content h2 { font-size: 23px; }
  .imprint-address { padding: 20px; }
  .optional-legal-line { padding: 14px; }
  .imprint-contact { display: block; font-size: var(--type-secondary) !important; overflow-wrap: anywhere; }
  .legal-nav { display: none; }
  .privacy-page .legal-nav { display: grid; grid-template-columns: 1fr; gap: 5px; padding: 21px; }
  .privacy-page .legal-nav strong { grid-column: auto; font-size: 17px; }
  .privacy-page .legal-nav a { padding-top: 12px; padding-bottom: 12px; font-size: 16px; }
  .data-table th, .data-table td { min-width: 150px; padding: 12px; }
  .guide-hero { padding: 74px 0 62px; }
  .guide-hero h1 { font-size: clamp(39px, 11vw, 52px); }
  .guide-hero p:not(.eyebrow) { font-size: 17px; }
  .guide-content-section { padding: 60px 0 82px; }
  .guide-toc { grid-template-columns: 1fr; padding: 21px; }
  .guide-toc strong { grid-column: auto; }
  .guide-article > p:first-child { font-size: 18px; }
  .guide-article p, .guide-article li { font-size: 16px; line-height: 1.78; }
  .guide-article h2 { margin-top: 51px; font-size: 30px; }
  .guide-article h3 { font-size: 21px; }
  .guide-summary, .guide-checklist, .related-guides, .guide-card-grid { grid-template-columns: 1fr; }
  .guide-callout, .source-note, .partner-disclaimer { padding: 21px; }
  .guide-cta { margin-top: 56px; padding: 29px 24px; }
  .guide-cta h2 { font-size: 29px; }
  .guide-card { min-height: 0; padding: 26px; }
  .guide-card h2 { font-size: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .legal-nav { display: none; }
  .page-main { padding-top: 0; }
  .page-hero { padding: 35px 0; color: var(--ink); background: none; }
  .page-hero h1 { color: var(--ink); }
  .page-hero p:not(.eyebrow), .page-breadcrumb { color: var(--muted); }
  .content-section { padding: 40px 0; }
  .legal-wrap { display: block; }
  .legal-content { max-width: none; }
}
