:root {
  --green: #21b16d;
  --ink: #253238;
  --paper: #fcfdfc;
  --surface: #ffffff;
  --soft: #ecf8f2;
  --line: #d9e7df;
  --muted: #657873;
  --shadow: 0 22px 70px rgba(37, 50, 56, 0.14);
  --radius: 8px;
  --max: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button {
  font: inherit;
}

.sale-bar {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--green);
  color: var(--paper);
  font-size: 14px;
}

.sale-bar span:first-child,
.timer {
  border-radius: 999px;
  background: rgba(252, 253, 252, 0.16);
  padding: 5px 10px;
  font-weight: 850;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  min-height: 74px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid rgba(37, 50, 56, 0.1);
  background: rgba(252, 253, 252, 0.94);
  padding: 0 max(20px, calc((100% - var(--max)) / 2));
  backdrop-filter: blur(18px);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 4px;
}

.language-switcher button {
  min-width: 38px;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
  cursor: pointer;
}

.language-switcher button.is-active {
  background: var(--ink);
  color: var(--paper);
}

.brand,
.nav-links,
.header-cta,
.button,
.browser-shell,
.floating-panel,
.pricing-strip article,
.feature-stack article,
.cart-preview,
.module-card,
.demo-card,
details,
.screenshot-showcase a {
  border-radius: var(--radius);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  padding: 12px;
}

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

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--paper);
  padding: 0 18px;
  font-size: 14px;
  font-weight: 900;
}

.back-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  padding: 0 14px;
  font-size: 13px;
  font-weight: 900;
}

.hero {
  display: grid;
  width: min(calc(100% - 40px), var(--max));
  grid-template-columns: minmax(430px, 0.82fr) minmax(0, 1.04fr);
  align-items: center;
  gap: clamp(34px, 7vw, 84px);
  margin-inline: auto;
  padding: clamp(40px, 5vw, 72px) 0 46px;
}

.order-section {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff, #f1fbf6);
  box-shadow: 0 18px 55px rgba(37, 50, 56, 0.08);
  padding: clamp(28px, 4vw, 48px);
}

.order-form {
  display: grid;
  gap: 20px;
  margin-top: 26px;
}

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

.order-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.order-form input,
.order-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 0 14px;
  outline: none;
}

.order-form input:focus,
.order-form select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(33, 177, 109, 0.12);
}

.order-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.order-status.is-success {
  color: var(--green);
}

.order-status.is-error {
  color: #b42318;
}

.hero-enhanced {
  position: relative;
}

.hero-media {
  position: relative;
  min-height: 560px;
  perspective: 1400px;
}

.browser-shell {
  position: absolute;
  inset: 20px 0 auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-browser {
  transform: rotateY(-6deg) rotateX(2deg);
  animation: hero-float 7s ease-in-out infinite;
}

.hero-screen {
  height: 500px;
  overflow: hidden;
  background: var(--paper);
}

.hero-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.motion-ring {
  position: absolute;
  border: 1px solid rgba(33, 177, 109, 0.34);
  border-radius: 999px;
  pointer-events: none;
}

.ring-one {
  inset: -18px 38px auto auto;
  width: 190px;
  height: 190px;
  animation: orbit-one 12s linear infinite;
}

.ring-two {
  left: -34px;
  bottom: 34px;
  width: 260px;
  height: 260px;
  border-color: rgba(37, 50, 56, 0.14);
  animation: orbit-two 16s linear infinite;
}

.browser-top {
  display: flex;
  height: 48px;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  background: #f4f8f6;
  padding: 0 14px;
}

.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
}

.browser-top span:nth-child(2) {
  background: #b7c8c0;
}

.browser-top span:nth-child(3) {
  background: #d7e1dc;
}

.browser-top strong {
  margin-left: 10px;
  color: var(--muted);
  font-size: 12px;
}

.store-preview {
  padding: 24px;
}

.preview-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
  font-weight: 900;
}

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

.preview-hero {
  display: grid;
  min-height: 250px;
  grid-template-columns: 1fr 170px;
  gap: 18px;
  align-items: stretch;
}

.preview-hero > div:first-child {
  display: grid;
  align-content: end;
  background: linear-gradient(145deg, var(--ink), #344850);
  color: var(--paper);
  padding: 26px;
}

.preview-hero small {
  color: var(--green);
  font-weight: 900;
}

.preview-hero strong {
  display: block;
  max-width: 360px;
  margin: 10px 0 14px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

.preview-hero em {
  color: rgba(252, 253, 252, 0.72);
  font-style: normal;
}

.preview-card {
  display: grid;
  align-content: center;
  justify-items: center;
  border: 1px solid var(--line);
  background: var(--soft);
}

.preview-card b {
  font-size: 42px;
}

.preview-card span {
  color: var(--muted);
  font-weight: 800;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.preview-grid span {
  height: 100px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(33, 177, 109, 0.16), transparent),
    var(--surface);
}

.floating-panel {
  position: absolute;
  z-index: 2;
  width: 230px;
  border: 1px solid rgba(33, 177, 109, 0.28);
  background: rgba(252, 253, 252, 0.94);
  box-shadow: 0 18px 46px rgba(37, 50, 56, 0.14);
  padding: 18px;
  backdrop-filter: blur(14px);
  animation: panel-bob 5s ease-in-out infinite;
}

.floating-panel span {
  display: block;
  margin-bottom: 7px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.floating-panel strong {
  line-height: 1.2;
}

.panel-a {
  right: -24px;
  top: 88px;
}

.panel-b {
  left: 34px;
  bottom: 0;
  animation-delay: 1.2s;
}

.panel-c {
  right: 18px;
  bottom: 52px;
  animation-delay: 2.1s;
}

.hero-copy {
  padding: 26px 0;
}

.rating,
.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(44px, 5.4vw, 74px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 66px);
  font-weight: 930;
  letter-spacing: 0;
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.15;
}

.hero-copy p:not(.rating),
.section-head p,
.split > div > p,
.dark-copy p,
.demo-card p,
.faq-list p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 900;
}

.button-primary {
  background: var(--green);
  color: var(--paper);
  box-shadow: 0 18px 35px rgba(33, 177, 109, 0.24);
}

.button-secondary {
  border-color: var(--line);
  background: var(--surface);
}

.trust-row {
  margin-top: 26px;
}

.trust-row span {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 10px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

@keyframes hero-float {
  0%, 100% {
    transform: rotateY(-6deg) rotateX(2deg) translateY(0);
  }
  50% {
    transform: rotateY(-3deg) rotateX(1deg) translateY(-12px);
  }
}

@keyframes panel-bob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes orbit-one {
  from {
    transform: rotate(0deg) translateX(18px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(18px) rotate(-360deg);
  }
}

@keyframes orbit-two {
  from {
    transform: rotate(360deg) translateX(12px) rotate(-360deg);
  }
  to {
    transform: rotate(0deg) translateX(12px) rotate(0deg);
  }
}

.pricing-strip {
  display: grid;
  width: min(calc(100% - 40px), var(--max));
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 auto;
}

.pricing-strip article {
  position: relative;
  min-height: 170px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 24px;
  box-shadow: 0 14px 42px rgba(37, 50, 56, 0.07);
}

.pricing-strip article.is-featured {
  border-color: rgba(33, 177, 109, 0.5);
  box-shadow: 0 24px 60px rgba(33, 177, 109, 0.16);
}

.pricing-strip span,
.pricing-strip small {
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
}

.pricing-strip small {
  position: absolute;
  top: 18px;
  right: 18px;
}

.pricing-strip h2 {
  margin: 18px 0 8px;
  font-size: 52px;
}

.pricing-strip p,
.module-card p,
.feature-stack p {
  color: var(--muted);
  line-height: 1.55;
}

.proof-strip,
.ticker {
  overflow: hidden;
  margin-top: 40px;
  border-block: 1px solid var(--line);
  background: var(--soft);
}

.proof-strip {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 44px);
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 950;
}

.section {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
  padding: clamp(78px, 10vw, 132px) 0;
}

.section.order-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(26px, 4vw, 56px);
  margin-top: clamp(36px, 5vw, 64px);
  margin-bottom: clamp(50px, 7vw, 88px);
  padding: clamp(28px, 4vw, 46px);
  scroll-margin-top: 96px;
}

.order-section .section-head {
  max-width: 480px;
  margin-bottom: 0;
}

.order-section h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
}

.order-section .section-head p {
  font-size: 16px;
  line-height: 1.62;
}

.order-section .order-form {
  margin-top: 0;
}

.screenshot-section {
  padding-bottom: clamp(56px, 8vw, 94px);
}

.screenshot-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 16px;
}

.screenshot-showcase a {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(37, 50, 56, 0.09);
}

.screenshot-showcase img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 220ms ease;
}

.screenshot-showcase a:hover img {
  transform: scale(1.018);
}

.screenshot-showcase span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  border: 1px solid rgba(252, 253, 252, 0.22);
  border-radius: 999px;
  background: rgba(37, 50, 56, 0.86);
  color: var(--paper);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 950;
  backdrop-filter: blur(12px);
}

.shot-large {
  aspect-ratio: 1.38;
}

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

.shot-grid a {
  aspect-ratio: 1.95;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 1fr);
  align-items: start;
  gap: clamp(36px, 7vw, 88px);
}

.playbook {
  padding-top: clamp(56px, 8vw, 96px);
}

.playbook-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.playbook-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 22px;
  box-shadow: 0 14px 42px rgba(37, 50, 56, 0.06);
}

.playbook-grid span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--green);
  font-weight: 950;
}

.playbook-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.feature-stack {
  display: grid;
  gap: 14px;
}

.feature-stack article {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 24px;
}

.feature-stack span,
.module-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-weight: 950;
}

.dark-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.72fr);
  align-items: center;
  gap: clamp(36px, 7vw, 88px);
  background: var(--ink);
  color: var(--paper);
  padding: clamp(76px, 10vw, 120px) max(20px, calc((100% - var(--max)) / 2));
}

.dark-copy p {
  color: rgba(252, 253, 252, 0.74);
}

.cart-preview {
  border: 1px solid rgba(252, 253, 252, 0.14);
  background: rgba(252, 253, 252, 0.07);
  padding: 22px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.16);
}

.cart-head,
.cart-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cart-head span,
.cart-line span {
  color: rgba(252, 253, 252, 0.64);
}

.progress {
  height: 10px;
  margin: 22px 0;
  overflow: hidden;
  background: rgba(252, 253, 252, 0.15);
}

.progress span {
  display: block;
  width: 72%;
  height: 100%;
  background: var(--green);
}

.cart-line {
  border-top: 1px solid rgba(252, 253, 252, 0.14);
  padding: 18px 0;
}

.cart-icon {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  place-items: center;
  border: 1px solid rgba(252, 253, 252, 0.16);
  background:
    linear-gradient(145deg, rgba(33, 177, 109, 0.95), rgba(33, 177, 109, 0.68)),
    var(--green);
  color: var(--paper);
}

.cart-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.cart-line > div {
  flex: 1;
}

.cart-preview button {
  width: 100%;
  min-height: 52px;
  border: 0;
  background: var(--green);
  color: var(--paper);
  font-weight: 950;
}

.section-head {
  max-width: 790px;
  margin-bottom: 28px;
}

.module-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 6px;
}

.tab-button {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  padding: 0 15px;
  font-weight: 900;
  cursor: pointer;
}

.tab-button.is-active {
  background: var(--green);
  color: var(--paper);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.module-grid-dense {
  grid-template-columns: repeat(3, 1fr);
}

.module-card {
  min-height: 188px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 22px;
  box-shadow: 0 14px 40px rgba(37, 50, 56, 0.06);
}

.ticker div {
  display: flex;
  width: max-content;
  gap: 42px;
  padding: 24px 0;
  animation: move 28s linear infinite;
}

.ticker span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
  white-space: nowrap;
}

@keyframes move {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.demo-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: clamp(28px, 5vw, 54px);
  box-shadow: var(--shadow);
}

.demo-card h2 {
  max-width: 760px;
}

.faq {
  padding-top: 0;
}

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

details {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  font-weight: 950;
}

details p {
  margin: 14px 0 0;
}

.footer {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 0 max(20px, calc((100% - var(--max)) / 2));
  color: var(--muted);
}

.footer strong {
  color: var(--ink);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .split,
  .dark-section {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 500px;
    order: 2;
  }

  .hero-copy {
    order: 1;
  }

  .pricing-strip,
  .screenshot-showcase,
  .playbook-grid,
  .module-grid {
    grid-template-columns: 1fr 1fr;
  }

  .shot-large {
    grid-column: 1 / -1;
  }

  .proof-strip {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .sale-bar {
    flex-wrap: wrap;
    padding: 8px 14px;
    text-align: center;
  }

  .site-header {
    min-height: 66px;
  }

  .header-cta {
    display: none;
  }

  .header-actions {
    gap: 0;
  }

  .back-link {
    min-height: 36px;
    padding-inline: 10px;
    font-size: 12px;
  }

  .hero,
  .section,
  .pricing-strip {
    width: min(calc(100% - 28px), var(--max));
  }

  h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .hero-copy p:not(.rating),
  .section-head p,
  .split > div > p,
  .dark-copy p,
  .demo-card p {
    font-size: 16px;
  }

  .hero-actions,
  .demo-card {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-media {
    min-height: auto;
  }

  .browser-shell {
    position: relative;
    inset: auto;
  }

  .hero-screen {
    height: 420px;
  }

  .hero-screen img {
    object-fit: contain;
    background: var(--surface);
  }

  .hero-browser {
    transform: none;
    animation: none;
  }

  .motion-ring {
    display: none;
  }

  .preview-hero,
  .pricing-strip,
  .section.order-section,
  .screenshot-showcase,
  .playbook-grid,
  .module-grid {
    grid-template-columns: 1fr;
  }

  .shot-large,
  .shot-grid a {
    aspect-ratio: 1.25;
  }

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

  .preview-grid span {
    height: 70px;
  }

  .section.order-section {
    gap: 20px;
    padding: 92px 24px 24px;
  }

  .order-section .section-head {
    max-width: none;
  }

  .order-section h2 {
    font-size: clamp(32px, 9vw, 44px);
  }

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

  .floating-panel {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    margin-top: 12px;
  }

  .module-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

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

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