:root {
  --gk-green: #00e676;
  --gk-green-deep: #138756;
  --gk-green-soft: #e7fbf1;
  --gk-orange: #ff6a00;
  --gk-orange-deep: #db5c00;
  --gk-ink: #161d25;
  --gk-muted: #5d6875;
  --gk-faint: #f6f8f7;
  --gk-line: #e1e6e3;
  --gk-panel: #ffffff;
  --gk-panel-warm: #fbfaf6;
  --gk-slate: #202a36;
  --gk-shadow: 0 24px 70px rgba(28, 38, 49, 0.12);
  --gk-font-body: "Instrument Sans", "Segoe UI", sans-serif;
  --gk-font-display: "Source Serif 4", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--gk-ink);
  background: #ffffff;
  font-family: var(--gk-font-body);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.home-preview {
  min-height: 100vh;
  overflow-x: clip;
  background:
    linear-gradient(90deg, rgba(22, 29, 37, 0.035) 1px, transparent 1px),
    linear-gradient(#ffffff 0%, #ffffff 62%, #f7f8f4 100%);
  background-size:
    80px 80px,
    auto;
}

.shell {
  width: min(100%, 1288px);
  margin-inline: auto;
  padding-inline: 28px;
}

#inputs,
#profit,
#breakdown,
#sellers,
#install {
  scroll-margin-top: 86px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(22, 29, 37, 0.1);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.site-header__shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 28px;
}

.brand-link {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}

.brand-link__logo {
  width: clamp(166px, 15vw, 218px);
  height: auto;
}

.site-nav,
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a,
.text-link {
  color: #27313d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--gk-green-deep);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    box-shadow 180ms ease;
}

.button span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  font-size: 18px;
  line-height: 1;
}

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

.button--primary {
  border-color: color-mix(in srgb, var(--gk-green) 70%, #0c7d52);
  background: linear-gradient(
    184deg,
    var(--gk-green) 0%,
    var(--gk-green-deep) 100%
  );
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(0, 166, 97, 0.22);
}

.button--primary:hover {
  box-shadow: 0 20px 38px rgba(0, 166, 97, 0.28);
}

.button--ghost {
  border-color: #d7dfdc;
  background: #ffffff;
  color: #1f2933;
}

.button--ghost:hover {
  border-color: var(--gk-green);
  color: var(--gk-green-deep);
}

.button--small {
  min-height: 44px;
  padding: 12px 15px;
  font-size: 14px;
}

.hero-section {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--gk-line);
  background:
    linear-gradient(
      180deg,
      rgba(248, 251, 246, 0.92),
      rgba(255, 255, 255, 0.98)
    ),
    #ffffff;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gk-green), var(--gk-orange));
  opacity: 0.82;
}

.hero-section__grid {
  display: grid;
  grid-template-columns: minmax(430px, 0.78fr) minmax(420px, 0.72fr);
  align-items: center;
  gap: clamp(24px, 3.6vw, 56px);
  min-height: 800px;
  padding-block: 0;
}

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

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--gk-green-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid #bcefd4;
  border-radius: 999px;
  background: var(--gk-green-soft);
}

.eyebrow__mark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gk-green);
  box-shadow: 0 0 0 5px rgba(0, 230, 118, 0.14);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 620px;
  margin: 24px 0 22px;
  color: var(--gk-ink);
  font-family: var(--gk-font-display);
  font-size: clamp(54px, 5.35vw, 78px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.94;
}

.hero-title__accent {
  display: block;
  color: var(--gk-green-deep);
}

.hero-copy__lead {
  max-width: 560px;
  margin: 0;
  color: #46505b;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid #dce4e0;
  border-radius: 999px;
  background: #ffffff;
  color: #37424d;
  font-size: 13px;
  font-weight: 800;
}

.hero-shot {
  position: relative;
  isolation: isolate;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 800px;
  padding-left: clamp(24px, 4vw, 56px);
}

.hero-shot::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 54px 0 54px clamp(86px, 12vw, 150px);
  border-left: 1px solid rgba(19, 135, 86, 0.11);
  background: linear-gradient(
    90deg,
    rgba(0, 230, 118, 0.055),
    rgba(255, 106, 0, 0.025) 48%,
    transparent 78%
  );
}

.hero-mockup-image {
  width: auto;
  max-width: min(100%, 440px);
  max-height: min(800px, calc(100vh - 120px));
  height: auto;
  border-radius: 10px;
  filter: drop-shadow(0 30px 64px rgba(22, 29, 37, 0.24));
  transform: translateX(-58px) rotate(-0.55deg);
  transform-origin: center;
}

.browser-shot {
  overflow: hidden;
  border: 1px solid #dbe3df;
  border-radius: 10px;
  background: #141b24;
  box-shadow: var(--gk-shadow);
}

.browser-shot--hero {
  transform: rotate(-0.7deg);
  transform-origin: center;
}

.browser-shot__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.browser-shot__bar > span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f57;
}

.browser-shot__bar > span:nth-child(2) {
  background: #ffbd2e;
}

.browser-shot__bar > span:nth-child(3) {
  background: #28c840;
}

.browser-shot__bar p {
  flex: 1 1 auto;
  height: 20px;
  margin: 0 0 0 10px;
  padding-left: 12px;
  border-radius: 999px;
  background: #26313e;
  color: #b8c3cf;
  font-size: 11px;
  font-weight: 700;
  line-height: 20px;
}

.hero-product {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) 306px;
  min-height: 506px;
  background: #ffffff;
}

.marketplace-preview {
  padding: 26px 24px;
  background: linear-gradient(180deg, #fbfbfa, #f3f5f4);
}

.marketplace-preview__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid #e4e8e5;
}

.marketplace-preview__top strong {
  color: #f27a1a;
  font-size: 22px;
  font-weight: 900;
}

.marketplace-preview__top span {
  color: #697582;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.marketplace-preview__content {
  display: grid;
  grid-template-columns: minmax(120px, 0.44fr) minmax(0, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.product-visual {
  min-height: 214px;
  border: 1px solid #dce3e0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 230, 118, 0.08), transparent 46%),
    linear-gradient(145deg, #f1f4f6, #dce6ea);
}

.product-copy {
  min-width: 0;
}

.skeleton {
  display: block;
  width: 70%;
  height: 13px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #dfe5e3;
}

.skeleton--wide {
  width: 96%;
}

.product-price {
  display: grid;
  margin-top: 30px;
  color: #151b22;
  font-size: 32px;
  font-weight: 900;
  line-height: 0.94;
}

.product-price span {
  display: block;
}

.seller-pill {
  display: inline-flex;
  margin-top: 18px;
  padding: 8px 10px;
  border: 1px solid #d9e1de;
  border-radius: 999px;
  background: #ffffff;
  color: #4b5661;
  font-size: 12px;
  font-weight: 800;
}

.seller-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.seller-strip span {
  height: 70px;
  border: 1px solid #e2e7e4;
  border-radius: 8px;
  background: #ffffff;
}

.extension-window {
  min-width: 0;
  padding: 18px;
  background: #151f2b;
  color: #ffffff;
}

.extension-window__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.gk-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(184deg, var(--gk-green), var(--gk-green-deep));
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.mini-inputs {
  display: grid;
  gap: 7px;
}

.mini-inputs p,
.mini-table p,
.breakdown-list p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
}

.mini-inputs p {
  padding: 10px 11px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: #c9d5df;
  font-size: 12px;
  font-weight: 700;
}

.mini-inputs strong {
  color: #ffffff;
}

.profit-summary {
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(0, 230, 118, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(
      145deg,
      rgba(0, 230, 118, 0.18),
      rgba(255, 255, 255, 0.035)
    ),
    #111a25;
}

.profit-summary > span {
  display: block;
  color: #b7c4cf;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.profit-summary > strong {
  display: block;
  margin-top: 4px;
  color: #30ed91;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.profit-summary div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.profit-summary p {
  margin: 0;
  padding: 9px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #c5d0dc;
  font-size: 12px;
  font-weight: 800;
}

.profit-summary b {
  display: block;
  margin-top: 3px;
  color: #ffffff;
  font-size: 17px;
}

.mini-table {
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.mini-table p {
  padding: 8px 9px;
  color: #c7d2de;
  font-size: 11px;
  font-weight: 800;
}

.mini-table p:first-child {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.feature-section {
  position: relative;
  border-bottom: 1px solid var(--gk-line);
  background: #ffffff;
}

.feature-section--tinted {
  background: var(--gk-panel-warm);
}

.feature-section::after,
.flow-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gk-green), var(--gk-orange));
  opacity: 0.68;
  pointer-events: none;
}

.feature-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(620px, 0.92fr);
  align-items: center;
  gap: clamp(50px, 6vw, 104px);
  min-height: 560px;
  padding-block: clamp(46px, 4.6vw, 64px);
}

.feature-copy {
  max-width: 560px;
}

.feature-copy h2,
.flow-section h2,
.final-cta h2 {
  max-width: 560px;
  margin: 12px 0 18px;
  color: var(--gk-ink);
  font-family: var(--gk-font-display);
  font-size: clamp(40px, 3.8vw, 56px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
}

.feature-copy p {
  max-width: 500px;
  margin: 0;
  color: #46515c;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.62;
}

.feature-list {
  display: grid;
  gap: 10px;
  max-width: 480px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: #28323d;
  font-size: 15px;
  font-weight: 800;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gk-green);
  box-shadow: 0 0 0 5px rgba(0, 230, 118, 0.12);
}

.section-shot {
  position: relative;
  display: grid;
  justify-self: end;
  justify-items: center;
  width: min(100%, 720px);
  min-width: 0;
  padding: 24px;
  border: 1px solid #dce5e0;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(22, 29, 37, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff, #f5f7f5);
  background-size:
    32px 32px,
    auto;
  box-shadow: var(--gk-shadow);
}

.feature-section--tinted .section-shot {
  background:
    linear-gradient(90deg, rgba(22, 29, 37, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff, #f2f4ef);
  background-size:
    32px 32px,
    auto;
}

.section-shot--plain,
.feature-section--tinted .section-shot--plain {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.shot-label {
  display: inline-flex;
  justify-self: start;
  margin-bottom: 14px;
  padding: 7px 9px;
  border: 1px solid #d7e1dc;
  border-radius: 999px;
  background: #ffffff;
  color: #5d6875;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-shot__image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  filter: drop-shadow(0 18px 38px rgba(30, 42, 54, 0.12));
}

.section-shot__image--inputs {
  max-height: 540px;
}

.section-shot__image--profit {
  width: min(100%, 640px);
}

.section-shot__image--breakdown,
.section-shot__image--sellers {
  max-height: 610px;
}

.screen-card {
  border: 1px solid #dbe5df;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(30, 42, 54, 0.12);
}

.screen-card__header {
  padding: 22px 22px 16px;
  border-bottom: 1px solid #e3e9e5;
}

.screen-card h3,
.screen-card p {
  margin: 0;
}

.screen-card h3 {
  color: #17202a;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0;
}

.screen-card__header p,
.breakdown-card__toggle p,
.seller-card__intro p {
  margin-top: 4px;
  color: #65707c;
  font-size: 13px;
  font-weight: 700;
}

.input-ledger {
  overflow: hidden;
}

.ledger-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  min-height: 70px;
  padding: 0 22px;
  border-top: 1px solid #e6ece8;
}

.ledger-row:first-of-type {
  border-top: 0;
}

.ledger-row span {
  color: #27323d;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.ledger-row strong {
  color: #111922;
  font-size: 29px;
  font-weight: 900;
  line-height: 1;
}

.ledger-row em {
  padding: 7px 8px;
  border: 1px solid #cfe9db;
  border-radius: 999px;
  background: var(--gk-green-soft);
  color: var(--gk-green-deep);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.vat-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px 22px 20px;
}

.vat-rail span {
  min-height: 38px;
  border: 1px solid #dce5e0;
  border-radius: 999px;
  background: #f8faf8;
  color: #5a6672;
  font-size: 13px;
  font-weight: 900;
  line-height: 38px;
  text-align: center;
}

.vat-rail .is-active {
  border-color: var(--gk-green);
  background: var(--gk-green-soft);
  color: var(--gk-green-deep);
}

.profit-card {
  display: grid;
  grid-template-columns: 0.64fr minmax(0, 1fr) 0.62fr;
  min-height: 286px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(0, 230, 118, 0.12), rgba(255, 255, 255, 0)),
    #152231;
  color: #ffffff;
}

.profit-card__title {
  align-self: center;
  color: #ffffff;
  font-size: 27px;
  font-weight: 900;
  line-height: 0.98;
}

.profit-card__title span {
  display: block;
}

.profit-card__main {
  display: grid;
  align-content: center;
  justify-items: start;
  min-width: 0;
}

.profit-card__main p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 24px;
  font-weight: 900;
}

.profit-card__main strong {
  color: #34ee93;
  font-size: clamp(56px, 5vw, 78px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
}

.profit-card__main span {
  margin-top: 12px;
  color: #bed0dc;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.profit-card__rail {
  display: grid;
  align-content: stretch;
  gap: 12px;
}

.profit-card__rail p {
  display: grid;
  align-content: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.profit-card__rail span {
  color: #9cafbe;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.profit-card__rail strong {
  margin-top: 6px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
}

.breakdown-card {
  overflow: hidden;
}

.breakdown-card__toggle,
.seller-card__intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px;
  border-bottom: 1px solid #e3e9e5;
}

.breakdown-card__toggle span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #dbe5df;
  border-radius: 50%;
  color: #5f6c78;
  font-size: 30px;
  line-height: 1;
}

.breakdown-list p {
  min-height: 48px;
  align-items: center;
  padding: 0 22px;
  border-top: 1px solid #e7ece8;
  color: #33404c;
  font-size: 15px;
  font-weight: 750;
}

.breakdown-list p:first-child {
  border-top: 0;
}

.breakdown-list strong {
  color: #101923;
  font-size: 16px;
  font-weight: 900;
}

.breakdown-list .is-total {
  min-height: 62px;
  background: #f0fbf5;
  color: var(--gk-green-deep);
}

.breakdown-list .is-total span,
.breakdown-list .is-total strong {
  color: var(--gk-green-deep);
  font-size: 19px;
  font-weight: 900;
}

.seller-card {
  overflow: hidden;
}

.seller-card__intro button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #cfe9db;
  border-radius: 8px;
  background: var(--gk-green-soft);
  color: var(--gk-green-deep);
  cursor: default;
  font-size: 22px;
  font-weight: 900;
}

.seller-table {
  width: 100%;
  border-spacing: 0;
  table-layout: fixed;
}

.seller-table th,
.seller-table td {
  height: 44px;
  padding: 0 10px;
  border-top: 1px solid #e7ece8;
  text-align: left;
  white-space: nowrap;
}

.seller-table th {
  color: #697582;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.seller-table td {
  color: #222d38;
  font-size: 13px;
  font-weight: 800;
}

.seller-table th:first-child,
.seller-table td:first-child {
  width: 42px;
  text-align: center;
}

.seller-table th:nth-child(2),
.seller-table td:nth-child(2) {
  width: 110px;
}

.seller-table th:nth-child(3),
.seller-table td:nth-child(3),
.seller-table th:nth-child(4),
.seller-table td:nth-child(4) {
  width: 54px;
}

.seller-table th:nth-child(6),
.seller-table td:nth-child(6) {
  color: var(--gk-green-deep);
}

.seller-table .is-selected td {
  border-top-color: #bdeed2;
  background: #eefcf4;
}

.flow-section {
  position: relative;
  border-bottom: 1px solid var(--gk-line);
  background: #ffffff;
}

.flow-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  padding-block: clamp(44px, 4.4vw, 60px);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  min-height: 176px;
  padding: 22px;
  border: 1px solid #dfe7e3;
  border-radius: 8px;
  background: #fbfcfa;
}

.flow-list span {
  display: block;
  margin-bottom: 28px;
  color: var(--gk-orange);
  font-family: var(--gk-font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.flow-list strong {
  display: block;
  color: #17212b;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.18;
}

.flow-list p {
  margin: 10px 0 0;
  color: #5c6873;
  font-size: 14px;
  font-weight: 650;
}

.final-cta {
  position: relative;
  padding: 22px 28px;
  background: #ffffff;
}

.final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding-block: clamp(38px, 4.4vw, 54px);
  border: 1px solid #24313d;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(0, 230, 118, 0.1), transparent 42%), #151f2a;
  color: #ffffff;
}

.final-cta .section-kicker,
.final-cta h2 {
  color: #ffffff;
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.site-footer {
  border-top: 1px solid var(--gk-line);
  background: #ffffff;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
  color: #5e6873;
  font-size: 14px;
  font-weight: 650;
}

.site-footer a {
  color: #26313d;
  text-decoration: none;
}

@media (max-width: 1180px) {
  .site-nav {
    display: none;
  }

  .hero-section__grid,
  .feature-section__grid,
  .flow-section__inner {
    grid-template-columns: 1fr;
  }

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

  .feature-section__grid {
    min-height: auto;
  }

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

@media (max-width: 760px) {
  .shell {
    padding-inline: 18px;
  }

  .site-header__shell {
    min-height: auto;
    padding-block: 16px;
  }

  .site-header__actions .text-link {
    display: none;
  }

  .brand-link__logo {
    width: 152px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-product {
    grid-template-columns: 1fr;
  }

  .marketplace-preview {
    min-height: 300px;
  }

  .flow-list {
    grid-template-columns: 1fr;
  }

  .profit-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .profit-card__rail {
    grid-template-columns: 1fr 1fr;
  }

  .ledger-row {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 8px;
    padding-block: 16px;
  }

  .seller-card {
    overflow-x: auto;
  }

  .seller-table {
    min-width: 680px;
  }

  .final-cta__inner,
  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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