/* KlickZeit — modern product site */

:root {
  color-scheme: light;
  --bg: #f5f3ed;
  --surface: #fffef9;
  --surface-soft: #eceae3;
  --surface-green: #dcf7ec;
  --ink: #0b1712;
  --ink-soft: #34453d;
  --muted: #637068;
  --line: rgba(11, 23, 18, 0.13);
  --line-strong: rgba(11, 23, 18, 0.22);
  --emerald: #12c98a;
  --emerald-bright: #43e7ae;
  --emerald-text: #087052;
  --emerald-deep: #064d39;
  --deep: #07130f;
  --deep-soft: #0e2119;
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(7, 19, 15, 0.08);
  --shadow-md: 0 22px 60px rgba(7, 19, 15, 0.13);
  --shadow-phone: 0 44px 90px rgba(0, 0, 0, 0.42);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --radius-pill: 999px;
  --container: min(1180px, calc(100% - 40px));
  --header-height: 82px;
  --ease: 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #07100c;
  --surface: #0f1a15;
  --surface-soft: #15231c;
  --surface-green: #0b3024;
  --ink: #f4f7f4;
  --ink-soft: #c7d0cb;
  --muted: #95a39b;
  --line: rgba(244, 247, 244, 0.12);
  --line-strong: rgba(244, 247, 244, 0.2);
  --emerald-text: #5ce5b6;
  --deep: #030806;
  --deep-soft: #0b1712;
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 22px 60px rgba(0, 0, 0, 0.34);
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

h1,
h2,
h3,
.brand {
  font-family: "Manrope", "DM Sans", sans-serif;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: #07130f;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transform: translateY(-150%);
  transition: transform var(--ease);
}

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

:focus-visible {
  outline: 3px solid var(--emerald);
  outline-offset: 4px;
}

::selection {
  background: var(--emerald);
  color: #03100b;
}

/* Header */

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.site-header.scrolled {
  border-color: var(--line);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  box-shadow: 0 10px 32px rgba(7, 19, 15, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.brand img {
  border-radius: 11px;
  box-shadow: 0 7px 20px rgba(8, 70, 52, 0.2);
}

.nav-panel,
.nav-links,
.nav-actions,
.language-switch {
  display: flex;
  align-items: center;
}

.nav-panel {
  flex: 1;
  justify-content: center;
}

.nav-links {
  gap: 30px;
}

.nav-links a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.91rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color var(--ease);
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--emerald);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--ease);
}

.nav-links a:hover {
  color: var(--ink);
}

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

.nav-actions {
  flex: 0 0 auto;
  gap: 10px;
}

.language-switch {
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface);
}

.lang-btn {
  min-width: 40px;
  min-height: 40px;
  padding: 0 10px;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: background var(--ease), color var(--ease), box-shadow var(--ease);
}

.lang-btn:hover {
  color: var(--ink);
}

.lang-btn.active {
  background: var(--deep);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(7, 19, 15, 0.2);
}

.icon-button {
  display: inline-grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
  transition: transform var(--ease), border-color var(--ease), background var(--ease);
}

.icon-button:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.theme-icon {
  position: relative;
  display: block;
  width: 17px;
  height: 17px;
  overflow: hidden;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.theme-icon::after {
  position: absolute;
  inset: -2px -2px -2px 50%;
  background: currentColor;
  content: "";
  transition: inset var(--ease);
}

[data-theme="dark"] .theme-icon::after {
  inset: -2px 50% -2px -2px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
}

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

.button-primary {
  background: var(--deep);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(7, 19, 15, 0.17);
}

.button-primary:hover {
  background: var(--emerald-deep);
  box-shadow: 0 12px 28px rgba(6, 77, 57, 0.24);
}

.button-secondary {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--ink);
  background: var(--surface-soft);
}

.nav-toggle,
.mobile-nav-tools {
  display: none;
}

/* Hero */

.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  padding: calc(var(--header-height) + 82px) 0 92px;
  background:
    radial-gradient(circle at 80% 25%, rgba(18, 201, 138, 0.17), transparent 29%),
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.7), transparent 25%);
}

[data-theme="dark"] .hero {
  background:
    radial-gradient(circle at 80% 25%, rgba(18, 201, 138, 0.13), transparent 29%),
    radial-gradient(circle at 15% 15%, rgba(57, 90, 76, 0.19), transparent 25%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  content: "";
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(18, 201, 138, 0.19);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  top: 100px;
  right: -240px;
  width: 720px;
  height: 720px;
}

.hero-orbit-two {
  top: 190px;
  right: -110px;
  width: 460px;
  height: 460px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
  align-items: center;
  gap: 72px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 9px 14px 9px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  color: var(--ink-soft);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 5px rgba(18, 201, 138, 0.13);
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.45rem, 6.4vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.97;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  color: var(--emerald-text);
  font-style: normal;
}

.hero-description {
  max-width: 610px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 1.8vw, 1.2rem);
  line-height: 1.65;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 34px;
}

.store-button {
  display: inline-flex;
  min-width: 174px;
  min-height: 58px;
  align-items: center;
  gap: 11px;
  padding: 10px 17px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: var(--deep);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(7, 19, 15, 0.17);
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}

.store-button:hover {
  background: var(--emerald-deep);
  box-shadow: 0 16px 34px rgba(6, 77, 57, 0.22);
  transform: translateY(-3px);
}

.store-button span {
  display: flex;
  flex-direction: column;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.store-button small {
  margin-bottom: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.61rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.72;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 17px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-note > span:first-child {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-green);
  color: var(--emerald-deep);
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  display: flex;
  min-height: 610px;
  align-items: center;
  justify-content: center;
}

.visual-glow {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(18, 201, 138, 0.21);
  filter: blur(70px);
}

.phone-shell {
  position: relative;
  z-index: 2;
  width: 326px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 47px;
  background: #020806;
  box-shadow: var(--shadow-phone);
  transform: rotate(2.4deg);
}

.phone-shell::before {
  position: absolute;
  z-index: -1;
  inset: -1px;
  border: 1px solid rgba(67, 231, 174, 0.3);
  border-radius: inherit;
  content: "";
}

.phone-camera {
  position: absolute;
  z-index: 4;
  top: 18px;
  left: 50%;
  width: 78px;
  height: 23px;
  border-radius: var(--radius-pill);
  background: #000;
  transform: translateX(-50%);
}

.app-screen {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-radius: 39px;
  background: #f7f8f7;
  color: #101814;
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 27px 18px;
  color: #5d6862;
  font-size: 0.91rem;
  font-weight: 600;
}

.app-settings {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border: 1px solid #dfe4e1;
  border-radius: 50%;
  letter-spacing: 2px;
}

.app-clock-card {
  display: flex;
  margin: 0 20px;
  padding: 26px 15px 22px;
  flex-direction: column;
  align-items: center;
  border: 1px solid #e5e8e6;
  border-radius: 27px;
  background: #fff;
  box-shadow: 0 13px 26px rgba(12, 28, 20, 0.07);
}

.app-clock-card strong {
  font-family: "Manrope", sans-serif;
  font-size: 3.55rem;
  letter-spacing: -0.07em;
  line-height: 1;
}

.app-clock-card span {
  margin-top: 11px;
  color: #88918d;
  font-size: 0.82rem;
}

.app-clock-card b {
  color: #344039;
}

.app-action-wrap {
  display: flex;
  padding-top: 66px;
  flex-direction: column;
  align-items: center;
}

.app-action {
  display: flex;
  width: 166px;
  height: 166px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #18d79a, #078b63);
  color: #fff;
  box-shadow: 0 18px 42px rgba(10, 162, 113, 0.3), 0 0 0 13px rgba(18, 201, 138, 0.08);
}

.app-action-arrow {
  margin-bottom: 7px;
  font-size: 2.25rem;
  line-height: 1;
  transform: rotate(-45deg);
}

.app-action strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
}

.app-action-wrap p {
  margin-top: 23px;
  color: #9ca4a0;
  font-size: 0.85rem;
}

.app-tabs {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 16px 20px 21px;
  border-top: 1px solid #e9ecea;
  background: rgba(255, 255, 255, 0.94);
}

.app-tabs span {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  color: #9aa29e;
  font-size: 0.7rem;
}

.app-tabs i {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  font-style: normal;
  font-weight: 800;
}

.app-tabs .active {
  color: #07946a;
}

.app-tabs .active i {
  background: #18c991;
  color: #fff;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(6, 22, 16, 0.88);
  color: #fff;
  box-shadow: 0 24px 50px rgba(4, 17, 12, 0.26);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.floating-card-report {
  top: 116px;
  right: -15px;
  width: 156px;
  padding: 17px;
  flex-direction: column;
  border-radius: 20px;
  transform: rotate(-4deg);
}

.floating-card-report span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.7rem;
  font-weight: 600;
}

.floating-card-report strong {
  margin-top: 2px;
  font-family: "Manrope", sans-serif;
  font-size: 1.65rem;
  line-height: 1.2;
}

.floating-card-report small {
  margin-top: 5px;
  color: var(--emerald-bright);
  font-size: 0.67rem;
  font-weight: 700;
}

.floating-card-sync {
  bottom: 109px;
  left: -44px;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  transform: rotate(2deg);
}

.sync-mark {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--emerald);
  color: #04100b;
  font-weight: 800;
}

/* Proof strip */

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid article {
  display: flex;
  min-height: 138px;
  align-items: center;
  gap: 15px;
  padding: 28px 27px;
  border-right: 1px solid var(--line);
}

.proof-grid article:first-child {
  border-left: 1px solid var(--line);
}

.proof-index {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--emerald-text);
  font-family: "Manrope", sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
}

.proof-grid strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 0.94rem;
  letter-spacing: -0.02em;
}

.proof-grid p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

/* Shared section heading */

.section-heading {
  max-width: 740px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-kicker,
.card-label,
.price-card-head > span,
.popular-label {
  color: var(--emerald-text);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2,
.how-intro h2,
.trust-copy h2,
.faq-intro h2,
.cta-copy h2 {
  margin-top: 13px;
  font-size: clamp(2.2rem, 4.6vw, 4.15rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 1.04;
}

.section-heading > p:last-child,
.how-intro > p:nth-child(3),
.faq-intro > p:nth-child(3) {
  max-width: 620px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 1.06rem;
}

/* Feature bento */

.features {
  background: var(--bg);
}

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

.bento-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.bento-copy {
  position: relative;
  z-index: 2;
}

.bento-card h3 {
  margin-top: 11px;
  font-size: clamp(1.5rem, 2.6vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.12;
}

.bento-card p {
  margin-top: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.bento-primary {
  grid-column: span 7;
  min-height: 535px;
  padding: 38px;
  background:
    radial-gradient(circle at 75% 75%, rgba(67, 231, 174, 0.18), transparent 35%),
    linear-gradient(145deg, #07130f, #0b261b);
  color: var(--white);
}

.bento-primary .bento-copy {
  max-width: 480px;
}

.bento-primary .card-label,
.bento-primary p {
  color: rgba(255, 255, 255, 0.65);
}

.tap-visual {
  position: absolute;
  right: 22px;
  bottom: -132px;
  width: 430px;
  height: 430px;
}

.tap-ring,
.tap-button {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.tap-ring {
  border: 1px solid rgba(67, 231, 174, 0.25);
}

.tap-ring-outer {
  width: 100%;
  height: 100%;
}

.tap-ring-inner {
  width: 78%;
  height: 78%;
}

.tap-button {
  display: flex;
  width: 235px;
  height: 235px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(145deg, #34e9b1, #07956a);
  color: #fff;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.33), 0 0 0 16px rgba(67, 231, 174, 0.08);
}

.tap-button span {
  font-family: "Manrope", sans-serif;
  font-size: 2.7rem;
  font-weight: 700;
  letter-spacing: -0.07em;
}

.tap-button strong {
  margin-top: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.bento-report {
  grid-column: span 5;
  min-height: 535px;
  padding: 38px;
  background: var(--surface-green);
}

.bento-report .bento-copy {
  max-width: 390px;
}

.screenshot-window {
  position: absolute;
  overflow: hidden;
  border: 7px solid #0b110e;
  border-radius: 30px 30px 0 0;
  background: #111;
  box-shadow: 0 25px 50px rgba(7, 19, 15, 0.25);
}

.screenshot-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-report .screenshot-window {
  right: 32px;
  bottom: -280px;
  width: 285px;
  height: 410px;
}

.bento-report .screenshot-window img {
  object-position: top center;
}

.compact-card {
  grid-column: span 6;
  min-height: 260px;
  padding: 32px;
}

.compact-card h3 {
  max-width: 420px;
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
}

.compact-card p {
  max-width: 470px;
}

.card-symbol {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface-soft);
  color: var(--emerald-text);
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.bento-settings {
  grid-column: span 7;
  min-height: 440px;
  padding: 38px;
}

.bento-settings .bento-copy {
  max-width: 400px;
}

.bento-settings .screenshot-window {
  right: 28px;
  bottom: -235px;
  width: 260px;
  height: 420px;
  border-color: #e7e9e7;
  background: #f7f7f5;
}

.bento-settings .screenshot-window img {
  object-position: center 13%;
}

.bento-delight {
  grid-column: span 5;
  min-height: 440px;
  padding: 38px;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(135deg, rgba(18, 201, 138, 0.65), rgba(18, 201, 138, 0)) border-box;
}

.bento-delight p {
  max-width: 400px;
}

.game-row {
  position: absolute;
  right: 32px;
  bottom: 34px;
  left: 32px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.game-row span {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-soft);
  color: var(--emerald-text);
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  transform: translateY(var(--offset, 0));
}

.game-row span:nth-child(2) { --offset: -18px; }
.game-row span:nth-child(3) { --offset: 8px; }
.game-row span:nth-child(4) { --offset: -10px; }
.game-row span:nth-child(5) { --offset: 4px; }

/* How it works */

.how {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.how-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: start;
  gap: 110px;
}

.how-intro {
  position: sticky;
  top: calc(var(--header-height) + 48px);
}

.how-intro h2 {
  font-size: clamp(2.6rem, 5vw, 4.45rem);
}

.how-intro > p:nth-child(3) {
  margin-inline: 0;
}

.how-summary {
  display: flex;
  max-width: 390px;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg);
}

.how-summary > span {
  font-family: "Manrope", sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.how-summary p {
  display: flex;
  flex-direction: column;
}

.how-summary strong {
  font-size: 0.82rem;
}

.how-summary small {
  color: var(--muted);
  font-size: 0.72rem;
}

.steps {
  counter-reset: steps;
}

.steps li {
  position: relative;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 27px;
  padding: 34px 0 46px;
  border-bottom: 1px solid var(--line);
}

.steps li:first-child {
  padding-top: 0;
}

.steps li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.steps li > span {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--emerald-text);
  font-family: "Manrope", sans-serif;
  font-size: 0.73rem;
  font-weight: 800;
}

.steps h3 {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.steps p {
  max-width: 520px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 1rem;
}

/* Trust */

.trust {
  padding-top: 92px;
  padding-bottom: 92px;
}

.trust-panel {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 80px;
  padding: 70px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 20% 110%, rgba(18, 201, 138, 0.21), transparent 38%),
    linear-gradient(145deg, #06110d, #0b241a);
  color: var(--white);
  box-shadow: 0 32px 80px rgba(4, 17, 12, 0.18);
}

.section-kicker-light {
  color: var(--emerald-bright);
}

.trust-copy h2 {
  max-width: 580px;
}

.trust-copy > p:nth-child(3) {
  max-width: 600px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1.03rem;
}

.trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 31px;
}

.trust-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(67, 231, 174, 0.45);
  color: var(--emerald-bright);
  font-size: 0.84rem;
  font-weight: 700;
}

.trust-links a:hover {
  border-color: var(--emerald-bright);
}

.trust-points {
  display: flex;
  flex-direction: column;
}

.trust-points article {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 17px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-points article:first-child {
  padding-top: 0;
}

.trust-points article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.trust-points article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 50%;
  color: var(--emerald-bright);
  font-size: 0.63rem;
  font-weight: 800;
}

.trust-points strong {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

.trust-points p {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
}

/* Pricing */

.pricing {
  background: var(--surface);
}

.pricing-cards {
  display: grid;
  max-width: 960px;
  margin-inline: auto;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 500px;
  padding: 38px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg);
}

.price-card-pro {
  border-color: rgba(18, 201, 138, 0.4);
  background:
    radial-gradient(circle at 100% 0, rgba(18, 201, 138, 0.13), transparent 35%),
    var(--surface-green);
}

.popular-label {
  position: absolute;
  top: 19px;
  right: 19px;
  padding: 7px 10px;
  border-radius: var(--radius-pill);
  background: var(--deep);
  color: var(--white);
  font-size: 0.57rem;
  letter-spacing: 0.1em;
}

.price-card-head h3 {
  margin-top: 19px;
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.price-card-head p {
  margin-top: 14px;
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.price-card-head small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
}

.price-card ul {
  display: flex;
  margin: 37px 0;
  flex: 1;
  flex-direction: column;
  gap: 15px;
}

.price-card li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.price-card li > span:first-child {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--emerald) 15%, transparent);
  color: var(--emerald-text);
  font-size: 0.68rem;
  font-weight: 800;
}

.price-card .button {
  width: 100%;
}

/* FAQ */

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 95px;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 48px);
}

.faq-intro h2 {
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
}

.faq-intro > p:nth-child(3) {
  margin-inline: 0;
}

.faq-intro > a {
  display: inline-block;
  margin-top: 25px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--emerald-text);
  font-size: 0.87rem;
  font-weight: 700;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 23px 0;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  list-style: none;
}

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

.faq-item summary::after {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--emerald-text);
  content: "+";
  font-family: "DM Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  transition: transform var(--ease), background var(--ease);
}

.faq-item[open] summary::after {
  background: var(--surface-green);
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 650px;
  padding: 0 58px 27px 0;
  color: var(--muted);
}

/* Final CTA */

.final-cta {
  padding-top: 50px;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
  padding: 62px 64px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 75% 15%, rgba(67, 231, 174, 0.18), transparent 32%),
    var(--deep);
  color: var(--white);
  box-shadow: 0 30px 70px rgba(4, 17, 12, 0.18);
}

.cta-copy {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: start;
  gap: 22px;
}

.cta-copy img {
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.cta-copy h2 {
  max-width: 650px;
  margin-top: 8px;
  font-size: clamp(2rem, 4.4vw, 3.55rem);
}

.cta-copy > div > p:last-child {
  max-width: 590px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.98rem;
}

.cta-actions {
  justify-content: flex-end;
}

.store-button-light {
  border-color: rgba(255, 255, 255, 0.8);
  background: var(--white);
  color: #07130f;
  box-shadow: none;
}

.store-button-light:hover {
  background: var(--emerald-bright);
  color: #04110b;
}

/* Footer */

.footer {
  padding-top: 70px;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 55px;
  padding-bottom: 56px;
}

.footer-brand p {
  max-width: 250px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-brand small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.7rem;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
}

.footer-column h3 {
  margin-bottom: 7px;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-column a:hover {
  color: var(--emerald-text);
}

.footer-bottom {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.77rem;
}

.footer-bottom a {
  font-weight: 700;
}

/* Motion */

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* Responsive */

@media (max-width: 1080px) {
  :root {
    --container: min(100% - 32px, 980px);
  }

  .header-download {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.82fr);
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 7vw, 5rem);
  }

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

  .proof-grid article:nth-child(2) {
    border-right: 0;
  }

  .proof-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .proof-grid article:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .bento-primary,
  .bento-settings {
    grid-column: span 7;
  }

  .bento-report,
  .bento-delight {
    grid-column: span 5;
  }

  .bento-settings .bento-copy {
    max-width: 330px;
  }

  .trust-panel,
  .cta-panel {
    gap: 50px;
    padding: 52px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    background: color-mix(in srgb, var(--bg) 94%, transparent);
  }

  .nav {
    gap: 12px;
  }

  .desktop-language {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    border-radius: 2px;
    background: currentColor;
    transition: transform var(--ease), opacity var(--ease);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .nav-panel {
    position: fixed;
    z-index: -1;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    max-height: calc(100vh - var(--header-height));
    align-items: stretch;
    padding: 26px 20px 30px;
    flex-direction: column;
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    background: var(--bg);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    visibility: hidden;
    transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
  }

  .nav-panel.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .nav-links {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .nav-links li {
    border-bottom: 1px solid var(--line);
  }

  .nav-links a {
    display: block;
    padding: 15px 2px;
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    font-size: 1.12rem;
  }

  .nav-links a::after {
    display: none;
  }

  .mobile-nav-tools {
    display: flex;
    align-items: stretch;
    margin-top: 26px;
    flex-direction: column;
    gap: 14px;
  }

  .mobile-nav-tools .language-switch {
    align-self: flex-start;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 70px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .hero-copy {
    max-width: 720px;
    text-align: center;
  }

  .eyebrow {
    margin-inline: auto;
  }

  .hero h1,
  .hero-description {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-note {
    justify-content: center;
  }

  .hero-visual {
    min-height: 650px;
  }

  .floating-card-report {
    right: calc(50% - 250px);
  }

  .floating-card-sync {
    left: calc(50% - 250px);
  }

  .bento-primary,
  .bento-report,
  .compact-card,
  .bento-settings,
  .bento-delight {
    grid-column: 1 / -1;
  }

  .bento-settings .bento-copy {
    max-width: 450px;
  }

  .how-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .how-intro,
  .faq-intro {
    position: static;
  }

  .trust-panel {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .pricing-cards {
    max-width: 620px;
    grid-template-columns: 1fr;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
    padding-left: 94px;
  }

  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-column:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 600px) {
  :root {
    --container: calc(100% - 24px);
  }

  .section {
    padding: 82px 0;
  }

  .brand span {
    font-size: 1rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .nav-actions {
    gap: 7px;
  }

  .icon-button {
    width: 44px;
    height: 44px;
  }

  .hero {
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
    letter-spacing: -0.07em;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .store-button {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    min-height: 560px;
    transform: scale(0.91);
  }

  .phone-shell {
    width: 306px;
  }

  .app-screen {
    min-height: 610px;
  }

  .floating-card-report {
    top: 95px;
    right: -2px;
  }

  .floating-card-sync {
    bottom: 80px;
    left: -4px;
  }

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

  .proof-grid article,
  .proof-grid article:first-child,
  .proof-grid article:nth-child(3) {
    min-height: 108px;
    padding: 21px 18px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .proof-grid article:last-child {
    border-bottom: 0;
  }

  .section-heading {
    margin-bottom: 40px;
    text-align: left;
  }

  .section-heading > p:last-child {
    margin-inline: 0;
  }

  .section-heading h2,
  .how-intro h2,
  .trust-copy h2,
  .faq-intro h2 {
    font-size: clamp(2.25rem, 11vw, 3.3rem);
  }

  .bento-card,
  .bento-primary,
  .bento-report,
  .compact-card,
  .bento-settings,
  .bento-delight {
    padding: 27px;
    border-radius: 25px;
  }

  .bento-primary {
    min-height: 535px;
  }

  .tap-visual {
    right: -65px;
    bottom: -105px;
    width: 390px;
    height: 390px;
  }

  .tap-button {
    width: 205px;
    height: 205px;
  }

  .bento-report {
    min-height: 530px;
  }

  .bento-report .screenshot-window {
    right: 50%;
    bottom: -280px;
    width: 270px;
    transform: translateX(50%);
  }

  .compact-card {
    min-height: 280px;
  }

  .bento-settings {
    min-height: 540px;
  }

  .bento-settings .screenshot-window {
    right: 50%;
    bottom: -235px;
    width: 250px;
    transform: translateX(50%);
  }

  .bento-delight {
    min-height: 440px;
  }

  .game-row {
    right: 22px;
    bottom: 32px;
    left: 22px;
    gap: 7px;
  }

  .game-row span {
    border-radius: 13px;
    font-size: 1rem;
  }

  .steps li {
    grid-template-columns: 58px 1fr;
    gap: 17px;
  }

  .steps li > span {
    width: 50px;
    height: 50px;
  }

  .trust {
    padding: 12px 0 82px;
  }

  .trust-panel,
  .cta-panel {
    width: 100%;
    padding: 38px 25px;
    border-radius: 0;
  }

  .pricing {
    padding-top: 82px;
  }

  .price-card {
    min-height: 480px;
    padding: 30px 25px;
    border-radius: 25px;
  }

  .popular-label {
    position: static;
    align-self: flex-start;
    margin-bottom: 17px;
  }

  .faq-item summary {
    min-height: 76px;
    font-size: 0.98rem;
  }

  .faq-item p {
    padding-right: 0;
  }

  .final-cta {
    padding-top: 0;
    padding-bottom: 72px;
  }

  .cta-copy {
    grid-template-columns: 1fr;
  }

  .cta-copy img {
    width: 62px;
    height: 62px;
  }

  .cta-actions {
    padding-left: 0;
    flex-direction: column;
  }

  .footer {
    padding-top: 20px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 38px 25px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    min-height: 90px;
    align-items: flex-start;
    padding: 22px 0;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 370px) {
  .brand span {
    display: none;
  }

  .hero h1 {
    font-size: 2.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
