:root {
  --bg-top: #73bff7;
  --bg-mid: #d8efff;
  --bg-bottom: #f6fbff;
  --surface: rgba(255, 255, 255, 0.68);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --surface-border: rgba(22, 87, 146, 0.12);
  --text: #17253a;
  --muted: #53657f;
  --accent: #1d84f5;
  --accent-strong: #105ab6;
  --accent-soft: rgba(29, 132, 245, 0.12);
  --mint: #39b985;
  --gold: #f0c24c;
  --purple: #6f47df;
  --orange: #ff8f2b;
  --shadow: 0 26px 70px rgba(31, 87, 150, 0.16);
  --shadow-soft: 0 18px 44px rgba(32, 91, 155, 0.12);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-pill: 999px;
  --container: min(1160px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 255, 255, 0.9), transparent 16%),
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.48), transparent 18%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 34%, var(--bg-bottom) 100%);
}

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

a {
  color: inherit;
}

.page-shell {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  padding: 20px 0 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(18px);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 16px 32px rgba(23, 63, 109, 0.18);
}

.brand-copy {
  min-width: 0;
}

.brand-name {
  display: block;
  font-family: "Georgia", "Iowan Old Style", "Baskerville", serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-tag {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.nav-links a {
  padding: 10px 14px;
  color: var(--muted);
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  color: var(--accent-strong);
  background: rgba(255, 255, 255, 0.55);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 26px;
  padding: 24px 0 56px;
}

.hero-panel,
.feature-card,
.metric-card,
.support-card,
.legal-callout,
.faq-item,
.article-shell,
.section-panel,
.footer-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-copy,
.page-hero-card,
.article-shell,
.support-card,
.legal-callout,
.section-panel,
.feature-card {
  border-radius: var(--radius-xl);
}

.hero-copy,
.page-hero-card {
  padding: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  margin-bottom: 22px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-title,
.section-title,
.page-title {
  margin: 0;
  font-family: "Georgia", "Iowan Old Style", "Baskerville", serif;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero-title {
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  max-width: 9.5ch;
}

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  max-width: 12ch;
}

.page-title {
  font-size: clamp(2.5rem, 5.4vw, 4.2rem);
  max-width: 11ch;
}

.accent-text {
  color: var(--accent);
}

.hero-subtitle,
.section-copy,
.page-subtitle,
.body-copy,
.faq-body,
.article-shell p,
.article-shell li,
.feature-card p,
.support-card p,
.legal-callout p,
.timeline-step p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1rem;
}

.hero-subtitle,
.page-subtitle {
  max-width: 60ch;
  margin: 18px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 18px;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #f8fbff;
  box-shadow: 0 18px 34px rgba(29, 107, 201, 0.28);
}

.button-secondary {
  color: var(--accent-strong);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(16, 90, 182, 0.16);
}

.button:hover,
.button-secondary:hover,
.button:focus-visible,
.button-secondary:focus-visible {
  transform: translateY(-2px);
}

.hero-footnote,
.meta-row,
.footer-copy {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.signal-pill,
.scene-badge,
.showcase-badge,
.stat-pill,
.micro-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}

.signal-pill {
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  min-width: 150px;
}

.signal-value {
  font-weight: 800;
  color: var(--accent-strong);
}

.signal-label {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-stage {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: calc(var(--radius-xl) + 2px);
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    url("assets/berlin-skyline.jpg") center/cover;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(95, 177, 243, 0.28), rgba(19, 52, 97, 0.38));
}

.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.62);
  border-radius: 100px;
  filter: blur(2px);
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: inherit;
  border-radius: 50%;
}

.cloud-one {
  top: 42px;
  left: 42px;
  width: 140px;
  height: 46px;
}

.cloud-one::before {
  width: 62px;
  height: 62px;
  left: 20px;
  top: -24px;
}

.cloud-one::after {
  width: 72px;
  height: 72px;
  right: 18px;
  top: -28px;
}

.cloud-two {
  top: 94px;
  right: 64px;
  width: 124px;
  height: 38px;
  opacity: 0.72;
}

.cloud-two::before {
  width: 52px;
  height: 52px;
  left: 14px;
  top: -20px;
}

.cloud-two::after {
  width: 58px;
  height: 58px;
  right: 16px;
  top: -22px;
}

.cloud-three {
  bottom: 44px;
  left: 58px;
  width: 108px;
  height: 34px;
  opacity: 0.62;
}

.cloud-three::before {
  width: 46px;
  height: 46px;
  left: 12px;
  top: -18px;
}

.cloud-three::after {
  width: 54px;
  height: 54px;
  right: 14px;
  top: -20px;
}

.app-scene {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(245, 251, 255, 0.92), rgba(226, 243, 255, 0.84));
  border: 1px solid rgba(255, 255, 255, 0.68);
}

.scene-topbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.scene-badge {
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
}

.scene-badge-soft {
  color: var(--muted);
}

.scene-banner {
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(112, 191, 248, 0.24), rgba(255, 255, 255, 0.8));
  border: 1px solid rgba(30, 132, 245, 0.14);
}

.scene-kicker {
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scene-banner h2 {
  margin: 8px 0 8px;
  font-family: "Georgia", "Iowan Old Style", "Baskerville", serif;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  line-height: 1;
}

.scene-banner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.scene-grid,
.phone-card-grid,
.metrics-band,
.feature-grid,
.support-grid,
.legal-grid,
.article-grid,
.timeline {
  display: grid;
  gap: 18px;
}

.scene-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-tile,
.metric-card {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(235, 247, 255, 0.82));
}

.tile-label,
.metric-label,
.feature-kicker,
.phone-label {
  display: block;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-tile strong,
.metric-value {
  display: block;
  margin-top: 8px;
  font-size: 1.34rem;
  font-weight: 800;
}

.dashboard-tile p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.image-tile {
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(123, 188, 246, 0.2), rgba(214, 238, 255, 0.95));
}

.image-tile img {
  width: 100%;
  height: 100%;
  min-height: 178px;
  object-fit: cover;
}

.section {
  padding: 26px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 22px;
}

.section-copy {
  max-width: 54ch;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compact-grid .feature-card {
  min-height: 100%;
}

.feature-card {
  padding: 24px;
}

.feature-card h3,
.support-card h3,
.legal-callout h3,
.timeline-step h3 {
  margin: 12px 0 10px;
  font-family: "Georgia", "Iowan Old Style", "Baskerville", serif;
  font-size: 1.6rem;
}

.feature-list,
.article-shell ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.feature-list li,
.article-shell li {
  margin-bottom: 8px;
}

.section-panel {
  padding: 28px;
}

.timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline-step {
  position: relative;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(29, 132, 245, 0.12);
  color: var(--accent-strong);
  font-weight: 800;
}

.truth-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metrics-band .metric-card {
  min-height: 168px;
}

.metrics-band .metric-value {
  font-family: "Georgia", "Iowan Old Style", "Baskerville", serif;
  font-size: 1.88rem;
  line-height: 1.05;
}

.quote-panel {
  margin-bottom: 18px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(229, 244, 255, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: var(--shadow-soft);
}

.quote-panel p {
  margin: 0 0 12px;
  font-family: "Georgia", "Iowan Old Style", "Baskerville", serif;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.quote-panel span {
  color: var(--muted);
  font-size: 0.95rem;
}

.page-hero {
  padding: 24px 0 28px;
}

.meta-row {
  margin-top: 18px;
}

.support-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.support-grid-right {
  display: grid;
  gap: 18px;
}

.support-card,
.legal-callout {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 22px;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 22px;
  font-size: 1.04rem;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  color: var(--accent-strong);
}

.faq-body {
  padding: 0 22px 22px;
}

.legal-grid {
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
}

.article-shell {
  padding: 30px;
}

.article-shell h2,
.article-shell h3 {
  font-family: "Georgia", "Iowan Old Style", "Baskerville", serif;
}

.article-shell h2 {
  margin: 30px 0 12px;
  font-size: 1.7rem;
}

.article-shell h3 {
  margin: 18px 0 8px;
  font-size: 1.16rem;
}

.article-shell p {
  margin: 0 0 12px;
}

.article-shell a,
.support-card a,
.legal-callout a {
  color: var(--accent-strong);
}

.note-box {
  margin: 18px 0;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(213, 237, 255, 0.8), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(29, 132, 245, 0.14);
}

.site-footer {
  padding: 22px 0 38px;
}

.footer-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 28px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent-strong);
}

.fade-in {
  animation: fadeUp 720ms ease both;
}

.fade-in.delay-1 {
  animation-delay: 80ms;
}

.fade-in.delay-2 {
  animation-delay: 160ms;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero,
  .feature-grid,
  .timeline,
  .truth-grid,
  .support-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .scene-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-header,
  .footer-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-title,
  .page-title,
  .hero-title {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero-copy,
  .hero-stage,
  .page-hero-card,
  .article-shell,
  .support-card,
  .legal-callout,
  .section-panel,
  .feature-card {
    padding: 22px;
  }

  .hero {
    gap: 18px;
    padding-top: 18px;
  }

  .hero-pill-row,
  .scene-topbar,
  .footer-links {
    gap: 10px;
  }

  .signal-pill,
  .scene-badge {
    width: 100%;
  }

  .scene-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-tile strong,
  .metric-value {
    font-size: 1.2rem;
  }
}
