:root {
  color-scheme: dark;
  --bg: #030403;
  --ink: #f5f7f2;
  --muted: #aeb5a7;
  --soft: #171a17;
  --brand-green: #8DFB2A;
  --brand-green-rgb: 141, 251, 42;
  --line: rgba(var(--brand-green-rgb), 0.22);
  --green: var(--brand-green);
  --green-2: var(--brand-green);
  --white-glow: rgba(255, 255, 255, 0.18);
  --shadow: rgba(var(--brand-green-rgb), 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 82% 12%, rgba(var(--brand-green-rgb), 0.15), transparent 26rem),
    radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.08), transparent 20rem),
    linear-gradient(180deg, #030403 0%, #090b09 46%, #030403 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 72%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(108deg, transparent 0 70%, rgba(var(--brand-green-rgb), 0.17) 70.2% 71.2%, transparent 71.4%),
    linear-gradient(112deg, transparent 0 78%, rgba(var(--brand-green-rgb), 0.33) 78.2% 78.8%, transparent 79%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 5px);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

img {
  height: auto;
}

svg {
  flex-shrink: 0;
}

main,
section,
header,
footer {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  backdrop-filter: blur(18px);
}

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

.brand img {
  display: block;
  width: clamp(150px, 15vw, 214px);
  height: auto;
  filter: drop-shadow(0 0 16px rgba(var(--brand-green-rgb), 0.18));
}

.kicker,
.icon {
  color: var(--green);
}

nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

nav a:hover,
nav a.is-current,
footer a:hover {
  color: var(--green);
}

.legal-page {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
  padding: 80px 0 96px;
}

.legal-hero {
  max-width: 760px;
  padding: 28px 0 38px;
}

.legal-hero h1 {
  margin: 0;
}

.legal-hero p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.legal-panel {
  max-width: 880px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 42px);
  background: rgba(8, 10, 8, 0.78);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34), 0 0 30px rgba(var(--brand-green-rgb), 0.08);
}

.legal-panel h2 {
  margin: 0 0 24px;
  color: var(--green);
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1.15;
}

.legal-section {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-section:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.legal-section:last-child {
  padding-bottom: 0;
}

.legal-section h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
}

.legal-section p {
  margin: 0;
  color: rgba(245, 247, 242, 0.82);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.68;
}

.legal-section p + p {
  margin-top: 12px;
}

.legal-section a {
  color: var(--green);
  font-weight: 800;
}

.language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.language-current {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.language-current::after {
  color: var(--green);
  content: "\25BE";
  font-size: 11px;
}

.flag-icon {
  position: relative;
  display: inline-block;
  width: 23px;
  height: 16px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.28);
}

.flag-de {
  background: linear-gradient(180deg, #050505 0 33.333%, #dd0000 33.333% 66.666%, #ffce00 66.666% 100%);
}

.flag-es {
  background: linear-gradient(180deg, #aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75% 100%);
}

.flag-gb {
  background:
    linear-gradient(146deg, transparent 0 43%, #ffffff 43% 48%, #c8102e 48% 52%, #ffffff 52% 57%, transparent 57%),
    linear-gradient(34deg, transparent 0 43%, #ffffff 43% 48%, #c8102e 48% 52%, #ffffff 52% 57%, transparent 57%),
    linear-gradient(90deg, transparent 0 38%, #ffffff 38% 45%, #c8102e 45% 55%, #ffffff 55% 62%, transparent 62%),
    linear-gradient(180deg, transparent 0 34%, #ffffff 34% 42%, #c8102e 42% 58%, #ffffff 58% 66%, transparent 66%),
    #012169;
}

.language-current:hover,
.language-switcher.is-open .language-current {
  border-color: rgba(var(--brand-green-rgb), 0.68);
  background: rgba(var(--brand-green-rgb), 0.1);
  box-shadow: 0 0 18px rgba(var(--brand-green-rgb), 0.14);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 100;
  display: none;
  min-width: 124px;
  border: 1px solid rgba(var(--brand-green-rgb), 0.42);
  border-radius: 8px;
  padding: 6px;
  background: rgba(4, 6, 4, 0.96);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34), 0 0 22px rgba(var(--brand-green-rgb), 0.12);
}

.language-switcher.is-open .language-menu {
  display: grid;
  gap: 4px;
}

.language-menu button {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 8px 9px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.language-menu button:hover,
.language-menu button.is-active {
  border-color: rgba(var(--brand-green-rgb), 0.5);
  background: rgba(var(--brand-green-rgb), 0.1);
}

.site-header .nav-cta {
  display: none;
}

.nav-cta,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 900;
}

.nav-cta,
.secondary-action {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.primary-action {
  background: var(--green);
  color: #050804;
  box-shadow: 0 0 34px rgba(var(--brand-green-rgb), 0.34);
}

.secondary-action {
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  gap: 48px;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  padding: 54px 0 80px;
  align-items: center;
}

.hero::after {
  position: absolute;
  right: -6vw;
  bottom: 28px;
  left: -6vw;
  height: 92px;
  content: "";
  background:
    linear-gradient(176deg, transparent 0 28%, rgba(var(--brand-green-rgb), 0.92) 29% 58%, transparent 60%),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0 4px, transparent 4px 10px);
  opacity: 0.94;
  transform: skewY(-1deg);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-brand-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 34px);
  width: 100%;
  max-width: 920px;
  margin-bottom: 24px;
}

.hero-logo {
  display: block;
  flex: 1 1 340px;
  width: clamp(360px, 38vw, 540px);
  max-width: 100%;
  height: auto;
  margin: 0;
  filter: drop-shadow(0 0 28px rgba(var(--brand-green-rgb), 0.24));
}

.position-line {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(20px, 2.7vw, 34px);
  font-weight: 900;
  line-height: 1.05;
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.15);
}

.kicker {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 92px);
  font-style: italic;
  line-height: 0.94;
  text-shadow: 0 0 28px var(--white-glow);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.hero-text,
.split-flow p,
.migration-card p {
  max-width: 650px;
  color: #d8ddd2;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin: 34px 0 0;
}

.proof-strip div {
  min-height: 102px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.proof-strip dt {
  color: var(--green);
  font-size: 28px;
  font-weight: 900;
}

.proof-strip dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-stage {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: end;
  gap: 26px;
  min-height: 560px;
}

.hero-stage::before {
  position: absolute;
  width: min(43vw, 570px);
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 48%, transparent 0 38%, rgba(255, 255, 255, 0.18) 39% 40%, transparent 41%),
    radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 46%);
  filter: blur(1px);
  opacity: 0.68;
}

.energy-dust {
  position: absolute;
  inset: 3% -6% auto auto;
  width: 320px;
  height: 250px;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.8) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(var(--brand-green-rgb), 0.8) 0 1px, transparent 1.7px);
  background-size: 18px 18px, 37px 37px;
  opacity: 0.52;
  transform: rotate(-12deg);
}

.glow-frame {
  border: 1px solid rgba(var(--brand-green-rgb), 0.7);
  box-shadow: 0 0 26px rgba(var(--brand-green-rgb), 0.2), inset 0 0 22px rgba(var(--brand-green-rgb), 0.05);
}

.hero-download {
  position: relative;
  z-index: 2;
  flex: 0 1 318px;
  width: 318px;
  max-width: 100%;
  border-left: 3px solid var(--green);
  padding: 12px 0 12px 17px;
  filter: drop-shadow(0 0 18px rgba(var(--brand-green-rgb), 0.18));
}

.hero-download p {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.hero-download p span {
  color: var(--green);
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 138px;
  min-width: min(138px, 100%);
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  padding: 7px 10px;
  background: rgba(2, 3, 2, 0.82);
  box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.04), 0 0 18px rgba(var(--brand-green-rgb), 0.1);
}

.store-badge svg {
  width: 22px;
  height: 22px;
  fill: var(--ink);
  flex: 0 0 auto;
}

.store-badge span {
  display: grid;
  gap: 1px;
}

.store-badge small {
  color: #d7ddd1;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.store-badge strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.05;
}

.hero-real-shot {
  position: relative;
  z-index: 1;
  width: min(100%, 660px);
  justify-self: end;
  transform: rotate(-3.4deg);
  transform-origin: 56% 50%;
}

.hero-real-shot img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center top;
}

.hero-real-shot figcaption {
  display: none;
}

.phone-mock {
  display: none;
  position: relative;
  z-index: 1;
  width: min(390px, 92vw);
  border-radius: 8px;
  padding: 18px;
  background: linear-gradient(145deg, rgba(22, 26, 22, 0.94), rgba(5, 8, 5, 0.94));
  transform: rotate(-3deg);
}

.phone-top,
.calendar-head,
.days,
.session,
.bottom-tabs,
.migration-steps,
footer {
  display: flex;
  align-items: center;
}

.phone-top,
.calendar-head,
.session {
  justify-content: space-between;
  gap: 14px;
}

.phone-top {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.phone-top strong {
  color: var(--green);
}

.calendar-preview {
  display: grid;
  gap: 12px;
}

.calendar-head button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  font-size: 22px;
}

.days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.days span {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 8px 0;
}

.session {
  min-height: 86px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.session span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.session strong {
  flex: 1;
}

.session small {
  color: var(--muted);
  font-weight: 800;
}

.session.hot {
  border-color: rgba(var(--brand-green-rgb), 0.6);
  box-shadow: 0 0 20px rgba(var(--brand-green-rgb), 0.16);
}

.session.note::after {
  content: "!";
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #050804;
  font-weight: 900;
}

.bottom-tabs {
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.bottom-tabs span {
  width: 42px;
  height: 5px;
  border-radius: 999px;
  background: rgba(var(--brand-green-rgb), 0.32);
}

.feature-band,
.product-showcase,
.mobile-ops,
.split-flow,
.migration,
.final-cta {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-head {
  max-width: 780px;
}

.section-head p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.feature-grid article {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
}

.feature-grid article.is-active {
  grid-column: span 2;
}

.feature-grid article.roles-card.is-active {
  grid-column: 1 / -1;
}

.feature-grid article.quota-card.is-active {
  grid-column: 1 / -1;
}

.reveal-trigger {
  cursor: pointer;
}

.reveal-trigger:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.reveal-trigger.is-active {
  border-color: rgba(var(--brand-green-rgb), 0.78);
  box-shadow: 0 0 30px rgba(var(--brand-green-rgb), 0.18), inset 0 0 18px rgba(var(--brand-green-rgb), 0.05);
}

.feature-grid article:hover {
  border-color: rgba(var(--brand-green-rgb), 0.68);
  box-shadow: 0 0 28px rgba(var(--brand-green-rgb), 0.16);
  transform: translateY(-3px);
}

.feature-grid article,
.workflow-item,
.primary-action,
.secondary-action,
.nav-cta {
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-size: 24px;
  font-weight: 900;
  text-shadow: 0 0 18px var(--shadow);
}

.feature-grid p,
.workflow-item p,
.mobile-feature-list p {
  color: var(--muted);
  line-height: 1.55;
}

.product-showcase {
  position: relative;
}

.screenshot-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
  align-items: stretch;
}

.screenshot-board.small-grid {
  max-width: 920px;
}

.topic-shot {
  display: grid;
  margin-top: 26px;
}

.topic-shot-right {
  justify-content: end;
}

.screenshot-card {
  overflow: hidden;
  margin: 0;
  width: 100%;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    #090c09;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.reveal-panel {
  animation: revealIn 180ms ease both;
}

.reveal-stack:not(.has-open) {
  display: none;
}

@keyframes revealIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

.screenshot-card:hover {
  border-color: rgba(var(--brand-green-rgb), 0.62);
  box-shadow: 0 0 28px rgba(var(--brand-green-rgb), 0.14);
  transform: translateY(-3px);
}

.screenshot-card.compact {
  width: min(100%, 560px);
}

.screenshot-card.inline-shot {
  grid-column: 1 / -1;
  width: min(100%, 520px);
  margin-top: 16px;
  border-color: rgba(var(--brand-green-rgb), 0.28);
  box-shadow: 0 0 22px rgba(var(--brand-green-rgb), 0.1);
}

.screenshot-card.wide {
  grid-column: span 1;
}

.screenshot-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.9;
  object-fit: cover;
  object-position: center top;
  background: #090c09;
}

.screenshot-card.compact img {
  aspect-ratio: 16 / 8.4;
}

.screenshot-card.inline-shot img {
  aspect-ratio: 16 / 8.6;
}

.screenshot-card.portrait-shot {
  width: min(100%, 760px);
}

.screenshot-card.portrait-shot img {
  aspect-ratio: auto;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.screenshot-card figcaption {
  display: grid;
  gap: 6px;
  padding: 13px 14px;
}

.screenshot-card figcaption strong {
  font-size: 16px;
}

.screenshot-card figcaption span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.mock-screen,
.mobile-device {
  min-height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    #090c09;
}

.mock-screen:hover,
.mobile-device:hover {
  border-color: rgba(var(--brand-green-rgb), 0.62);
  box-shadow: 0 0 28px rgba(var(--brand-green-rgb), 0.14);
}

.dashboard-screen {
  grid-column: span 2;
}

.mobile-device {
  grid-row: span 2;
  min-height: 520px;
  padding: 16px;
  background: linear-gradient(160deg, rgba(23, 27, 23, 0.98), rgba(4, 6, 4, 0.98));
}

.mock-topline,
.metric-row,
.compact-session,
.member-line,
.member-actions,
.device-bar,
.mobile-head {
  display: flex;
  align-items: center;
}

.mock-topline,
.compact-session,
.member-line,
.mobile-head {
  justify-content: space-between;
  gap: 12px;
}

.mock-topline {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.mock-topline strong,
.mobile-head strong,
.mobile-card span,
.compact-session b,
.member-line em {
  color: var(--green);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.metric-row div {
  min-height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.metric-row strong {
  display: block;
  color: var(--ink);
  font-size: 32px;
  font-weight: 900;
}

.metric-row span,
.mobile-card small,
.compact-session em,
.member-line em,
.create-screen label,
.mobile-head small {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.wide-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  min-height: 138px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.2);
}

.wide-chart span {
  flex: 1;
  min-height: 28px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--green), rgba(var(--brand-green-rgb), 0.16));
  box-shadow: 0 0 18px rgba(var(--brand-green-rgb), 0.18);
}

.mini-calendar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 14px;
}

.mini-calendar span {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 9px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.compact-session,
.member-line {
  min-height: 48px;
  margin-top: 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.035);
}

.compact-session.active,
.member-line.checked {
  border-color: rgba(var(--brand-green-rgb), 0.56);
  background: rgba(var(--brand-green-rgb), 0.07);
}

.device-bar {
  justify-content: center;
  min-height: 26px;
}

.device-bar span {
  width: 82px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.mobile-head {
  margin: 12px 0 20px;
}

.mobile-card {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.mobile-card.active {
  border-color: rgba(var(--brand-green-rgb), 0.58);
  box-shadow: inset 0 0 18px rgba(var(--brand-green-rgb), 0.07);
}

.mock-button {
  width: 100%;
  min-height: 46px;
  margin-top: 16px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: #060a05;
  font: inherit;
  font-weight: 900;
}

.member-line span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(var(--brand-green-rgb), 0.12);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.member-line b {
  flex: 1;
}

.member-line.guest span {
  background: rgba(255, 255, 255, 0.1);
  color: var(--ink);
}

.member-actions {
  gap: 8px;
  margin-top: 14px;
}

.member-actions button {
  flex: 1;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
}

.create-screen label {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0 0 10px;
}

.create-screen label span {
  color: var(--ink);
}

.create-confirm {
  margin-top: 18px;
  border-radius: 8px;
  padding: 13px;
  background: rgba(var(--brand-green-rgb), 0.12);
  color: var(--green);
  font-weight: 900;
  text-align: center;
}

.push-bubble {
  margin-top: 10px;
  border: 1px solid rgba(var(--brand-green-rgb), 0.32);
  border-radius: 8px;
  padding: 12px;
  background: rgba(var(--brand-green-rgb), 0.07);
  color: #edf6e9;
  font-weight: 800;
}

.mobile-ops {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1.15fr);
  gap: 48px;
  align-items: start;
}

.mobile-ops-copy p {
  max-width: 640px;
  color: #d8ddd2;
  font-size: 18px;
  line-height: 1.65;
}

.mobile-feature-list {
  display: grid;
  gap: 12px;
}

.mobile-shot-pair {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  justify-items: center;
  margin-top: -20px;
}

.topic-disclosure {
  display: grid;
  align-content: start;
  width: 100%;
  max-width: 100%;
}

.mobile-feature-list button,
.product-action {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 4px 16px;
  width: 100%;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink);
  text-align: left;
}

.product-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 920px;
  margin-top: 30px;
}

.product-action-grid .inline-shot,
.mobile-feature-list .inline-shot {
  justify-self: stretch;
  width: min(100%, 540px);
}

.mobile-feature-list .inline-shot {
  justify-self: end;
}

.mobile-feature-list button:hover,
.product-action:hover {
  border-color: rgba(var(--brand-green-rgb), 0.62);
  box-shadow: 0 0 28px rgba(var(--brand-green-rgb), 0.14);
}

.mobile-feature-list span,
.product-action span {
  grid-row: span 2;
  color: var(--green);
  font-size: 22px;
  font-weight: 900;
}

.mobile-feature-list p,
.product-action p {
  margin-bottom: 0;
}

.workflow-shot {
  grid-column: 2;
  justify-self: end;
  margin-top: 18px;
}

.split-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 48px;
  align-items: start;
}

.workflow-list {
  display: grid;
  gap: 12px;
}

.workflow-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 6px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.workflow-item .inline-shot {
  margin-top: 8px;
}

.workflow-item:hover {
  border-color: rgba(var(--brand-green-rgb), 0.62);
}

.workflow-item span {
  grid-row: span 2;
  color: var(--green);
  font-size: 24px;
  font-weight: 900;
}

.workflow-item p {
  margin-bottom: 0;
}

.migration-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding: clamp(28px, 6vw, 68px);
  background:
    linear-gradient(100deg, rgba(6, 8, 6, 0.96) 0 55%, rgba(var(--brand-green-rgb), 0.13)),
    repeating-linear-gradient(-7deg, transparent 0 16px, rgba(var(--brand-green-rgb), 0.08) 17px 19px);
}

.migration-card::after {
  position: absolute;
  right: -90px;
  bottom: -28px;
  width: 420px;
  height: 120px;
  content: "";
  background: var(--green);
  opacity: 0.88;
  transform: skewX(-28deg) rotate(-5deg);
  filter: blur(0.2px);
}

.migration-card > * {
  position: relative;
  z-index: 1;
}

.migration-steps {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.migration-steps span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--ink);
  font-weight: 900;
}

.final-cta {
  text-align: center;
}

.final-cta h2 {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.pricing-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.pricing-hero {
  max-width: 880px;
  padding: 92px 0 46px;
}

.pricing-hero h1 {
  max-width: 860px;
  margin-bottom: 20px;
  font-size: clamp(44px, 6vw, 84px);
}

.pricing-subtitle {
  max-width: 760px;
  color: #d8ddd2;
  font-size: 19px;
  line-height: 1.65;
}

.pricing-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 20px 0 42px;
}

.pricing-card,
.pricing-info-card,
.early-adopter {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    #090c09;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 440px;
  padding: 26px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.pricing-card:hover,
.pricing-card:focus-within,
.pricing-info-card:hover {
  border-color: rgba(var(--brand-green-rgb), 0.62);
  box-shadow: 0 0 28px rgba(var(--brand-green-rgb), 0.14);
  transform: translateY(-3px);
}

.pricing-card.featured-plan {
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.pricing-card.featured-plan:hover,
.pricing-card.featured-plan:focus-within {
  border-color: rgba(var(--brand-green-rgb), 0.7);
  box-shadow: 0 0 34px rgba(var(--brand-green-rgb), 0.18), inset 0 0 24px rgba(var(--brand-green-rgb), 0.06);
}

.pricing-plan-label {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.price-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.price-line strong {
  color: var(--green);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 900;
  line-height: 0.95;
  text-shadow: none;
  transition: text-shadow 160ms ease;
}

.pricing-card:hover .price-line strong,
.pricing-card:focus-within .price-line strong,
.pricing-info-card:hover .price-line strong,
.early-adopter:hover .price-line strong {
  text-shadow: 0 0 22px rgba(var(--brand-green-rgb), 0.22);
}

.price-line span {
  color: var(--muted);
  font-weight: 900;
}

.price-line.compact strong {
  font-size: clamp(34px, 4vw, 48px);
}

.pricing-card ul,
.early-details ul {
  display: grid;
  gap: 12px;
  align-content: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card li,
.early-details li {
  position: relative;
  padding-left: 24px;
  color: #d8ddd2;
  font-weight: 800;
  line-height: 1.45;
}

.pricing-card li::before,
.early-details li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  color: var(--green);
  content: "\2713";
  font-weight: 900;
}

.pricing-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0 0 42px;
}

.pricing-closeness {
  position: relative;
  overflow: hidden;
  margin: 0 0 42px;
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(115deg, rgba(6, 8, 6, 0.96) 0 62%, rgba(var(--brand-green-rgb), 0.12)),
    repeating-linear-gradient(-8deg, transparent 0 18px, rgba(var(--brand-green-rgb), 0.06) 18px 20px);
}

.pricing-closeness h2 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: 64px;
  font-style: italic;
  line-height: 0.96;
  text-shadow: 0 0 28px var(--white-glow);
}

.pricing-closeness p:not(.kicker) {
  max-width: 760px;
  margin-bottom: 0;
  color: #d8ddd2;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.65;
}

.pricing-info-card {
  padding: 28px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.pricing-info-card h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.pricing-info-card p:not(.kicker) {
  color: #d8ddd2;
  font-size: 17px;
  line-height: 1.6;
}

.early-adopter {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 42px;
  margin: 0 0 42px;
  padding: clamp(28px, 5vw, 56px);
}

.early-adopter::after {
  position: absolute;
  inset: auto -90px -36px auto;
  width: 360px;
  height: 92px;
  content: "";
  background: var(--green);
  opacity: 0.82;
  transform: skewX(-24deg) rotate(-5deg);
}

.early-adopter > * {
  position: relative;
  z-index: 1;
}

.early-adopter h2 {
  font-size: clamp(34px, 4.5vw, 64px);
}

.early-adopter p {
  color: #d8ddd2;
  font-size: 18px;
  line-height: 1.6;
}

.early-details {
  display: grid;
  align-content: center;
  gap: 22px;
}

.pricing-final-cta {
  padding: 52px 0 92px;
  text-align: center;
}

.pricing-final-cta h2 {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
}

footer {
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 32px));
  min-height: 86px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 14px;
  }

  nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .language-switcher {
    margin-left: auto;
  }

  .hero,
  .split-flow,
  .mobile-ops {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
    overflow: hidden;
  }

  .hero-stage {
    min-height: 500px;
    justify-items: start;
  }

  .hero-brand-row {
    width: 100%;
    max-width: 100%;
  }

  .hero-logo {
    flex: 0 1 min(100%, 520px);
  }

  .hero-download {
    flex-basis: min(100%, 318px);
    width: min(100%, 318px);
  }

  .hero-real-shot {
    justify-self: center;
  }

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

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

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

  .early-adopter {
    grid-template-columns: 1fr;
  }

  .topic-shot-right,
  .workflow-shot {
    justify-content: stretch;
    justify-self: stretch;
  }

  .mobile-shot-pair {
    margin-top: 0;
  }

  .dashboard-screen,
  .mobile-device {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  .site-header,
  .hero,
  .feature-band,
  .product-showcase,
  .mobile-ops,
  .split-flow,
  .migration,
  .final-cta,
  footer {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    gap: 22px;
    padding-top: 20px;
    padding-bottom: 36px;
  }

  .hero::after {
    right: -24px;
    left: -24px;
    height: 54px;
  }

  .hero-logo {
    flex: 0 1 min(100%, 360px);
    width: min(100%, 360px);
  }

  .hero-stage::before {
    width: min(92vw, 420px);
  }

  .energy-dust {
    display: none;
  }

  .hero-real-shot {
    width: min(100%, 460px);
  }

  .pricing-closeness h2 {
    font-size: 48px;
  }

  .hero-brand-row {
    gap: 14px;
    margin-bottom: 18px;
  }

  .hero-download {
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .position-line {
    margin-bottom: 10px;
    font-size: clamp(20px, 6vw, 30px);
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(38px, 10vw, 54px);
  }

  .hero-text {
    max-width: 620px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    margin: 22px 0;
  }

  .proof-strip,
  .feature-grid,
  .product-action-grid,
  .pricing-plans,
  .pricing-support-grid,
  .workflow-list,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .feature-grid article,
  .feature-grid article.is-active,
  .pricing-card,
  .pricing-info-card,
  .workflow-item,
  .topic-disclosure {
    grid-column: auto;
    width: 100%;
    max-width: 100%;
  }

  .feature-grid article,
  .pricing-card {
    min-height: auto;
  }

  .feature-grid article,
  .pricing-card,
  .pricing-info-card,
  .mobile-feature-list button,
  .product-action,
  .workflow-item,
  .proof-strip div {
    border-radius: 8px;
    padding: 18px;
  }

  .icon {
    margin-bottom: 18px;
  }

  .mobile-feature-list,
  .workflow-list,
  .product-action-grid {
    width: 100%;
    max-width: 100%;
  }

  .product-action-grid .inline-shot,
  .mobile-feature-list .inline-shot,
  .screenshot-card.inline-shot,
  .screenshot-card.compact {
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
  }

  .mobile-feature-list span,
  .product-action span,
  .workflow-item span {
    grid-row: auto;
  }

  .early-adopter {
    gap: 24px;
  }

  .price-line {
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: center;
    padding-top: 10px;
  }

  nav {
    flex-wrap: wrap;
    gap: 10px 14px;
    overflow-x: visible;
    white-space: normal;
  }

  nav a {
    line-height: 1.15;
  }

  .brand img {
    width: min(148px, 44vw);
  }

  .nav-cta {
    display: none;
  }

  .language-switcher {
    order: 2;
  }

  h1 {
    font-size: clamp(36px, 11vw, 46px);
    line-height: 0.98;
  }

  .pricing-closeness h2 {
    font-size: 40px;
    line-height: 1;
  }

  .pricing-closeness p:not(.kicker) {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-brand-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .hero-logo {
    flex: 0 1 min(100%, 320px);
    width: min(100%, 320px);
  }

  .proof-strip,
  .feature-grid,
  .product-action-grid,
  .pricing-plans,
  .pricing-support-grid,
  .screenshot-board {
    grid-template-columns: 1fr;
  }

  .mobile-shot-pair {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: auto;
    gap: 18px;
  }

  .hero-real-shot {
    width: 100%;
    transform: none;
  }

  .hero-download {
    width: min(100%, 360px);
    flex-basis: auto;
    padding-left: 12px;
  }

  .store-badge {
    flex-basis: min(100%, 156px);
    min-width: 0;
  }

  .store-badge strong {
    font-size: 16px;
  }

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

  .feature-band,
  .split-flow,
  .migration,
  .final-cta {
    padding: 64px 0;
  }

  .workflow-item {
    grid-template-columns: 1fr;
  }

  .metric-row,
  .mobile-feature-list button,
  .product-action-grid,
  .product-action {
    grid-template-columns: 1fr;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .site-header,
  .hero,
  .feature-band,
  .product-showcase,
  .mobile-ops,
  .split-flow,
  .migration,
  .final-cta,
  footer {
    width: min(100% - 20px, 1180px);
  }

  .site-header {
    min-height: auto;
  }

  nav {
    gap: 14px;
    margin-right: 0;
    margin-left: 0;
    padding-inline: 0;
    font-size: 13px;
  }

  .language-current {
    min-height: 38px;
    padding-inline: 10px;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-logo {
    flex: 0 1 min(100%, 300px);
    width: min(100%, 300px);
  }

  .hero-download {
    width: 100%;
    padding-left: 12px;
  }

  .hero-download p {
    font-size: 15px;
  }

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

  .store-badge {
    min-height: 42px;
    padding: 6px 8px;
  }

  .store-badge svg {
    width: 18px;
    height: 18px;
  }

  .store-badge small {
    font-size: 8px;
  }

  .store-badge strong {
    font-size: 13px;
  }

  .position-line {
    font-size: clamp(20px, 7vw, 28px);
  }

  h1 {
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1;
  }

  .hero-text,
  .split-flow p,
  .migration-card p {
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions a,
  .primary-action,
  .secondary-action {
    width: 100%;
    justify-content: center;
  }

  .proof-strip {
    margin-top: 22px;
  }

  .feature-band,
  .product-showcase,
  .mobile-ops,
  .split-flow,
  .migration,
  .final-cta,
  .pricing-hero,
  .pricing-final-cta {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .feature-grid,
  .product-action-grid,
  .mobile-feature-list,
  .workflow-list,
  .pricing-plans,
  .pricing-support-grid {
    gap: 10px;
  }

  .feature-grid article,
  .pricing-card,
  .pricing-info-card,
  .mobile-feature-list button,
  .product-action,
  .workflow-item,
  .proof-strip div {
    padding: 16px;
  }

  .mobile-feature-list button,
  .product-action,
  .workflow-item {
    gap: 8px;
  }

  .screenshot-card figcaption {
    padding: 12px;
  }

  .price-line strong {
    font-size: 40px;
  }

  .migration-steps {
    display: grid;
    grid-template-columns: 1fr;
  }

  .migration-steps span {
    width: 100%;
  }
}
