@font-face {
  font-family: "Lexend";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/lexend-latin-variable.woff2") format("woff2");
}

:root {
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Lexend", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --color-ivory: #fbfbf9;
  --color-ivory-deep: #f1f2ee;
  --color-surface: #ffffff;
  --color-text: #181815;
  --color-muted: #6e6a60;
  --color-border: #e2e4df;
  --color-green: #536842;
  --color-green-dark: #31402d;
  --color-green-soft: #dce3d0;
  --color-clay: #b88463;
  --color-clay-soft: #f0e6df;
  --color-white: #ffffff;
  --shadow-soft: 0 24px 70px rgba(33, 32, 28, 0.13);
  --max-width: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-ivory);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

a:hover {
  color: var(--color-green-dark);
}

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(83, 104, 66, 0.48);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 30;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--color-text);
  color: var(--color-white);
  padding: 10px 14px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(222, 212, 196, 0.76);
  background: rgba(251, 251, 249, 0.92);
  backdrop-filter: blur(18px);
}

.nav-shell,
.section-inner {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.nav-shell {
  position: relative;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  color: var(--color-green-dark);
  font-family: inherit;
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.brand-mark-shell {
  fill: var(--color-green-dark);
}

.brand-mark-core {
  fill: var(--color-surface);
}

.brand-mark-acoustic {
  fill: none;
  stroke: var(--color-green-dark);
  stroke-linecap: round;
  stroke-width: 2.25;
  opacity: 0.9;
}

.brand-mark-slice {
  fill: #8cff60;
}

.brand-name {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.12em;
}

.tm-mark {
  font-size: 0.34em;
  font-weight: 820;
  letter-spacing: 0.04em;
  line-height: 1;
  transform: translateY(-0.34em);
}

.nav-wordmark,
.legal-nav > .wordmark {
  position: absolute;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
}

.site-footer .wordmark {
  color: var(--color-white);
}

.site-footer .brand-mark-core {
  fill: rgba(255, 255, 255, 0.92);
}

.nav-links {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-group,
.nav-icons,
.footer-icons {
  display: flex;
  align-items: center;
}

.nav-group {
  gap: 27px;
}

.nav-group-right {
  gap: 23px;
}

.nav-icons,
.footer-icons {
  gap: 9px;
}

.icon-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-text);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.icon-link:hover {
  transform: translateY(-2px);
  border-color: rgba(83, 104, 66, 0.58);
  background: var(--color-green-soft);
  color: var(--color-green-dark);
}

.icon-link svg,
.stage-action svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-link .icon-fill {
  fill: currentColor;
  stroke: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-text);
  padding: 9px;
}

.nav-toggle-line {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.nav-shell.is-collapsed .nav-toggle {
  position: relative;
  z-index: 3;
  display: block;
}

.nav-shell.is-collapsed .nav-links {
  position: absolute;
  inset: var(--header-height) 0 auto;
  display: grid;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
  padding: 9px;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-shell.is-collapsed .nav-links.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-shell.is-collapsed .nav-group {
  display: grid;
  gap: 0;
}

.nav-shell.is-collapsed .nav-links a:not(.icon-link) {
  min-height: 46px;
  display: flex;
  align-items: center;
  border-radius: 9px;
  padding: 0 12px;
}

.nav-shell.is-collapsed .nav-links a:not(.icon-link):hover {
  background: var(--color-ivory);
}

.nav-shell.is-collapsed .nav-icons {
  margin: 8px 4px 4px;
  padding-top: 9px;
  border-top: 1px solid var(--color-border);
}

.nav-shell.is-collapsed .nav-links .icon-link {
  width: 42px;
  height: 42px;
}

.section {
  padding: 112px 0;
  scroll-margin-top: var(--header-height);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--color-green);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(3.6rem, 5.7vw, 5.2rem);
  font-weight: 680;
  line-height: 0.98;
}

h1 span {
  color: var(--color-green);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.05rem, 3.6vw, 3.2rem);
  font-weight: 650;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 620;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 21px;
  font-weight: 720;
  line-height: 1.2;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.button-primary {
  background: var(--color-green-dark);
  color: var(--color-white);
}

.button-primary:hover {
  background: var(--color-green);
  color: var(--color-white);
}

/* Hero */

.hero {
  min-height: auto;
  padding: 48px 0 32px;
}

.hero-composition {
  position: relative;
  padding: 142px 0 16px;
}

.hero-intro {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: min(920px, 82%);
  pointer-events: none;
}

.hero-summary {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 4;
  width: min(410px, 39%);
  border: 1px solid rgba(226, 228, 223, 0.94);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 54px rgba(33, 32, 28, 0.13);
  backdrop-filter: blur(16px);
  padding: 28px;
}

.hero-summary p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 1.04rem;
}

.hero-stage {
  position: relative;
  width: 91%;
  aspect-ratio: 16 / 9;
  margin: 0 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 28px;
  background: var(--color-ivory-deep);
  box-shadow: var(--shadow-soft);
}

.hero-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.hero-stage picture,
.planning-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-stage:hover img {
  transform: scale(1.018);
}

.stage-notify {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  color: var(--color-text);
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 680;
}

.hero-summary .stage-notify {
  margin-top: 20px;
}

.stage-notify:hover {
  border-color: rgba(83, 104, 66, 0.32);
  background: var(--color-green-soft);
  color: var(--color-green-dark);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 0 4px rgba(83, 104, 66, 0.14);
}

.stage-action {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-green-dark);
  color: var(--color-white);
  transition: background 180ms ease, transform 180ms ease;
}

.stage-action:hover {
  transform: translateY(3px);
  background: var(--color-green);
  color: var(--color-white);
}

.stage-action svg {
  width: 23px;
  height: 23px;
}

/* Product interface concept */

.product-section {
  background: var(--color-surface);
  padding-top: 64px;
  padding-bottom: 48px;
}

.editorial-heading {
  max-width: 980px;
  margin-bottom: 58px;
}

.editorial-heading h2 {
  max-width: 860px;
}

.editorial-heading > p:last-child {
  max-width: 620px;
  margin: 0 0 0 auto;
  color: var(--color-muted);
  font-size: 1.08rem;
}

.app-concept,
.mobile-app-concept,
.app-flow-concept {
  font-family: var(--font-body);
}

.app-concept :is(h1, h2, h3, h4, h5, h6),
.mobile-app-concept :is(h1, h2, h3, h4, h5, h6),
.app-flow-concept :is(h1, h2, h3, h4, h5, h6) {
  font-family: var(--font-body);
}

.app-concept {
  min-width: 0;
  margin: 0;
}

.app-window {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dfe3dc;
  border-radius: 22px;
  background: #f5f7f3;
  box-shadow: 0 28px 70px rgba(33, 32, 28, 0.14);
}

.app-topbar {
  min-height: 68px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid #e2e6df;
  background: rgba(255, 255, 255, 0.92);
  padding: 0 24px;
}

.app-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-green-dark);
  font-size: 0.82rem;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.app-brand-mark {
  width: 24px;
  height: 30px;
  border-radius: 8px;
  background: var(--color-green-dark);
  box-shadow: inset 0 -7px 0 #8cff60;
}

.app-concept-label,
.app-profile {
  font-size: 0.75rem;
  font-weight: 720;
}

.app-concept-label {
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-ivory);
  padding: 6px 11px;
  color: var(--color-muted);
}

.app-profile {
  width: 34px;
  height: 34px;
  display: grid;
  justify-self: end;
  place-items: center;
  border-radius: 50%;
  background: var(--color-green-soft);
  color: var(--color-green-dark);
}

.app-layout {
  min-width: 0;
  min-height: 620px;
  display: grid;
  grid-template-columns: 225px minmax(0, 1fr);
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #e1e5df;
  background: rgba(251, 251, 249, 0.82);
  padding: 28px 18px 20px;
}

.app-sidebar > p,
.app-dashboard-header p,
.app-card-heading p {
  margin-bottom: 10px;
  color: #858b80;
  font-size: 0.69rem;
  font-weight: 780;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.app-sidebar ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.app-sidebar li {
  min-height: 48px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border-radius: 10px;
  padding: 8px 10px;
  color: #777c73;
  font-size: 0.84rem;
  font-weight: 650;
}

.app-sidebar li.is-selected {
  background: var(--color-green-soft);
  color: var(--color-green-dark);
}

.app-sidebar li small {
  font-size: 0.63rem;
  font-weight: 720;
}

.location-icon {
  width: 18px;
  height: 22px;
  border: 1.5px solid currentColor;
  border-radius: 7px;
}

.app-device-status {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin-top: auto;
  border: 1px solid #e0e4dd;
  border-radius: 12px;
  background: #ffffff;
  padding: 13px;
}

.app-device-status strong,
.app-device-status small {
  display: block;
}

.app-device-status strong {
  color: var(--color-text);
  font-size: 0.76rem;
}

.app-device-status small {
  color: var(--color-muted);
  font-size: 0.65rem;
}

.app-dashboard {
  min-width: 0;
  padding: 32px;
}

.app-dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.app-dashboard-header p {
  margin-bottom: 5px;
}

.app-dashboard-header h3 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.app-context-chip {
  border: 1px solid rgba(83, 104, 66, 0.2);
  border-radius: 999px;
  background: #ffffff;
  padding: 8px 12px;
  color: var(--color-green-dark);
  font-size: 0.73rem;
  font-weight: 720;
}

.app-dashboard-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(220px, 0.75fr);
  gap: 16px;
}

.app-chart-card,
.app-location-card,
.app-summary-strip {
  min-width: 0;
  border: 1px solid #e0e4dd;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
}

.app-chart-card,
.app-location-card {
  min-height: 390px;
  padding: 22px;
}

.app-card-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.app-card-heading p {
  margin-bottom: 4px;
}

.app-card-heading h4 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.app-card-heading > span {
  border-radius: 999px;
  background: var(--color-green-soft);
  padding: 5px 8px;
  color: var(--color-green-dark);
  font-size: 0.64rem;
  font-weight: 720;
}

.app-chart {
  width: 100%;
  height: 250px;
  overflow: visible;
  margin-top: 12px;
}

.chart-gridline {
  fill: none;
  stroke: #e8ebe6;
  stroke-width: 1;
}

.chart-area {
  fill: rgba(83, 104, 66, 0.1);
}

.chart-line {
  fill: none;
  stroke: var(--color-green);
  stroke-linecap: round;
  stroke-width: 4;
}

.app-chart circle {
  fill: #ffffff;
  stroke: var(--color-green-dark);
  stroke-width: 4;
}

.app-chart-axis {
  display: flex;
  justify-content: space-between;
  color: #92968f;
  font-size: 0.64rem;
  font-weight: 650;
}

.app-location-card {
  display: flex;
  flex-direction: column;
}

.location-visual {
  min-height: 245px;
  display: grid;
  flex: 1;
  place-items: center;
}

.location-visual svg {
  width: min(150px, 70%);
  height: 230px;
  fill: none;
  stroke: #9da399;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.location-visual .location-pulse {
  fill: rgba(140, 255, 96, 0.16);
  stroke: rgba(83, 104, 66, 0.26);
  stroke-width: 10;
}

.location-visual .location-point {
  fill: #8cff60;
  stroke: var(--color-green-dark);
  stroke-width: 3;
}

.app-location-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  color: var(--color-green-dark);
  font-size: 0.75rem;
  font-weight: 720;
}

.app-location-note span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8cff60;
  box-shadow: 0 0 0 4px rgba(140, 255, 96, 0.16);
}

.app-summary-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 16px;
}

.app-summary-strip > span {
  display: grid;
  gap: 2px;
  padding: 16px 20px;
}

.app-summary-strip > span + span {
  border-left: 1px solid #e0e4dd;
}

.app-summary-strip strong {
  color: var(--color-green-dark);
  font-size: 0.78rem;
}

.app-summary-strip small {
  color: var(--color-muted);
  font-size: 0.67rem;
}

.app-concept > figcaption {
  margin-top: 14px;
  color: var(--color-muted);
  font-size: 0.74rem;
  text-align: right;
}

/* Mobile app concept */

.mobile-app-concept {
  min-width: 0;
  margin: 0;
}

.mobile-app-stage {
  position: relative;
  min-height: 920px;
  display: grid;
  overflow: hidden;
  place-items: center;
  border: 1px solid #dfe3dc;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 44%, rgba(220, 227, 208, 0.92), rgba(245, 247, 243, 0) 37%),
    #f4f6f1;
  padding: 58px;
}

.mobile-app-stage::before,
.mobile-app-stage::after {
  position: absolute;
  border: 1px solid rgba(83, 104, 66, 0.13);
  border-radius: 50%;
  content: "";
}

.mobile-app-stage::before {
  top: -220px;
  right: -170px;
  width: 520px;
  height: 520px;
}

.mobile-app-stage::after {
  bottom: -250px;
  left: -160px;
  width: 560px;
  height: 560px;
}

.phone-frame {
  position: relative;
  z-index: 2;
  width: 390px;
}

.phone-shell {
  border: 1px solid #11160f;
  border-radius: 58px;
  background: #20271d;
  box-shadow: 0 42px 80px rgba(33, 32, 28, 0.27);
  padding: 9px;
}

.phone-screen {
  position: relative;
  height: 790px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border-radius: 49px;
  background: #f6f7f3;
  color: var(--color-text);
}

.phone-island {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 3;
  width: 94px;
  height: 25px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #151914;
}

.phone-statusbar {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  color: #272c25;
  font-size: 0.66rem;
  font-weight: 760;
}

.phone-statusbar svg {
  width: 52px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.phone-statusbar svg path:first-child {
  fill: currentColor;
  stroke: none;
}

.mobile-app-header {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e2e6df;
  background: rgba(255, 255, 255, 0.84);
  padding: 0 18px;
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--color-green-dark);
  font-size: 0.82rem;
  font-weight: 820;
  letter-spacing: 0.025em;
}

.mobile-brand-mark {
  width: 21px;
  height: 27px;
  border-radius: 7px;
  background: var(--color-green-dark);
  box-shadow: inset 0 -6px 0 #8cff60;
}

.mobile-avatar {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-green-soft);
  color: var(--color-green-dark);
  font-size: 0.68rem;
  font-weight: 780;
}

.mobile-screen-main {
  display: grid;
  flex: 1;
  gap: 11px;
  align-content: start;
  padding: 15px 16px 13px;
}

.mobile-location-overview > p,
.mobile-card-heading p,
.mobile-placement-card p {
  margin-bottom: 4px;
  color: #858b80;
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.mobile-location-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-location-heading h3 {
  margin: 0;
  font-size: 2rem;
}

.mobile-location-heading > span {
  border: 1px solid rgba(83, 104, 66, 0.18);
  border-radius: 999px;
  background: #ffffff;
  padding: 6px 9px;
  color: var(--color-green-dark);
  font-size: 0.61rem;
  font-weight: 740;
}

.mobile-location-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-top: 10px;
  border-radius: 11px;
  background: #e9ece6;
  padding: 4px;
}

.mobile-location-tabs span {
  display: grid;
  min-height: 32px;
  place-items: center;
  border-radius: 8px;
  color: #7c8279;
  font-size: 0.62rem;
  font-weight: 700;
}

.mobile-location-tabs span.is-selected {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(33, 32, 28, 0.08);
  color: var(--color-green-dark);
}

.mobile-trend-card,
.mobile-placement-card {
  border: 1px solid #dfe3dc;
  border-radius: 15px;
  background: #ffffff;
}

.mobile-trend-card {
  padding: 14px;
}

.mobile-card-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.mobile-card-heading h4 {
  margin: 0;
  font-size: 0.92rem;
  letter-spacing: -0.025em;
}

.mobile-card-heading > span {
  border-radius: 999px;
  background: var(--color-green-soft);
  padding: 4px 7px;
  color: var(--color-green-dark);
  font-size: 0.54rem;
  font-weight: 760;
}

.mobile-chart {
  width: 100%;
  height: 145px;
  margin-top: 6px;
  overflow: visible;
}

.mobile-chart-grid {
  fill: none;
  stroke: #e8ebe6;
  stroke-width: 1;
}

.mobile-chart-area {
  fill: rgba(83, 104, 66, 0.1);
}

.mobile-chart-line {
  fill: none;
  stroke: var(--color-green);
  stroke-linecap: round;
  stroke-width: 3;
}

.mobile-chart circle {
  fill: #ffffff;
  stroke: var(--color-green-dark);
  stroke-width: 3;
}

.mobile-chart-axis {
  display: flex;
  justify-content: space-between;
  color: #92968f;
  font-size: 0.52rem;
  font-weight: 680;
}

.mobile-placement-card {
  min-height: 102px;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 18px;
  gap: 11px;
  align-items: center;
  padding: 10px 12px;
}

.mobile-placement-card strong,
.mobile-placement-card small {
  display: block;
}

.mobile-placement-card strong {
  color: var(--color-green-dark);
  font-size: 0.78rem;
}

.mobile-placement-card small {
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 0.59rem;
}

.mobile-body-map {
  display: grid;
  place-items: center;
}

.mobile-body-map svg {
  width: 57px;
  height: 84px;
  fill: none;
  stroke: #9da399;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.mobile-body-map .mobile-location-pulse {
  fill: rgba(140, 255, 96, 0.14);
  stroke: rgba(83, 104, 66, 0.25);
  stroke-width: 7;
}

.mobile-body-map .mobile-location-point {
  fill: #8cff60;
  stroke: var(--color-green-dark);
  stroke-width: 2;
}

.mobile-card-arrow {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #8c9289;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.mobile-action-preview {
  min-height: 43px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--color-green-dark);
  color: var(--color-white);
  font-size: 0.73rem;
  font-weight: 760;
}

.mobile-tabbar {
  min-height: 67px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: auto;
  border-top: 1px solid #e1e5df;
  background: rgba(255, 255, 255, 0.94);
  padding: 7px 14px 12px;
}

.mobile-tabbar span {
  display: grid;
  gap: 2px;
  place-items: center;
  color: #8b9088;
  font-size: 0.56rem;
  font-weight: 700;
}

.mobile-tabbar span.is-active {
  color: var(--color-green-dark);
}

.mobile-tabbar svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.mobile-tabbar span:first-child svg {
  fill: currentColor;
  stroke: none;
}

.mobile-app-note {
  position: absolute;
  z-index: 3;
  width: 220px;
  border: 1px solid #dfe3dc;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(33, 32, 28, 0.1);
  padding: 18px;
}

.mobile-app-note > span {
  display: block;
  margin-bottom: 15px;
  color: var(--color-green);
  font-size: 0.67rem;
  font-weight: 820;
}

.mobile-app-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-green-dark);
  font-size: 0.92rem;
}

.mobile-app-note p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.mobile-note-locations {
  top: 170px;
  left: 66px;
}

.mobile-note-placement {
  top: 290px;
  right: 66px;
}

.mobile-note-pattern {
  bottom: 130px;
  left: 92px;
}

.mobile-app-concept > figcaption {
  margin-top: 14px;
  color: var(--color-muted);
  font-size: 0.74rem;
  text-align: right;
}

/* Companion app product showcase */

.app-flow-concept {
  min-width: 0;
  margin: 0;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 243, 236, 0.76)),
    #f7f8f3;
  padding: 22px;
}

.app-demo-toolbar {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  max-width: 620px;
  border: 0;
  background: transparent;
  padding: 0 0 18px;
}

.app-demo-toolbar p {
  margin: 3px 0 0;
  color: var(--color-muted);
  font-size: 0.83rem;
}

.app-demo-kicker {
  color: var(--color-green-dark);
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.app-screen-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 340px));
  gap: clamp(18px, 4vw, 56px);
  align-items: end;
  justify-content: center;
  margin: 0;
  padding: 20px 3px 36px;
}

.app-screen-item {
  min-width: 0;
}

.app-screen-item-placement {
  transform: translateY(32px);
}

.app-screen-label {
  display: block;
  margin: 0 0 12px 8px;
  color: var(--color-green-dark);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.app-phone {
  position: relative;
  height: 660px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: 7px solid #20281e;
  border-radius: 44px;
  background: #f6f7f3;
  box-shadow: 0 30px 70px rgba(33, 32, 28, 0.18);
  color: var(--color-text);
}

.app-phone-island {
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 4;
  width: 78px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #161a15;
}

.app-phone-status {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px 0;
  font-size: 0.53rem;
  font-weight: 760;
  letter-spacing: 0.04em;
}

.app-phone-header {
  min-height: 52px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e0e4de;
  background: rgba(255, 255, 255, 0.88);
  padding: 0 14px;
}

.app-phone-header > strong {
  font-size: 0.75rem;
}

.app-phone-brand {
  display: inline-flex;
  align-items: center;
}

.app-phone-brand img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

.app-prototype-tag,
.app-profile-label,
.connection-chip,
.quality-chip {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  border-radius: 999px;
  background: var(--color-green-soft);
  padding: 5px 7px;
  color: var(--color-green-dark);
  font-size: 0.52rem;
  font-weight: 780;
  white-space: nowrap;
}

.connection-chip {
  gap: 5px;
}

.connection-chip i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6ee641;
  box-shadow: 0 0 0 3px rgba(110, 230, 65, 0.16);
}

.app-back-control {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #edf0e9;
  color: var(--color-green-dark);
  font-size: 1.2rem;
  line-height: 1;
}

.app-phone-content {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
}

.app-title-row {
  display: flex;
  gap: 10px;
  align-items: end;
  justify-content: space-between;
}

.app-title-row p,
.app-screen-heading > p,
.result-heading > p {
  margin-bottom: 2px;
  color: #81877e;
  font-size: 0.56rem;
  font-weight: 820;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.app-title-row h3,
.app-screen-heading h3,
.result-heading h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -0.012em;
}

.app-screen-heading small {
  display: block;
  margin-top: 5px;
  color: var(--color-muted);
  font-size: 0.58rem;
  line-height: 1.45;
}

.body-overview-card,
.select-body-card,
.contact-card,
.relative-result-card,
.trend-card {
  border: 1px solid #dfe3dc;
  border-radius: 16px;
  background: #ffffff;
}

.body-overview-card {
  min-height: 352px;
  display: grid;
  grid-template-columns: 42% minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 12px;
}

.body-map-frame {
  position: relative;
  display: grid;
  min-height: 292px;
  overflow: hidden;
  place-items: center;
  border-radius: 13px;
  background:
    radial-gradient(circle at 50% 18%, rgba(140, 255, 96, 0.08), transparent 34%),
    #242723;
}

.profile-gender-icon {
  width: 15px;
  height: 15px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(83, 104, 66, 0.12);
  color: var(--color-green-dark);
  font-size: 0.72rem;
  font-style: normal;
  line-height: 1;
}

.profile-body-asset {
  position: relative;
  width: min(100%, 138px);
  height: 282px;
}

.profile-body-asset img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.profile-body-asset .body-site-halo,
.profile-body-asset .body-site-point {
  position: absolute;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}

.profile-body-asset .body-site-halo {
  width: 24px;
  height: 24px;
  border: 7px solid rgba(140, 255, 96, 0.2);
  background: rgba(140, 255, 96, 0.18);
  opacity: 0;
  transition: opacity 180ms ease;
}

.profile-body-asset .body-site-halo.is-visible {
  opacity: 1;
}

.profile-body-asset .body-site-point {
  width: 8px;
  height: 8px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  background: #8cff60;
  opacity: 1;
  transition: background 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.profile-body-asset .body-site-point.is-selected {
  background: #f6f8f0;
  border-color: rgba(140, 255, 96, 0.72);
}

.profile-body-asset .body-site-point.is-current {
  background: #8cff60;
  border-color: rgba(255, 255, 255, 0.86);
}

.profile-body-asset .body-site-point.is-muted {
  background: #f6f8f0;
  border-color: rgba(140, 255, 96, 0.28);
  opacity: 0.36;
}

.body-dot-scalp {
  left: 50%;
  top: 12.5%;
}

.body-dot-upper-arm-left {
  left: 30%;
  top: 33%;
}

.body-dot-upper-arm-right {
  left: 70%;
  top: 32%;
}

.body-dot-forearm-left {
  left: 27%;
  top: 45%;
}

.body-dot-forearm-right {
  left: 73%;
  top: 45%;
}

.body-dot-abdomen {
  left: 50%;
  top: 39%;
}

.body-dot-thigh-left {
  left: 42%;
  top: 60%;
}

.body-dot-thigh-right {
  left: 58%;
  top: 59%;
}

.body-dot-calf-left {
  left: 43%;
  top: 73%;
}

.body-dot-calf-right {
  left: 57%;
  top: 72%;
}

.saved-location-list {
  display: grid;
  gap: 6px;
}

.saved-location-list > div {
  min-height: 46px;
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) auto;
  gap: 7px;
  align-items: center;
  border-radius: 11px;
  background: #f5f7f3;
  padding: 8px 8px;
}

.saved-location-list > div:not([data-region]) {
  grid-template-columns: 10px minmax(0, 1fr);
}

.direction-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(83, 104, 66, 0.18);
  border-radius: 999px;
  background: #ffffff;
  padding: 2px;
}

.direction-option {
  min-width: 21px;
  min-height: 20px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #7d8479;
  cursor: pointer;
  font: inherit;
  font-size: 0.52rem;
  font-weight: 820;
  line-height: 1;
}

.direction-option.is-active {
  background: var(--color-green-dark);
  color: #ffffff;
}

.location-dot {
  width: 7px;
  height: 7px;
  border: 1px solid #879183;
  border-radius: 50%;
  background: #ffffff;
}

.location-dot.is-current {
  border-color: var(--color-green-dark);
  background: #8cff60;
}

.saved-location-list strong,
.saved-location-list small {
  display: block;
}

.saved-location-list strong {
  color: var(--color-green-dark);
  font-size: 0.59rem;
  line-height: 1.2;
}

.saved-location-list small {
  margin-top: 3px;
  color: #858b81;
  font-size: 0.47rem;
  line-height: 1.25;
}

.app-primary-action,
.app-secondary-action {
  min-height: 43px;
  display: grid;
  place-items: center;
  margin-top: auto;
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 780;
}

.app-primary-action {
  background: var(--color-green-dark);
  color: #ffffff;
}

.app-secondary-action {
  border: 1px solid rgba(83, 104, 66, 0.24);
  background: var(--color-green-soft);
  color: var(--color-green-dark);
}

.app-bottom-nav {
  min-height: 58px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #dde2da;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 7px 12px;
}

.app-bottom-nav span {
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #90958d;
  font-size: 0.5rem;
  font-weight: 700;
}

.app-bottom-nav span.is-active {
  background: var(--color-green-soft);
  color: var(--color-green-dark);
}

.select-body-card {
  min-height: 286px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  padding: 9px;
}

.body-view {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: center;
  border-radius: 12px;
  background: #f1f3ee;
}

.body-view > span {
  position: absolute;
  top: 9px;
  left: 10px;
  z-index: 2;
  color: #7d8479;
  font-size: 0.51rem;
  font-weight: 780;
  text-transform: uppercase;
}

.body-view .profile-body {
  width: 88px;
  height: 224px;
}

.body-view-back .profile-body {
  opacity: 0.68;
}

.location-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.location-options span {
  border: 1px solid #dfe3dc;
  border-radius: 999px;
  background: #ffffff;
  padding: 7px 9px;
  color: #71796e;
  font-size: 0.55rem;
  font-weight: 710;
}

.location-options span.is-selected {
  border-color: rgba(83, 104, 66, 0.32);
  background: var(--color-green-soft);
  color: var(--color-green-dark);
}

.placement-visual {
  position: relative;
  min-height: 318px;
  overflow: hidden;
  border-radius: 17px;
  background:
    radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.9), transparent 35%),
    #e7ded2;
}

.placement-arm {
  position: absolute;
  top: -30px;
  left: 28px;
  width: 145px;
  height: 335px;
  transform: rotate(13deg);
  border-radius: 72px;
  background: linear-gradient(100deg, #e6c5ac, #f1d7c2 56%, #dab196);
  box-shadow: inset -12px 0 24px rgba(120, 75, 48, 0.08);
}

.placement-device {
  position: absolute;
  top: 77px;
  left: 95px;
  width: 102px;
  height: 155px;
  transform: rotate(12deg);
  border: 1px solid #cbc9c1;
  border-radius: 40px;
  background: #f7f5ef;
  box-shadow: 8px 12px 24px rgba(72, 58, 45, 0.2);
}

.placement-device::after {
  position: absolute;
  top: 42px;
  right: 12px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #626b5f;
  box-shadow:
    -2px 7px 0 #626b5f,
    8px 7px 0 #626b5f,
    3px 14px 0 #626b5f;
  content: "";
}

.placement-device i {
  position: absolute;
  right: 19px;
  bottom: 13px;
  width: 39px;
  height: 14px;
  border-radius: 999px;
  background: #8cff60;
  box-shadow: inset 0 0 0 2px rgba(83, 104, 66, 0.25);
}

.placement-device span {
  position: absolute;
  top: 74px;
  right: -3px;
  width: 8px;
  height: 29px;
  border: 2px solid #5f655c;
  border-radius: 5px;
  background: #252a24;
}

.placement-caption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  padding: 9px;
  color: var(--color-green-dark);
  font-size: 0.56rem;
  font-weight: 740;
  text-align: center;
}

.contact-card {
  min-height: 67px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}

.contact-card > div {
  display: flex;
  gap: 8px;
  align-items: center;
}

.contact-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-green-soft);
  color: var(--color-green-dark);
  font-size: 0.7rem;
  font-weight: 850;
}

.contact-card p {
  margin: 0;
}

.contact-card strong,
.contact-card small {
  display: block;
}

.contact-card strong {
  font-size: 0.6rem;
}

.contact-card small {
  margin-top: 2px;
  color: var(--color-muted);
  font-size: 0.5rem;
}

.connection-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #70776d;
  font-size: 0.52rem;
  font-weight: 700;
}

.connection-row span:first-child {
  display: flex;
  gap: 5px;
  align-items: center;
}

.wireless-icon {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #78e54e;
  box-shadow: 0 0 0 3px rgba(120, 229, 78, 0.15);
}

.app-phone-dark {
  background: #263421;
  color: #ffffff;
}

.app-phone-dark .app-phone-island {
  background: #0f140e;
}

.app-phone-dark .app-phone-header,
.app-phone-dark .app-bottom-nav {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(30, 42, 26, 0.92);
}

.app-phone-dark .connection-chip {
  color: #ffffff;
}

.app-phone-dark .connection-chip {
  background: rgba(255, 255, 255, 0.1);
}

.app-phone-dark .app-bottom-nav span {
  color: rgba(255, 255, 255, 0.52);
}

.app-phone-dark .app-bottom-nav span.is-active {
  background: rgba(140, 255, 96, 0.14);
  color: #bcffa4;
}

.measuring-content {
  align-items: center;
  justify-content: center;
  padding: 22px;
  text-align: center;
}

.measurement-location {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  padding: 7px 10px;
  color: #d8e1d4;
  font-size: 0.58rem;
  font-weight: 730;
}

.measurement-progress {
  position: relative;
  width: 208px;
  height: 208px;
  display: grid;
  margin: 12px auto 4px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#8cff60 0 68%, rgba(255, 255, 255, 0.11) 68% 100%);
}

.measurement-progress::before {
  width: 178px;
  height: 178px;
  border-radius: 50%;
  background: #263421;
  content: "";
}

.measurement-progress > div {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 145px;
  transform: translate(-50%, -50%);
}

.measurement-progress strong,
.measurement-progress span {
  display: block;
}

.measurement-progress strong {
  font-size: 2.35rem;
  letter-spacing: -0.06em;
}

.measurement-progress span {
  margin-top: 5px;
  color: #c1cbbd;
  font-size: 0.57rem;
}

.measurement-instruction h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.55rem;
}

.measurement-instruction p {
  margin: 5px 0 0;
  color: #c1cbbd;
  font-size: 0.63rem;
}

.feedback-status {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 8px;
}

.feedback-status span {
  min-height: 66px;
  display: grid;
  gap: 4px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #e7ede4;
  font-size: 0.49rem;
  font-weight: 700;
}

.feedback-status i {
  min-height: 18px;
  color: #aaff8a;
  font-style: normal;
  font-size: 1rem;
}

.feedback-led {
  width: 18px;
  height: 9px;
  min-height: 9px !important;
  border-radius: 999px;
  background: #8cff60;
  box-shadow: 0 0 12px rgba(140, 255, 96, 0.42);
}

.haptic-note {
  margin: 0;
  color: #aebaaa;
  font-size: 0.54rem;
  line-height: 1.5;
}

.result-heading {
  text-align: center;
}

.result-check {
  width: 33px;
  height: 33px;
  display: grid;
  margin: 0 auto 7px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-green-soft);
  color: var(--color-green-dark);
  font-size: 0.82rem;
  font-weight: 850;
}

.relative-result-card {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 14px;
}

.relative-result-card span,
.relative-result-card small {
  color: #82887f;
  font-size: 0.52rem;
}

.relative-result-card strong,
.relative-result-card small {
  display: block;
}

.relative-result-card strong {
  margin: 3px 0;
  color: var(--color-green-dark);
  font-size: 2rem;
  letter-spacing: -0.055em;
}

.trend-card {
  padding: 13px;
}

.trend-card > div:first-child {
  display: flex;
  justify-content: space-between;
}

.trend-card p {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 780;
}

.trend-card > div:first-child > span {
  color: var(--color-muted);
  font-size: 0.51rem;
}

.trend-card svg {
  width: 100%;
  height: 150px;
  margin-top: 5px;
  overflow: visible;
}

.trend-grid {
  fill: none;
  stroke: #e8ebe6;
  stroke-width: 1;
}

.trend-baseline {
  fill: none;
  stroke: #9ca49a;
  stroke-dasharray: 4 4;
  stroke-width: 1.5;
}

.trend-line {
  fill: none;
  stroke: var(--color-green);
  stroke-linecap: round;
  stroke-width: 3;
}

.trend-card circle {
  fill: #ffffff;
  stroke: var(--color-green-dark);
  stroke-width: 2.5;
}

.trend-legend {
  display: flex;
  gap: 12px;
  color: var(--color-muted);
  font-size: 0.49rem;
}

.trend-legend span {
  display: flex;
  gap: 5px;
  align-items: center;
}

.trend-legend i {
  width: 11px;
  height: 2px;
  background: var(--color-green);
}

.trend-legend span:last-child i {
  height: 0;
  border-top: 1px dashed #9ca49a;
  background: transparent;
}

.concept-data-note {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.52rem;
  line-height: 1.5;
  text-align: center;
}

.hardware-feedback-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: #ffffff;
}

.hardware-feedback-band > div {
  min-height: 105px;
  display: flex;
  gap: 12px;
  align-items: center;
  border-right: 1px solid var(--color-border);
  padding: 16px;
}

.hardware-feedback-band > div:last-child {
  border-right: 0;
}

.hardware-mode-icon {
  width: 37px;
  height: 37px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: var(--color-green-soft);
  color: var(--color-green-dark);
  font-size: 1.25rem;
  font-weight: 760;
}

.usb-icon::before {
  width: 18px;
  height: 7px;
  border: 2px solid currentColor;
  border-radius: 5px;
  content: "";
}

.led-icon::before {
  width: 18px;
  height: 8px;
  border-radius: 999px;
  background: #8cff60;
  box-shadow: 0 0 0 2px rgba(83, 104, 66, 0.25);
  content: "";
}

.hardware-feedback-band p {
  margin: 0;
}

.hardware-feedback-band strong,
.hardware-feedback-band small {
  display: block;
}

.hardware-feedback-band strong {
  color: var(--color-green-dark);
  font-size: 0.75rem;
}

.hardware-feedback-band small {
  margin-top: 3px;
  color: var(--color-muted);
  font-size: 0.59rem;
  line-height: 1.4;
}

.app-flow-concept > figcaption {
  margin-top: 14px;
  color: var(--color-muted);
  font-size: 0.68rem;
  line-height: 1.5;
  text-align: right;
}

@media (max-width: 980px) {
  .app-screen-track {
    grid-template-columns: repeat(2, minmax(260px, 310px));
  }

  .hardware-feedback-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .hardware-feedback-band > div:nth-child(2) {
    border-right: 0;
  }

  .hardware-feedback-band > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--color-border);
  }
}

@media (max-width: 720px) {
  .app-demo-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .app-flow-concept {
    border-radius: 24px;
    padding: 18px 12px;
  }

  .app-screen-track {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 20px 0 28px;
  }

  .app-screen-item-placement {
    transform: none;
  }

  .app-phone {
    height: min(170vw, 660px);
    min-height: 610px;
  }

  .hardware-feedback-band {
    grid-template-columns: 1fr;
  }

  .hardware-feedback-band > div,
  .hardware-feedback-band > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .hardware-feedback-band > div:last-child {
    border-bottom: 0;
  }

  .app-flow-concept > figcaption {
    text-align: left;
  }
}

/* Planning */

.planning-section {
  overflow: hidden;
  background: var(--color-surface);
  padding-top: 48px;
}

.planning-stage {
  position: relative;
  padding-bottom: 118px;
}

.planning-media {
  position: relative;
  z-index: 1;
  width: 82%;
  aspect-ratio: 4 / 3;
  margin: 0 auto 0 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-ivory-deep);
  box-shadow: var(--shadow-soft);
}

.planning-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.planning-media-caption {
  position: absolute;
  top: 18px;
  left: 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  padding: 8px 12px;
  color: var(--color-text);
  font-size: 0.78rem;
  font-weight: 680;
}

.planning-card {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  width: min(570px, 49%);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: var(--color-ivory);
  padding: 44px;
  box-shadow: var(--shadow-soft);
}

.planning-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.planning-card p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.status-badge {
  display: inline-flex;
  margin-bottom: 20px;
  border: 1px solid rgba(83, 104, 66, 0.25);
  border-radius: 999px;
  background: var(--color-green-soft);
  color: var(--color-green-dark);
  padding: 6px 11px;
  font-size: 0.74rem;
  font-weight: 620;
}

.planning-orbit {
  position: absolute;
  left: -180px;
  bottom: -150px;
  z-index: 0;
  width: 460px;
  height: 460px;
}

.planning-orbit span {
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-border);
  border-radius: 50%;
}

.planning-orbit span:last-child {
  inset: 70px;
}


/* IFA NEXT announcement */

.ifa-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(174, 255, 90, 0.18), transparent 32%),
    linear-gradient(135deg, #f7f8f1 0%, #eef1e7 46%, #fdfcf8 100%);
}

.ifa-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.ifa-copy {
  max-width: 720px;
}

.ifa-copy .eyebrow {
  color: var(--color-green-dark);
}

.ifa-copy h2 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 3.6vw, 3.25rem);
  letter-spacing: -0.025em;
}

.ifa-copy p {
  max-width: 660px;
  margin: 0;
  color: rgba(47, 52, 40, 0.72);
  font-size: clamp(1rem, 1.55vw, 1.22rem);
  line-height: 1.65;
}

.ifa-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-items: center;
  margin-top: 30px;
}

.ifa-link {
  color: var(--color-green-dark);
  font-weight: 720;
  text-decoration: underline;
  text-decoration-color: rgba(83, 104, 66, 0.36);
  text-underline-offset: 0.24em;
}

.ifa-card {
  position: relative;
  display: grid;
  min-height: 320px;
  align-content: center;
  justify-items: start;
  overflow: hidden;
  border: 1px solid rgba(83, 104, 66, 0.18);
  border-radius: 34px;
  background:
    linear-gradient(150deg, rgba(36, 47, 35, 0.96), rgba(77, 96, 61, 0.9)),
    var(--color-green-dark);
  color: var(--color-white);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 30px 90px rgba(46, 56, 38, 0.18);
}

.ifa-card::before {
  content: "";
  position: absolute;
  inset: auto -30px -48px auto;
  width: 180px;
  height: 180px;
  border: 24px solid rgba(174, 255, 90, 0.25);
  border-radius: 999px;
}

.ifa-card::after {
  content: "NEXT";
  position: absolute;
  right: 26px;
  top: 22px;
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 680;
  letter-spacing: -0.08em;
}

.eyebrow,
.status-badge,
.ifa-card-kicker,
.ifa-card::after,
.ifa-card strong,
.ifa-card > span:not(.ifa-card-kicker) {
  font-family: var(--font-display);
}

.ifa-card-kicker {
  position: relative;
  z-index: 1;
  color: var(--color-green-soft);
  font-size: 0.7rem;
  font-weight: 620;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ifa-card strong {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 620;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.ifa-card > span:not(.ifa-card-kicker) {
  position: relative;
  z-index: 1;
  margin-top: 5px;
  color: var(--color-green-soft);
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.ifa-card small {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

/* Footer and signup */

.site-footer {
  scroll-margin-top: var(--header-height);
  background: var(--color-green-dark);
  color: var(--color-white);
}

.site-footer a:hover {
  color: var(--color-green-soft);
}

.newsletter-grid {
  padding: 76px 0 72px;
  text-align: center;
}

.site-footer .eyebrow {
  color: var(--color-green-soft);
}

.newsletter-copy {
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
}

.newsletter-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
}

.signup-form {
  max-width: 780px;
  margin: 38px auto 0;
  text-align: left;
}

.signup-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.signup-input {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.97);
  color: var(--color-text);
  padding: 12px 20px;
}

.signup-input::placeholder {
  color: #7d7a72;
}

.signup-form .button-primary {
  min-height: 56px;
  background: var(--color-green-soft);
  color: var(--color-green-dark);
  padding-inline: 28px;
}

.signup-form .button-primary:hover {
  background: var(--color-white);
  color: var(--color-green-dark);
}

.consent-field {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 9px;
  margin-top: 14px;
}

.consent-field input {
  width: 17px;
  height: 17px;
  margin: 3px 0 0;
  accent-color: var(--color-green-soft);
}

.consent-field label,
.form-status {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  line-height: 1.5;
}

.consent-field label {
  max-width: 640px;
  text-align: center;
}

.consent-field a,
.form-status a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  min-height: 1.5em;
  margin: 12px 0 0 26px;
  color: var(--color-green-soft);
}

.form-status.is-error {
  color: #f1cdb8;
}

.form-honey {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 32px;
  align-items: start;
  padding: 34px 0 42px;
}

.footer-brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  align-items: center;
}

.footer-grid p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.footer-disclaimer {
  max-width: 620px;
  font-size: 0.9rem;
}

.footer-concept-note {
  max-width: 420px;
  margin: 0;
}

.footer-credit {
  max-width: 620px;
  font-size: 0.86rem;
}

.footer-disclaimer a,
.footer-credit a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 620;
}

.site-footer .icon-link {
  border-color: rgba(255, 255, 255, 0.27);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
}

.site-footer .icon-link:hover {
  border-color: var(--color-green-soft);
  background: var(--color-green-soft);
  color: var(--color-green-dark);
}

.legal-link,
.back-link {
  text-decoration: underline;
  text-decoration-color: rgba(83, 104, 66, 0.36);
  text-underline-offset: 4px;
}

.site-footer .legal-link {
  text-decoration-color: rgba(255, 255, 255, 0.38);
}

.cookie-settings-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.38);
  text-underline-offset: 4px;
  cursor: pointer;
}

.cookie-settings-button:hover {
  color: var(--color-white);
}

.analytics-consent {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(760px, calc(100% - 48px));
  margin-left: auto;
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-surface);
  box-shadow: 0 24px 70px rgba(33, 32, 28, 0.2);
}

.analytics-consent[hidden] {
  display: none;
}

.analytics-consent-copy {
  max-width: 500px;
}

.analytics-consent h2 {
  margin: 0 0 7px;
  font-size: 1rem;
  line-height: 1.25;
}

.analytics-consent p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.analytics-consent a {
  color: var(--color-green-dark);
  font-weight: 650;
}

.analytics-consent-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  flex: 0 0 auto;
  gap: 10px;
  min-width: 290px;
}

.analytics-consent-button {
  width: 100%;
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid var(--color-green-dark);
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-green-dark);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
}

.analytics-consent-button:hover {
  background: var(--color-green-soft);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 25;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(49, 64, 45, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 36px rgba(33, 32, 28, 0.18);
  color: var(--color-green-dark);
  opacity: 0;
  transform: translateY(12px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease, background 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--color-green-soft);
  color: var(--color-green-dark);
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

/* Legal pages */

.legal-nav {
  justify-content: flex-start;
  font-size: 0.94rem;
}

.legal-main {
  min-height: calc(100vh - var(--header-height));
}

.legal-card {
  max-width: 860px;
}

.legal-card > h1 {
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  line-height: 1.04;
}

.legal-meta {
  margin-bottom: 50px;
  color: var(--color-muted);
}

.legal-content {
  display: grid;
  gap: 34px;
}

.legal-content section {
  padding-top: 30px;
  border-top: 1px solid var(--color-border);
}

.legal-content h2 {
  margin-bottom: 14px;
  font-size: 1.15rem;
  font-weight: 620;
  letter-spacing: -0.015em;
}

.legal-content p {
  color: var(--color-muted);
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content ul {
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--color-muted);
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content address {
  color: var(--color-muted);
  font-style: normal;
}

.legal-content a {
  color: var(--color-green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content code {
  font-size: 0.9em;
  overflow-wrap: anywhere;
}

.cookie-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-surface);
}

.cookie-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.cookie-table th,
.cookie-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}

.cookie-table th {
  background: var(--color-ivory-deep);
  color: var(--color-text);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.cookie-table tbody tr:last-child td {
  border-bottom: 0;
}

/* Motion */

.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .ifa-stage {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
  }

  .ifa-copy {
    max-width: 680px;
  }

  .ifa-card {
    width: 100%;
    min-height: 260px;
  }

  .hero-composition {
    padding: 0 0 12px;
  }

  .hero-intro {
    position: relative;
    width: 100%;
    pointer-events: auto;
  }

  .hero-summary {
    position: relative;
    width: min(560px, calc(100% - 48px));
    max-width: 560px;
    margin: -54px 0 0 24px;
  }

  .hero-stage {
    width: 100%;
    aspect-ratio: 4 / 3;
    margin-top: 46px;
  }

  .app-layout {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .app-dashboard {
    padding: 24px;
  }

  .app-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .app-location-card {
    min-height: 330px;
  }

  .mobile-app-stage {
    min-height: 880px;
    padding: 42px 30px;
  }

  .phone-frame {
    width: 370px;
  }

  .mobile-app-note {
    width: 190px;
  }

  .mobile-note-locations {
    left: 20px;
  }

  .mobile-note-placement {
    right: 20px;
  }

  .mobile-note-pattern {
    bottom: 100px;
    left: 30px;
  }

  .planning-media {
    width: 92%;
  }

  .planning-card {
    width: min(590px, 62%);
  }

}

@media (max-width: 720px) {
  :root {
    --header-height: 68px;
  }

  .nav-shell,
  .section-inner {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .section {
    padding: 78px 0;
  }

  h1 {
    font-size: clamp(2.35rem, 10vw, 3.05rem);
    letter-spacing: -0.025em;
  }

  h2 {
    font-size: clamp(1.8rem, 7.5vw, 2.4rem);
  }

  .hero {
    min-height: auto;
    padding: 48px 0 32px;
  }

  .product-section {
    padding-top: 52px;
    padding-bottom: 40px;
  }

  .planning-section {
    padding-top: 40px;
  }

  .hero-summary p {
    font-size: 1.02rem;
  }

  .hero-stage {
    aspect-ratio: 4 / 5;
    margin-top: 38px;
    border-radius: 14px;
  }

  .hero-stage img {
    object-position: 68% center;
  }

  .hero-summary {
    width: 100%;
    margin: 16px 0 0;
    padding: 24px;
  }

  .stage-notify {
    min-height: 38px;
    font-size: 0.72rem;
  }

  .stage-action {
    top: auto;
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
  }

  .editorial-heading {
    margin-bottom: 38px;
  }

  .editorial-heading > p:last-child {
    margin-left: 0;
  }

  .mobile-app-stage {
    min-height: 0;
    gap: 14px;
    padding: 28px 12px;
  }

  .phone-frame {
    width: min(100%, 360px);
  }

  .phone-shell {
    border-radius: 49px;
    padding: 7px;
  }

  .phone-screen {
    height: 730px;
    border-radius: 42px;
  }

  .phone-island {
    top: 10px;
    width: 82px;
    height: 22px;
  }

  .phone-statusbar {
    padding-inline: 16px;
  }

  .mobile-app-header {
    padding-inline: 14px;
  }

  .mobile-screen-main {
    gap: 9px;
    padding: 12px;
  }

  .mobile-location-heading h3 {
    font-size: 1.75rem;
  }

  .mobile-trend-card {
    padding: 12px;
  }

  .mobile-chart {
    height: 128px;
  }

  .mobile-placement-card {
    min-height: 92px;
    grid-template-columns: 54px minmax(0, 1fr) 16px;
    gap: 8px;
    padding: 8px 10px;
  }

  .mobile-body-map svg {
    width: 49px;
    height: 74px;
  }

  .mobile-action-preview {
    min-height: 40px;
  }

  .mobile-app-note {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    padding: 16px;
  }

  .mobile-app-note > span {
    margin-bottom: 9px;
  }

  .mobile-app-concept > figcaption {
    text-align: left;
  }

  .app-window {
    border-radius: 15px;
  }

  .app-topbar {
    min-height: 60px;
    padding: 0 14px;
  }

  .app-concept-label {
    font-size: 0.64rem;
  }

  .app-layout {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    border-right: 0;
    border-bottom: 1px solid #e1e5df;
    padding: 18px 14px;
  }

  .app-sidebar ul {
    grid-template-columns: repeat(3, 1fr);
  }

  .app-sidebar li {
    min-height: 62px;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 7px;
    align-content: center;
    padding: 7px;
    font-size: 0.72rem;
  }

  .app-sidebar li small {
    display: none;
  }

  .app-device-status {
    display: none;
  }

  .app-dashboard {
    padding: 20px 14px;
  }

  .app-dashboard-header {
    align-items: flex-end;
    margin-bottom: 18px;
  }

  .app-dashboard-header h3 {
    font-size: 2rem;
  }

  .app-context-chip {
    padding: 7px 9px;
    font-size: 0.64rem;
  }

  .app-chart-card,
  .app-location-card {
    min-height: 330px;
    padding: 17px;
  }

  .app-chart {
    height: 205px;
  }

  .app-summary-strip > span {
    padding: 13px 8px;
  }

  .app-summary-strip strong {
    font-size: 0.7rem;
  }

  .app-summary-strip small {
    font-size: 0.61rem;
  }

  .app-concept > figcaption {
    text-align: left;
  }

  .planning-stage {
    padding-bottom: 0;
  }

  .ifa-section {
    padding-block: 64px;
  }

  .ifa-stage {
    gap: 28px;
  }

  .ifa-copy h2 {
    margin-bottom: 14px;
    font-size: clamp(1.65rem, 7vw, 2.25rem);
  }

  .ifa-copy p {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .ifa-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }

  .ifa-actions .button,
  .ifa-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .ifa-card {
    min-height: 210px;
    border-radius: 20px;
    padding: 24px;
  }

  .ifa-card::before {
    right: -36px;
    bottom: -50px;
    width: 142px;
    height: 142px;
    border-width: 18px;
  }

  .ifa-card::after {
    top: 14px;
    right: 18px;
    font-size: 2.5rem;
  }

  .ifa-card strong {
    margin-top: 14px;
    font-size: 1.45rem;
  }

  .ifa-card > span:not(.ifa-card-kicker) {
    font-size: 1.05rem;
  }

  .ifa-card small {
    margin-top: 5px;
    font-size: 0.84rem;
  }

  .planning-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }

  .planning-media-caption {
    top: 14px;
    left: 14px;
  }

  .planning-card {
    position: relative;
    width: calc(100% - 22px);
    margin: -42px 11px 0;
    padding: 30px 25px;
  }

  .planning-orbit {
    display: none;
  }

  .newsletter-grid {
    padding: 58px 0 54px;
  }

  .newsletter-copy h2 {
    font-size: clamp(1.5rem, 6vw, 1.9rem);
  }

  .signup-row {
    grid-template-columns: 1fr;
  }

  .signup-row .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 0 36px;
  }

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

  .analytics-consent {
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: block;
    width: auto;
    padding: 18px;
  }

  .analytics-consent-actions {
    grid-template-columns: 1fr;
    min-width: 0;
    margin-top: 16px;
  }

  .analytics-consent-button {
    width: 100%;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 46px;
    height: 46px;
  }

  .legal-nav {
    font-size: 0.84rem;
  }

  .legal-card > h1 {
    font-size: 2.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal,
  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}
