:root {
  --bg: #07111a;
  --bg-elevated: #0d1b27;
  --panel: rgba(10, 22, 34, 0.82);
  --panel-soft: rgba(255, 255, 255, 0.05);
  --text: #f4efe4;
  --muted: #b0c0c7;
  --line: rgba(160, 203, 219, 0.16);
  --line-strong: rgba(255, 189, 89, 0.34);
  --brand: #73d9f4;
  --accent: #ffbd59;
  --accent-soft: rgba(255, 189, 89, 0.14);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  position: relative;
  overflow-x: hidden;
  font: 16px/1.55 "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 560px at 0% 0%, rgba(115, 217, 244, 0.18), transparent 62%),
    radial-gradient(760px 520px at 100% 8%, rgba(255, 189, 89, 0.15), transparent 60%),
    radial-gradient(720px 460px at 50% 100%, rgba(115, 217, 244, 0.08), transparent 62%),
    linear-gradient(180deg, #07111a 0%, #0c1721 56%, #08131c 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 82%);
  opacity: 0.45;
}

a {
  color: inherit;
  text-decoration: none;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

button,
select,
summary {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(7, 17, 26, 0.68);
  border-bottom: 1px solid var(--line);
}

.topbar__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}

.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #11202b;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 16px 34px rgba(115, 217, 244, 0.22);
}

.brand__text {
  display: grid;
  gap: 2px;
}

.brand__name {
  font-weight: 750;
  letter-spacing: 0.01em;
}

.brand__tagline {
  color: var(--muted);
  font-size: 13px;
}

.topnav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.topnav__link {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
}

.topnav__link:hover,
.topnav__link:focus-visible,
.footer__link:hover,
.footer__link:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.topbar__actions {
  display: flex;
  justify-content: flex-end;
}

.lang {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.lang__label {
  color: var(--muted);
  font-size: 13px;
}

.lang__select {
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  min-width: 140px;
}

.hero {
  padding: 54px 0 36px;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 34px;
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(115, 217, 244, 0.22);
  background: rgba(9, 24, 35, 0.72);
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__eyebrowDot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 0 0 6px rgba(115, 217, 244, 0.1);
}

.hero__title,
.section__title,
.cta__title {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.hero__title {
  margin: 18px 0 0;
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.95;
}

.hero__subtitle {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2.2vw, 20px);
  max-width: 34rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  min-height: 50px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn--primary {
  border-color: rgba(255, 189, 89, 0.46);
  background: linear-gradient(135deg, #ffbf62, #ffe08a);
  color: #11202b;
  box-shadow: 0 20px 40px rgba(255, 189, 89, 0.18);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.03);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.06);
}

.hero__badges,
.cta__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__badges {
  margin-top: 18px;
}

.pill {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  backdrop-filter: blur(10px);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
  max-width: 560px;
}

.statCard {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.statCard__value {
  font-size: clamp(1.45rem, 3vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
}

.statCard__label {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.hero__visual {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
}

.hero__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.9;
  pointer-events: none;
}

.hero__orb--a {
  inset: 16px auto auto 34px;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(115, 217, 244, 0.34), transparent 72%);
}

.hero__orb--b {
  inset: auto 10px 24px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 189, 89, 0.28), transparent 72%);
}

.hero__dashboard {
  position: relative;
  z-index: 1;
  padding: 22px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(7, 18, 28, 0.72);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero__dashboard::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(115, 217, 244, 0.13), transparent);
  pointer-events: none;
}

.hero__metrics {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.hero__dashboard--shot {
  display: grid;
  gap: 16px;
}

.hero__screenWrap {
  position: relative;
  width: min(100%, 320px);
  margin: 0 auto;
  padding: 10px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.hero__screenWrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 14px;
  transform: translateX(-50%);
  width: 32%;
  height: 18px;
  border-radius: 999px;
  background: rgba(4, 9, 14, 0.92);
  z-index: 2;
}

.hero__screen {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  background: #fff;
}

/* ── Rendered app mockup ── */
.appMock {
  border-radius: 28px;
  background: #fafafa;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
  color: #1a1a1a;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  position: relative;
  z-index: 1;
}
.appMock__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 38px 16px 10px;
  background: rgba(250, 250, 250, 0.95);
}
.appMock__brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.appMock__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
}
.appMock__icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.appMock__name {
  font-size: 14px;
  font-weight: 600;
}
.appMock__headerIcons {
  display: flex;
  gap: 8px;
}
.appMock__headerBtn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #64748b;
}
.appMock__headerBtn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.appMock__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px 12px;
  gap: 16px;
}
.appMock__timer {
  font-family: "SF Mono", "Menlo", "Consolas", monospace;
  font-size: 48px;
  font-weight: 300;
  letter-spacing: -1px;
  color: #94a3b8;
}
.appMock__status {
  font-size: 13px;
  color: #94a3b8;
  margin-top: -8px;
}
.appMock__projectBar {
  width: 100%;
  max-width: 260px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  font-size: 12px;
  color: #94a3b8;
}
.appMock__projectBar svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.appMock__playBtn {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.25);
  margin: 4px 0;
}
.appMock__playBtn svg {
  width: 32px;
  height: 32px;
  fill: #fff;
  stroke: none;
  margin-left: 4px;
}
.appMock__summary {
  width: 100%;
  margin-top: auto;
}
.appMock__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 8px;
  background: #f1f5f9;
  padding: 3px;
  margin-bottom: 12px;
}
.appMock__tab {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 0;
  border-radius: 6px;
  color: #64748b;
}
.appMock__tab--active {
  background: #fff;
  color: #1a1a1a;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.appMock__weekCard {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px;
}
.appMock__weekRow {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.appMock__weekLabel {
  font-size: 12px;
  color: #64748b;
}
.appMock__weekValue {
  font-size: 14px;
  font-weight: 600;
}
.appMock__progressTrack {
  height: 6px;
  border-radius: 3px;
  background: #f1f5f9;
  overflow: hidden;
  margin-bottom: 6px;
}
.appMock__progressFill {
  height: 100%;
  border-radius: 3px;
  background: #2563eb;
}
.appMock__progressLabel {
  font-size: 11px;
  color: #94a3b8;
  text-align: right;
}
.appMock__nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8px 0 12px;
  border-top: 1px solid #e2e8f0;
  background: rgba(250, 250, 250, 0.95);
}
.appMock__navItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 10px;
  color: #94a3b8;
}
.appMock__navItem--active {
  color: #2563eb;
}
.appMock__navItem svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__screenMeta {
  display: grid;
  gap: 14px;
}

.hero__screenNote {
  border: 1px solid var(--line);
  background: rgba(6, 15, 23, 0.78);
  border-radius: 22px;
  padding: 18px;
}

.hero__screenNoteTitle {
  margin: 0 0 10px;
  font-size: 15px;
}

.featureGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.metricCard {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(6, 15, 23, 0.82);
}

.metricCard__label {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.metricCard__value {
  margin-top: 10px;
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(12, 27, 39, 0.96), rgba(8, 17, 27, 0.94));
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.hero__card {
  min-height: 360px;
}

.card__kicker {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.card__footnote {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 44px 0;
}

.section--showcase {
  padding-top: 28px;
}

.showcase {
  position: relative;
  padding: 30px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.section--alt {
  position: relative;
}

.section--alt::before {
  content: "";
  position: absolute;
  inset: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: linear-gradient(180deg, rgba(255, 189, 89, 0.05), rgba(115, 217, 244, 0.04));
  pointer-events: none;
}

.section__head {
  position: relative;
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.section__head--split {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
}

.section__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.section__subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 64ch;
  font-size: 17px;
}

.showcase__accent {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

.showcase__line {
  width: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(115, 217, 244, 0.24), rgba(255, 189, 89, 0.75));
}

.showcase__line:nth-child(1) {
  height: 44px;
}

.showcase__line:nth-child(2) {
  height: 68px;
}

.showcase__line:nth-child(3) {
  height: 56px;
}

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

.tile {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(255, 189, 89, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(12, 26, 39, 0.94), rgba(8, 17, 27, 0.98));
  border-radius: 24px;
  padding: 24px;
  min-height: 210px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.tile::after {
  content: "";
  position: absolute;
  inset: auto -12px -36px auto;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.45;
}

.tile:hover,
.tile:focus-within {
  transform: translateY(-3px);
  border-color: rgba(255, 189, 89, 0.3);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.24);
}

.tile__title {
  margin: 0 0 10px;
  max-width: 14ch;
  font-size: 22px;
  line-height: 1.05;
}

.tile__body {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  max-width: 26ch;
}

.twoCol {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 18px;
}

.panelStack {
  display: grid;
  gap: 18px;
}

.panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(12, 26, 39, 0.94), rgba(8, 17, 27, 0.98));
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.panel--lead {
  padding: 28px;
}

.panel--compact {
  min-height: 100%;
}

.panel--signal {
  border-color: var(--line-strong);
  background:
    radial-gradient(circle at left center, rgba(255, 189, 89, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(12, 26, 39, 0.94), rgba(8, 17, 27, 0.98));
}

.panel__title {
  margin: 0 0 14px;
  font-size: 18px;
}

.panel__body {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.articleCta {
  border-color: var(--line-strong);
  background:
    radial-gradient(circle at top left, rgba(255, 189, 89, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(12, 26, 39, 0.96), rgba(8, 17, 27, 0.98));
}

.articleCta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

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

.signalStrip__item {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 13px;
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.list li::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 0 0 5px rgba(115, 217, 244, 0.08);
}

.faq {
  display: grid;
  gap: 14px;
  max-width: 920px;
}

.faqItem {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(12, 26, 39, 0.9), rgba(8, 17, 27, 0.98));
  border-radius: 22px;
  overflow: hidden;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.faqItem[open] {
  border-color: rgba(115, 217, 244, 0.24);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.faqItem summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 18px 56px 18px 20px;
  font-weight: 700;
}

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

.faqItem summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.faqItem[open] summary::after {
  content: "−";
  background: var(--accent-soft);
}

.faqItem p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.section--cta {
  padding: 30px 0 70px;
}

.cta {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at top left, rgba(255, 189, 89, 0.18), transparent 35%),
    linear-gradient(135deg, rgba(11, 25, 37, 0.96), rgba(9, 17, 26, 0.98));
  border-radius: var(--radius-xl);
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  box-shadow: var(--shadow);
}

.cta::after {
  content: "";
  position: absolute;
  inset: auto -40px -52px auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.6;
}

.cta__title {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 3.3rem);
  line-height: 0.98;
}

.cta__subtitle {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 17px;
  max-width: 34rem;
}

.cta__badges {
  margin-top: 18px;
}

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

.footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 44px;
  color: var(--muted);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer__brand {
  color: var(--text);
  font-weight: 700;
}

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

.footer__link {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
}

.breadcrumbs {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--text);
}

.breadcrumbs span {
  color: var(--muted);
}

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

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

.topicStack {
  display: grid;
  gap: 18px;
}

.topicCard {
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(255, 189, 89, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(12, 26, 39, 0.94), rgba(8, 17, 27, 0.98));
  border-radius: 26px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.topicCard__head {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.topicCard__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(115, 217, 244, 0.22);
  background: rgba(9, 24, 35, 0.72);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.topicCard__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.topicCard__aside {
  display: flex;
  justify-content: flex-end;
}

.topicLinks {
  margin-top: 16px;
}

.topicLinks li {
  padding-left: 0;
  cursor: pointer;
  border-radius: 18px;
}

.topicLinks li::before {
  display: none;
}

.topicLinks li:focus-visible {
  outline: 2px solid rgba(255, 189, 89, 0.45);
  outline-offset: 3px;
}

.topicLinks a {
  display: block;
  width: 100%;
  padding: 14px 16px 14px 44px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
  position: relative;
}

.topicLinks a::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 16px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 0 0 5px rgba(115, 217, 244, 0.08);
}

.topicLinks a:hover,
.topicLinks a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 189, 89, 0.26);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

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

.localeChip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.localeChip:hover,
.localeChip:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.localeChip--active {
  border-color: rgba(255, 189, 89, 0.34);
  color: var(--text);
  background: rgba(255, 189, 89, 0.12);
}

.panel--success {
  border-color: rgba(115, 217, 244, 0.28);
}

.panel--warning {
  border-color: rgba(255, 189, 89, 0.34);
}

@media (max-width: 1080px) {
  .topbar__inner {
    grid-template-columns: auto auto;
  }

  .topnav {
    display: none;
  }

  .hero__inner,
  .twoCol,
  .compareGrid,
  .topicCard__grid,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 0;
  }

  .topicCard__aside {
    justify-content: flex-start;
  }

  .cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .topbar__inner {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 14px;
  }

  .brand,
  .topbar__actions {
    min-width: 0;
  }

  .lang {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: 30px;
  }

  .hero__title {
    max-width: none;
  }

  .hero__stats,
  .hero__metrics,
  .grid,
  .featureGrid {
    grid-template-columns: 1fr;
  }

  .showcase,
  .panel,
  .card,
  .cta {
    padding: 22px;
  }

  .section__head--split {
    grid-template-columns: 1fr;
  }

  .showcase__accent {
    display: none;
  }

  .cta__actions .btn,
  .hero__cta .btn {
    width: 100%;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
