:root {
  --ink: #0b2147;
  --ink-soft: #19345f;
  --muted: #62708a;
  --blue: #064edb;
  --blue-dark: #06358f;
  --blue-soft: #eef4ff;
  --green: #20a84a;
  --green-dark: #118238;
  --green-soft: #eaf8ef;
  --surface: #ffffff;
  --soft: #f6f9fd;
  --border: #dfe6f0;
  --shadow: 0 20px 54px rgba(16, 36, 72, 0.1);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img,
svg {
  display: block;
}
a,
button,
summary {
  outline-color: var(--blue);
}
.pwa-install-button {
  display: none !important;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--blue-dark);
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid #e5eaf1;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 7px 24px rgba(15, 35, 70, 0.06);
  backdrop-filter: blur(18px) saturate(1.15);
}
.header-inner {
  width: min(1540px, calc(100% - 40px));
  min-height: 84px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 52px);
}
.brand-link img {
  width: 142px;
  max-height: 62px;
  object-fit: contain;
}
.main-nav {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
}
.main-nav a,
.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border-radius: 999px;
  color: #10254a;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  transition: 160ms ease;
}
.main-nav a:hover {
  color: var(--blue);
  background: var(--blue-soft);
  transform: translateY(-1px);
}
.header-cta {
  min-width: 174px;
  color: #ffffff;
  background: linear-gradient(135deg, #25ad4f, #138638);
  box-shadow: 0 8px 18px rgba(20, 139, 60, 0.23);
}
.header-cta:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #2cba58, #0e7730);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 590px;
  margin: 0 6px;
  overflow: hidden;
  isolation: isolate;
  border-radius: 30px 30px 0 0;
  background-color: #063b9b;
  background-image: url("/brand/gallery/gallery-hero-v2.webp");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(2, 24, 78, 0.34) 0,
    rgba(2, 32, 103, 0.12) 42%,
    transparent 64%
  );
}
.hero-inner {
  width: min(1200px, calc(100% - 48px));
  min-height: 590px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 54px 0;
}
.hero-copy {
  width: min(610px, 52%);
  color: #ffffff;
}
.trial-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #21a94b, #17823c);
  box-shadow: 0 8px 20px rgba(8, 87, 45, 0.25);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.02em;
}
.eyebrow {
  margin: 0 0 11px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}
.eyebrow-light {
  color: rgba(255, 255, 255, 0.84);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(44px, 5.4vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-shadow: 0 6px 25px rgba(1, 24, 70, 0.28);
}
h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.hero-lead {
  max-width: 565px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 18px;
  font-weight: 700;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition: 160ms ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #25ad4f, #138638);
  box-shadow: 0 12px 25px rgba(9, 87, 42, 0.26);
}
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.65);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}
.btn-light {
  color: var(--blue-dark);
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(2, 28, 91, 0.18);
}
.hero-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
}

.proof-strip {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}
.proof-inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.proof-item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 22px 20px;
  border-right: 1px solid var(--border);
}
.proof-item:first-child {
  border-left: 1px solid var(--border);
}
.proof-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, var(--blue), var(--blue-dark));
  box-shadow: 0 8px 17px rgba(6, 78, 219, 0.2);
}
.proof-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}
.proof-icon-store {
  background: linear-gradient(145deg, #2877f4, #064edb);
}
.proof-icon-whatsapp {
  background: linear-gradient(145deg, #2ee66f, #128c7e);
  box-shadow: 0 8px 17px rgba(18, 140, 126, 0.22);
}
.proof-icon-calendar {
  background: linear-gradient(145deg, #36c866, #15923e);
  box-shadow: 0 8px 17px rgba(21, 146, 62, 0.2);
}
.proof-icon-mobile {
  background: linear-gradient(145deg, #173b74, #071c3f);
  box-shadow: 0 8px 17px rgba(7, 28, 63, 0.2);
}
.proof-item strong,
.proof-item small {
  display: block;
}
.proof-item strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}
.proof-item small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.section {
  padding: 88px 0;
}
.section-inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}
.section-soft {
  background: linear-gradient(180deg, #f7faff, #ffffff 38%, #f7fbf8 100%);
}
.section-heading {
  max-width: 800px;
  margin-bottom: 42px;
}
.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.section-heading.narrow {
  max-width: 700px;
}
.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}
.intro-section {
  padding: 70px 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: center;
}
.intro-grid h2 {
  margin-bottom: 0;
}
.intro-copy p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 19px;
}
.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}
.text-link:hover {
  gap: 12px;
}

.feature-stories {
  display: grid;
  gap: 28px;
}
.story-card {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: var(--shadow);
}
.story-card.reverse {
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
}
.story-card.reverse .story-copy {
  order: 2;
}
.story-card.reverse .story-visual {
  order: 1;
}
.story-copy {
  position: relative;
  padding: clamp(34px, 5vw, 62px);
}
.story-number {
  position: absolute;
  right: 30px;
  top: 22px;
  color: #eef2f8;
  font-size: 72px;
  font-weight: 950;
  line-height: 1;
}
.story-copy h3 {
  max-width: 560px;
  font-size: clamp(28px, 3vw, 39px);
}
.story-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}
.check-list {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-weight: 750;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 950;
}
.story-visual {
  position: relative;
  min-height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 38px;
  background: linear-gradient(145deg, #e8f1ff 0%, #f6f9ff 50%, #e8f8ee 100%);
}
.story-visual::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border: 52px solid rgba(6, 78, 219, 0.075);
  border-radius: 50%;
}
.phone-mockup {
  position: relative;
  z-index: 2;
  width: min(310px, 94%);
  padding: 15px;
  border: 9px solid #0e2347;
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 28px 45px rgba(10, 39, 84, 0.2);
}
.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 2px 14px;
  color: var(--ink);
  font-size: 11px;
}
.phone-top span {
  width: 34px;
  height: 5px;
  border-radius: 99px;
  background: #dce4f0;
}
.phone-top i {
  color: #94a3b8;
  font-style: normal;
}
.phone-shop {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 8px 3px 11px;
  border-bottom: 1px solid #edf1f6;
}
.phone-shop-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(145deg, var(--blue), #25a951);
  font-size: 9px;
  font-weight: 950;
}
.phone-shop b,
.phone-shop small {
  display: block;
  line-height: 1.2;
}
.phone-shop b {
  font-size: 10px;
}
.phone-shop small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 8px;
}
.phone-shop em {
  padding: 4px 6px;
  border-radius: 99px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
}
.mini-product {
  display: grid;
  grid-template-columns: 48px 1fr 25px;
  gap: 9px;
  align-items: center;
  margin-top: 9px;
  padding: 10px;
  border: 1px solid #e7ebf2;
  border-radius: 15px;
}
.mini-photo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  background: #edf2f7;
  box-shadow: inset 0 0 0 1px rgba(14, 35, 71, 0.08);
}
.mini-product b,
.mini-product small {
  display: block;
  line-height: 1.25;
}
.mini-product b {
  font-size: 10px;
}
.mini-product small {
  margin-top: 4px;
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 900;
}
.mini-product em {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-style: normal;
  font-weight: 900;
}
.mini-cart {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
  padding: 10px 12px;
  border-radius: 12px;
  color: #fff;
  background: var(--blue);
  font-size: 10px;
}
.mini-cart span b,
.mini-cart span small {
  display: block;
}
.mini-cart span small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 8px;
}
.mini-cart strong {
  font-size: 10px;
}
.visual-tag {
  position: absolute;
  z-index: 3;
  padding: 9px 12px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 25px rgba(10, 39, 84, 0.16);
  font-size: 11px;
  font-weight: 900;
}
.tag-green {
  right: 24px;
  bottom: 34px;
  color: var(--green-dark);
}
.tag-blue {
  left: 20px;
  top: 38px;
  color: var(--blue);
}

.chat-visual {
  background: linear-gradient(145deg, #eaf9ef, #f7fcf9);
}
.chat-card {
  position: relative;
  z-index: 2;
  width: min(340px, 95%);
  padding: 18px;
  border-radius: 25px;
  background: #f1f5f3;
  box-shadow: 0 28px 50px rgba(8, 63, 35, 0.18);
}
.chat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 13px;
}
.chat-avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 12px;
  font-weight: 950;
}
.chat-head b,
.chat-head small {
  display: block;
}
.chat-head small {
  color: var(--muted);
  font-size: 10px;
}
.chat-bubble {
  margin-left: 28px;
  padding: 16px;
  display: grid;
  gap: 7px;
  border-radius: 17px 17px 4px 17px;
  color: #183b29;
  background: #d9fdd3;
  font-size: 12px;
  box-shadow: 0 6px 16px rgba(11, 85, 42, 0.08);
}
.chat-action {
  width: fit-content;
  margin: 14px 0 0 auto;
  padding: 9px 13px;
  border-radius: 999px;
  color: #fff;
  background: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
}

.calendar-visual {
  background: linear-gradient(145deg, #eef4ff, #f7f9ff);
}
.calendar-card {
  position: relative;
  z-index: 2;
  width: min(360px, 96%);
  padding: 20px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 50px rgba(10, 39, 84, 0.17);
}
.calendar-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.calendar-title small,
.calendar-title b {
  display: block;
}
.calendar-title small {
  color: var(--muted);
  font-size: 11px;
}
.calendar-title b {
  margin-top: 3px;
  font-size: 14px;
}
.calendar-title span {
  font-size: 25px;
}
.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 16px;
}
.time-grid span {
  padding: 9px 4px;
  border: 1px solid #cfd9ea;
  border-radius: 10px;
  color: var(--ink-soft);
  text-align: center;
  font-size: 11px;
  font-weight: 850;
}
.time-grid .active {
  border-color: var(--blue);
  color: #fff;
  background: var(--blue);
}
.calendar-confirm {
  margin-top: 16px;
  padding: 11px;
  border-radius: 12px;
  color: #fff;
  background: var(--green);
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}

.court-visual {
  background: linear-gradient(145deg, #e8f8ee, #f7fcf9);
}
.court-card {
  position: relative;
  z-index: 2;
  width: min(370px, 96%);
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 50px rgba(8, 63, 35, 0.18);
}
.court-pitch {
  position: relative;
  height: 190px;
  margin: 14px;
  border: 3px solid rgba(255, 255, 255, 0.85);
  border-radius: 15px;
  background: repeating-linear-gradient(
    90deg,
    #159347 0 48px,
    #1aa14f 48px 96px
  );
  box-shadow: inset 0 0 0 9px #168d45;
}
.court-pitch::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.8);
}
.center-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 55px;
  height: 55px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.goal {
  position: absolute;
  top: 34%;
  width: 20px;
  height: 62px;
  border: 2px solid rgba(255, 255, 255, 0.85);
}
.goal.left {
  left: 0;
  border-left: 0;
}
.goal.right {
  right: 0;
  border-right: 0;
}
.court-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 3px 18px 18px;
}
.court-info small,
.court-info b {
  display: block;
}
.court-info small {
  color: var(--muted);
  font-size: 10px;
}
.court-info b {
  margin-top: 3px;
  font-size: 14px;
}
.court-info strong {
  padding: 7px 10px;
  border-radius: 99px;
  color: #fff;
  background: var(--green);
  font-size: 10px;
}

.steps-grid {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
}
.steps-grid li {
  position: relative;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(16, 36, 72, 0.07);
}
.steps-grid li:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 46px;
  right: -16px;
  z-index: 3;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--blue);
  background: #fff;
  font-weight: 950;
}
.step-number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: #e8edf5;
  font-size: 42px;
  font-weight: 950;
}
.step-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 35px;
  border-radius: 18px;
  color: var(--blue);
  background: var(--blue-soft);
}
.step-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.steps-grid h3 {
  font-size: 20px;
}
.steps-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.toolkit-section {
  color: #ffffff;
  background: linear-gradient(135deg, #052a78 0%, #064edb 62%, #0872dd 100%);
}
.toolkit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(44px, 7vw, 90px);
  align-items: center;
}
.toolkit-copy h2,
.toolkit-copy p {
  color: #ffffff;
}
.toolkit-copy > p:not(.eyebrow) {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}
.toolkit-copy .btn {
  margin-top: 10px;
}
.tool-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}
.tool-grid article {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 19px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}
.tool-grid article > span {
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 19px;
}
.tool-grid h3 {
  margin-bottom: 5px;
  color: #fff;
  font-size: 16px;
}
.tool-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
}

.money-section {
  background: #f8fbff;
}
.money-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 70px;
  align-items: center;
}
.money-visual {
  position: relative;
  min-height: 350px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(145deg, #e8f1ff, #e7f8ed);
}
.money-ring {
  position: absolute;
  border: 34px solid rgba(6, 78, 219, 0.08);
  border-radius: 50%;
}
.ring-one {
  width: 270px;
  height: 270px;
}
.ring-two {
  width: 390px;
  height: 390px;
  border-width: 2px;
}
.wallet-card {
  position: relative;
  z-index: 2;
  width: min(360px, 86%);
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 26px;
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 25px 50px rgba(13, 43, 91, 0.17);
  transform: rotate(-3deg);
}
.wallet-mark {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  font-size: 28px;
  font-weight: 950;
}
.wallet-card small,
.wallet-card b {
  display: block;
}
.wallet-card small {
  color: var(--muted);
  font-size: 12px;
}
.wallet-card b {
  margin-top: 4px;
  font-size: 18px;
}
.money-copy > p:not(.eyebrow):not(.small-note) {
  color: var(--muted);
  font-size: 18px;
}
.payment-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0;
}
.payment-pills span {
  padding: 9px 13px;
  border: 1px solid #b9cae6;
  border-radius: 999px;
  color: var(--blue-dark);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}
.small-note {
  margin-bottom: 0;
  padding-left: 13px;
  border-left: 3px solid var(--green);
  color: var(--muted);
  font-size: 13px;
}

.plan-section {
  background: #ffffff;
}
.trial-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin-bottom: 84px;
  padding: clamp(32px, 5vw, 56px);
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(120deg, #06358f, #064edb 56%, #18a54a 150%);
  box-shadow: 0 24px 55px rgba(6, 78, 219, 0.2);
}
.trial-kicker {
  display: block;
  margin-bottom: 7px;
  color: #9ef1b4;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.trial-banner h2,
.trial-banner p {
  color: #fff;
}
.trial-banner h2 {
  max-width: 760px;
  margin-bottom: 11px;
}
.trial-banner p {
  max-width: 780px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}
.plan-heading {
  max-width: 760px;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.plan-card {
  position: relative;
  min-height: 420px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(16, 36, 72, 0.07);
}
.plan-card.recommended {
  border: 2px solid var(--green);
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(18, 132, 56, 0.14);
}
.plan-card.premium {
  color: #fff;
  border-color: #09244d;
  background: linear-gradient(155deg, #102c58, #071831);
}
.plan-label {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.premium .plan-label {
  color: #dbe7ff;
  background: rgba(255, 255, 255, 0.11);
}
.recommended-pill {
  position: absolute;
  top: 26px;
  right: 24px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 11px;
  font-weight: 950;
}
.plan-card h3 {
  font-size: 26px;
}
.plan-card > p {
  color: var(--muted);
}
.premium h3,
.premium p,
.premium li {
  color: #fff;
}
.premium > p {
  color: rgba(255, 255, 255, 0.68);
}
.check-list.compact {
  gap: 13px;
  margin-top: 26px;
}
.modules-note {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 22px;
  border: 1px solid #b8dfc4;
  border-radius: 20px;
  background: var(--green-soft);
}
.modules-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: var(--green);
  font-size: 24px;
  font-weight: 950;
}
.modules-note strong {
  color: var(--green-dark);
}
.modules-note p {
  margin: 3px 0 0;
  color: #3e6950;
  font-size: 13px;
}

.faq-section {
  border-top: 1px solid var(--border);
  background: var(--soft);
}
.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(45px, 8vw, 105px);
  align-items: start;
}
.faq-intro {
  position: sticky;
  top: 118px;
}
.faq-intro > p:not(.eyebrow) {
  color: var(--muted);
}
.faq-list {
  display: grid;
  gap: 11px;
}
.faq-list details {
  padding: 0 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(16, 36, 72, 0.045);
}
.faq-list summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  color: var(--blue);
  font-size: 22px;
  transition: transform 160ms ease;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list details p {
  margin: -2px 0 22px;
  color: var(--muted);
}

.final-cta {
  margin: 6px;
  padding: 96px 20px;
  border-radius: 0 0 30px 30px;
  color: #fff;
  background: linear-gradient(135deg, #05265f, #064edb 66%, #0872dd);
  text-align: center;
}
.final-cta-inner {
  width: min(760px, 100%);
  margin: 0 auto;
}
.final-cta h2,
.final-cta p {
  color: #fff;
}
.final-cta > div > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}
.centered-actions {
  justify-content: center;
  margin-top: 26px;
}

footer {
  padding: 34px 0;
  color: #cbd5e1;
  background: #071329;
}
.footer-inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-inner p {
  margin: 0;
  font-size: 13px;
}
.footer-links {
  display: flex;
  gap: 16px;
}
.footer-links a {
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 1080px) {
  .main-nav {
    display: none;
  }
  .header-inner {
    grid-template-columns: 1fr auto;
  }
  .proof-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }
  .story-card,
  .story-card.reverse {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.8fr);
  }
  .toolkit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: 560px;
    background-position: 58% bottom;
  }
  .hero::after {
    background: linear-gradient(
      90deg,
      rgba(2, 24, 78, 0.72) 0,
      rgba(2, 32, 103, 0.48) 60%,
      rgba(2, 32, 103, 0.18)
    );
  }
  .hero-inner {
    min-height: 560px;
  }
  .hero-copy {
    width: min(620px, 78%);
  }
  .intro-grid,
  .story-card,
  .story-card.reverse,
  .money-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .story-card.reverse .story-copy,
  .story-card.reverse .story-visual {
    order: initial;
  }
  .story-visual {
    min-height: 390px;
  }
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .steps-grid li:nth-child(2)::after {
    display: none;
  }
  .plans-grid {
    grid-template-columns: 1fr;
  }
  .plan-card {
    min-height: 0;
  }
  .plan-card.recommended {
    transform: none;
  }
  .trial-banner {
    grid-template-columns: 1fr;
  }
  .trial-banner .btn {
    justify-self: start;
  }
  .faq-intro {
    position: static;
  }
}

@media (max-width: 600px) {
  .header-inner {
    width: calc(100% - 24px);
    min-height: 70px;
    gap: 10px;
  }
  .brand-link img {
    width: 112px;
    max-height: 52px;
  }
  .header-cta {
    min-width: 0;
    min-height: 40px;
    padding: 8px 12px;
    font-size: 11px;
  }
  .hero {
    min-height: 620px;
    margin: 0;
    border-radius: 0;
    background-position: 61% bottom;
  }
  .hero::after {
    background: linear-gradient(
      90deg,
      rgba(1, 20, 67, 0.82),
      rgba(2, 36, 109, 0.58) 74%,
      rgba(2, 36, 109, 0.28)
    );
  }
  .hero-inner {
    width: calc(100% - 32px);
    min-height: 620px;
    padding: 42px 0 48px;
    align-items: flex-start;
  }
  .hero-copy {
    width: 100%;
  }
  h1 {
    font-size: clamp(40px, 12vw, 52px);
  }
  .hero-lead {
    font-size: 16px;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .proof-inner {
    width: 100%;
    grid-template-columns: 1fr;
  }
  .proof-item,
  .proof-item:first-child {
    padding: 16px 20px;
    border: 0;
    border-bottom: 1px solid var(--border);
  }
  .proof-item:last-child {
    border-bottom: 0;
  }
  .section {
    padding: 64px 0;
  }
  .section-inner {
    width: calc(100% - 30px);
  }
  .section-heading {
    margin-bottom: 30px;
  }
  .intro-section {
    padding: 56px 0;
  }
  .intro-grid {
    gap: 25px;
  }
  .intro-copy p {
    font-size: 16px;
  }
  .story-card {
    min-height: 0;
    border-radius: 23px;
  }
  .story-copy {
    padding: 30px 24px;
  }
  .story-number {
    top: 17px;
    right: 18px;
    font-size: 55px;
  }
  .story-copy h3 {
    font-size: 28px;
  }
  .story-copy > p:not(.eyebrow) {
    font-size: 15px;
  }
  .story-visual {
    min-height: 330px;
    padding: 24px;
  }
  .tag-green {
    right: 12px;
    bottom: 18px;
  }
  .tag-blue {
    left: 12px;
    top: 20px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid li {
    min-height: 0;
  }
  .steps-grid li::after {
    display: none !important;
  }
  .step-icon {
    margin-bottom: 24px;
  }
  .tool-grid {
    grid-template-columns: 1fr;
  }
  .money-visual {
    min-height: 290px;
  }
  .trial-banner {
    margin-bottom: 64px;
    padding: 29px 22px;
    border-radius: 24px;
  }
  .trial-banner .btn {
    justify-self: stretch;
  }
  .plan-card {
    padding: 25px;
  }
  .modules-note {
    align-items: flex-start;
  }
  .faq-list details {
    padding: 0 17px;
  }
  .faq-list summary {
    min-height: 62px;
    font-size: 14px;
  }
  .final-cta {
    margin: 0;
    padding: 72px 16px;
    border-radius: 0;
  }
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-links {
    flex-wrap: wrap;
  }
}

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

/* Experiencia comercial 2026: adaptaciones livianas inspiradas en ReactBits. */
@property --electric-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.hero-inner {
  position: relative;
}
.hero-copy {
  position: relative;
  z-index: 3;
}
.trial-lanyard {
  position: absolute;
  z-index: 4;
  top: 0;
  right: clamp(10px, 2.5vw, 46px);
  width: 230px;
  height: 340px;
  color: var(--ink);
  text-decoration: none;
  perspective: 900px;
}
.lanyard-cord {
  position: absolute;
  top: -40px;
  left: 50%;
  width: 92px;
  height: 142px;
  border-right: 7px solid #0e2c66;
  border-left: 7px solid #19ad51;
  border-radius: 0 0 50px 50px;
  transform: translateX(-50%);
  filter: drop-shadow(0 5px 5px rgba(1, 20, 61, 0.35));
}
.lanyard-clip {
  position: absolute;
  top: 88px;
  left: 50%;
  z-index: 2;
  width: 42px;
  height: 31px;
  border: 5px solid #dbe7f3;
  border-radius: 10px 10px 14px 14px;
  background: #15366e;
  transform: translateX(-50%);
  box-shadow: 0 6px 13px rgba(3, 26, 69, 0.35);
}
.lanyard-pass {
  position: absolute;
  top: 112px;
  left: 50%;
  width: 218px;
  min-height: 202px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 22px 17px 17px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 23px 45px rgba(4, 28, 75, 0.28);
  transform: translateX(-50%) rotate(2deg);
  transform-origin: 50% -10px;
  animation: lanyard-sway 5.4s ease-in-out infinite;
  backdrop-filter: blur(12px);
}
.lanyard-person {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(145deg, #2bc55c, #12883a);
  box-shadow: 0 10px 18px rgba(18, 136, 58, 0.24);
}
.lanyard-person svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}
.lanyard-pass strong,
.lanyard-pass > span:not(.lanyard-person) {
  display: block;
  text-align: center;
  line-height: 1.1;
}
.lanyard-pass strong {
  color: #0c2b60;
  font-size: 17px;
  letter-spacing: 0.015em;
}
.lanyard-pass > span:not(.lanyard-person) {
  margin-top: 6px;
  color: #e11d48;
  font-size: 15px;
  font-weight: 950;
}
.lanyard-pass small {
  margin-top: 14px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
}
.trial-lanyard:hover .lanyard-pass {
  animation-play-state: paused;
  transform: translateX(-50%) rotate(-2deg) translateY(-4px);
}
@keyframes lanyard-sway {
  0%, 100% { transform: translateX(-50%) rotate(2deg); }
  50% { transform: translateX(-50%) rotate(-2.5deg) translateY(3px); }
}

.sales-carousel {
  overflow: hidden;
  border: 1px solid #d5deeb;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 24px 58px rgba(15, 44, 91, 0.13);
  perspective: 1400px;
}
.sales-carousel:focus-visible {
  outline: 3px solid rgba(6, 78, 219, 0.3);
  outline-offset: 5px;
}
.carousel-topbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, #f8fbff, #edf7f1);
}
.carousel-topbar > div:first-child {
  display: grid;
  gap: 3px;
}
.carousel-kicker {
  color: var(--blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.carousel-topbar strong {
  color: var(--ink);
  font-size: 15px;
}
.carousel-drag-hint {
  margin-top: 3px;
  color: #55708f;
  font-size: 10px;
  font-weight: 850;
}
.carousel-controls {
  display: flex;
  gap: 9px;
}
.carousel-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid #cbd7e8;
  border-radius: 50%;
  cursor: pointer;
  color: var(--blue);
  background: #fff;
  font-size: 20px;
  font-weight: 900;
  transition: 160ms ease;
}
.carousel-controls button:hover {
  border-color: var(--blue);
  color: #fff;
  background: var(--blue);
  transform: translateY(-2px);
}
.sales-viewport {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
.sales-viewport img {
  pointer-events: none;
  -webkit-user-drag: none;
}
.sales-carousel.is-dragging .sales-viewport {
  cursor: grabbing;
}
.sales-carousel.is-dragging .sales-track {
  transition: none;
}
.sales-track {
  display: flex;
  align-items: stretch;
  transition: transform 680ms cubic-bezier(0.22, 0.78, 0.22, 1);
  will-change: transform;
}
.sales-slide {
  min-width: 100%;
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  opacity: 0.55;
  transform: scale(0.975) rotateY(-1.5deg);
  transform-origin: center;
  transition: opacity 360ms ease, transform 520ms cubic-bezier(0.22, 0.78, 0.22, 1);
}
.sales-slide.is-active {
  opacity: 1;
  transform: scale(1) rotateY(0);
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 17px;
  border-top: 1px solid var(--border);
}
.carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  cursor: pointer;
  background: #b8c5d8;
  transition: 220ms ease;
}
.carousel-dots button.is-active {
  width: 34px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.pos-visual {
  background: linear-gradient(145deg, #eaf3ff, #eaf9ef);
}
.pos-terminal {
  position: relative;
  z-index: 2;
  width: min(520px, 98%);
  overflow: hidden;
  border: 9px solid #102b57;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 28px 48px rgba(8, 39, 82, 0.2);
}
.pos-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 15px;
  color: #fff;
  background: linear-gradient(100deg, #082b68, #0752c7);
}
.pos-head small,
.pos-head b {
  display: block;
}
.pos-head small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
}
.pos-head b {
  font-size: 12px;
}
.pos-head > span {
  padding: 5px 8px;
  border-radius: 99px;
  color: #0b7730;
  background: #c8f7d5;
  font-size: 8px;
  font-weight: 950;
}
.pos-categories {
  display: flex;
  gap: 7px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  background: #f7faff;
}
.pos-categories span {
  padding: 5px 8px;
  border-radius: 8px;
  color: #114082;
  background: #e5efff;
  font-size: 8px;
  font-weight: 900;
}
.pos-body {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  min-height: 210px;
}
.pos-products {
  padding: 10px;
  display: grid;
  align-content: start;
  gap: 8px;
  border-right: 1px solid var(--border);
}
.pos-products > span {
  display: grid;
  grid-template-columns: 25px 1fr auto;
  align-items: center;
  gap: 7px;
  padding: 9px;
  border: 1px solid #e4e9f1;
  border-radius: 10px;
  font-size: 9px;
}
.pos-products i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-style: normal;
  font-weight: 900;
}
.pos-products strong {
  color: var(--green-dark);
}
.pos-total {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 14px 10px;
  text-align: center;
}
.pos-total small {
  color: var(--muted);
  font-size: 9px;
}
.pos-total > b {
  margin: 7px 0 15px;
  color: var(--ink);
  font-size: 24px;
}
.pos-total div {
  display: grid;
  gap: 6px;
}
.pos-total div span {
  padding: 7px 10px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-size: 8px;
  font-weight: 950;
}
.pos-total div span:last-child {
  background: var(--blue);
}

.activity-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: clamp(30px, 7vw, 85px);
  align-items: end;
  margin: 90px 0 34px;
}
.activity-heading h2,
.activity-heading p {
  margin-bottom: 0;
}
.activity-heading > p {
  color: var(--muted);
  font-size: 17px;
}
.activity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.activity-card {
  --spot-x: 50%;
  --spot-y: 20%;
  position: relative;
  min-height: 640px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid #d8e2ef;
  border-radius: 30px;
  background: linear-gradient(155deg, #fff, #f5f9ff);
  box-shadow: 0 20px 48px rgba(13, 45, 90, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.activity-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle 240px at var(--spot-x) var(--spot-y), rgba(50, 128, 255, 0.2), transparent 72%);
}
.court-activity-card::before {
  background: radial-gradient(circle 250px at var(--spot-x) var(--spot-y), rgba(33, 189, 87, 0.22), transparent 72%);
}
.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 58px rgba(13, 45, 90, 0.15);
}
.activity-copy,
.activity-visual {
  position: relative;
  z-index: 1;
}
.activity-copy {
  padding: 36px 38px 24px;
}
.activity-label {
  display: inline-flex;
  margin-bottom: 17px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}
.court-activity-card .activity-label {
  color: var(--green-dark);
  background: var(--green-soft);
}
.activity-copy h3 {
  font-size: clamp(27px, 3vw, 38px);
}
.activity-copy > p {
  color: var(--muted);
}
.activity-visual {
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: 28px;
  background: linear-gradient(145deg, rgba(228, 239, 255, 0.8), rgba(238, 250, 242, 0.85));
}
.activity-visual.court-visual::before {
  display: none;
}

.stack-section {
  overflow: clip;
  background: linear-gradient(180deg, #fff, #f2f7ff 40%, #f2fbf5);
}
.scroll-stack {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 0 0 16vh;
  display: grid;
  list-style: none;
}
.stack-card {
  position: sticky;
  top: calc(104px + (var(--stack-index) * 13px));
  min-height: 365px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 25px;
  align-items: center;
  margin-bottom: 90px;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid #d5dfed;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 26px 62px rgba(11, 38, 82, 0.16);
  transform: scale(0.985);
  transition: transform 360ms ease, box-shadow 360ms ease;
  backdrop-filter: blur(16px);
}
.stack-card.is-current {
  box-shadow: 0 32px 70px rgba(6, 78, 219, 0.2);
  transform: scale(1);
}
.stack-card:nth-child(2) { background: rgba(245, 250, 255, 0.98); }
.stack-card:nth-child(3) { background: rgba(245, 253, 248, 0.98); }
.stack-card:nth-child(4) { background: rgba(241, 247, 255, 0.98); }
.stack-card:nth-child(5) { background: rgba(242, 251, 246, 0.98); }
.stack-step {
  display: inline-flex;
  margin-bottom: 15px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.stack-copy h3 {
  max-width: 580px;
  font-size: clamp(28px, 3.6vw, 43px);
}
.stack-copy > p {
  max-width: 620px;
  color: var(--muted);
  font-size: 16px;
}
.stack-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.stack-chips span {
  padding: 7px 10px;
  border: 1px solid #cbd8ea;
  border-radius: 999px;
  color: var(--ink-soft);
  background: #fff;
  font-size: 11px;
  font-weight: 850;
}
.stack-preview {
  position: relative;
  min-height: 240px;
  display: grid;
  place-content: center;
  gap: 10px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid #d7e1ef;
  border-radius: 25px;
  background: linear-gradient(145deg, #e9f2ff, #e9f9ef);
  box-shadow: inset 0 0 35px rgba(255, 255, 255, 0.7);
}
.preview-profile {
  grid-template-columns: auto 1fr;
  align-items: center;
}
.preview-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(145deg, var(--blue), var(--green));
  box-shadow: 0 14px 25px rgba(6, 78, 219, 0.2);
}
.preview-icon svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.preview-profile small,
.preview-profile strong,
.preview-profile div > span {
  display: block;
}
.preview-profile small,
.preview-profile div > span {
  color: var(--muted);
  font-size: 11px;
}
.preview-profile strong {
  margin: 4px 0;
  font-size: 20px;
}
.preview-catalog {
  align-content: center;
}
.catalog-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid #dde6f1;
  border-radius: 13px;
  background: #fff;
  font-size: 11px;
}
.catalog-row i {
  color: var(--blue);
  font-style: normal;
  font-weight: 950;
}
.catalog-row strong {
  color: var(--green-dark);
}
.preview-sales {
  align-content: center;
}
.channel-card {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(14, 48, 92, 0.08);
}
.channel-card > span {
  font-size: 25px;
}
.channel-card small,
.channel-card b {
  display: block;
}
.channel-card small {
  color: var(--muted);
  font-size: 9px;
}
.channel-card b {
  font-size: 13px;
}
.channel-card em {
  padding: 5px 8px;
  border-radius: 99px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 9px;
  font-style: normal;
  font-weight: 950;
}
.preview-payment {
  grid-template-columns: 86px 1fr auto;
  align-items: center;
}
.qr-mini {
  width: 82px;
  height: 82px;
  padding: 11px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  border-radius: 16px;
  background: #fff;
}
.qr-mini span {
  border: 5px solid var(--blue-dark);
}
.preview-payment small,
.preview-payment strong,
.preview-payment div > span {
  display: block;
}
.preview-payment small,
.preview-payment div > span {
  color: var(--muted);
  font-size: 10px;
}
.preview-payment strong {
  font-size: 25px;
}
.payment-check {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
}
.preview-dashboard {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
}
.metric {
  padding: 14px;
  border: 1px solid #dbe4ef;
  border-radius: 14px;
  background: #fff;
}
.metric small,
.metric strong {
  display: block;
}
.metric small {
  color: var(--muted);
  font-size: 9px;
}
.metric strong {
  margin-top: 5px;
  color: var(--ink);
  font-size: 15px;
}

.payment-stage {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 34px;
  border-radius: 31px;
  color: #fff;
  background: linear-gradient(145deg, #061d4d, #064edb 72%, #12a54b 145%);
  box-shadow: 0 25px 55px rgba(6, 78, 219, 0.2);
  text-align: center;
}
.payment-stage .money-ring {
  border-color: rgba(255, 255, 255, 0.09);
}
.payment-stage > p,
.pay-with-line,
.payment-mini-pills {
  position: relative;
  z-index: 2;
}
.payment-stage > p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pay-with-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  flex-wrap: wrap;
  font-size: clamp(31px, 4vw, 49px);
  font-weight: 950;
  line-height: 1.08;
}
.rotating-payment {
  min-width: 7.8em;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  padding: 10px 16px;
  border-radius: 17px;
  color: #062a64;
  background: linear-gradient(135deg, #9fffc1, #53efda);
  box-shadow: 0 13px 32px rgba(28, 248, 166, 0.22);
}
.rotating-payment b {
  display: block;
  font: inherit;
  white-space: nowrap;
  transition: opacity 220ms ease, transform 220ms ease, filter 220ms ease;
}
.rotating-payment.is-leaving b {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(-80%) rotateX(45deg);
}
.rotating-payment.is-entering b {
  animation: rotating-word-in 340ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes rotating-word-in {
  from { opacity: 0; filter: blur(5px); transform: translateY(80%) rotateX(-45deg); }
  to { opacity: 1; filter: blur(0); transform: translateY(0) rotateX(0); }
}
.payment-mini-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin-top: 25px;
}
.payment-mini-pills span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  font-size: 10px;
  font-weight: 850;
}

.trial-contact {
  display: inline-flex;
  margin-top: 14px;
  color: #b9ffcb;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}
.final-cta {
  margin: 0;
  padding: 92px 20px;
  border-radius: 0;
  color: #fff;
  background: linear-gradient(180deg, #f6f9fd, #fff);
}
.final-cta-inner {
  width: min(900px, 100%);
  margin: 0 auto;
}
.electric-card {
  position: relative;
  isolation: isolate;
  padding: clamp(38px, 6vw, 64px);
  border: 1px solid rgba(91, 246, 255, 0.7);
  border-radius: 30px;
  background: linear-gradient(135deg, #041b4d, #064edb 68%, #058b64);
  box-shadow: 0 28px 70px rgba(6, 55, 142, 0.23);
}
.electric-card::before {
  content: "";
  position: absolute;
  inset: -4px;
  z-index: 1;
  padding: 4px;
  border-radius: 34px;
  background: conic-gradient(from var(--electric-angle, 0deg), transparent 0 12%, #5ff6ff 18%, #25ef86 28%, transparent 38% 58%, #6ac7ff 66%, #25ef86 76%, transparent 88%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: electric-spin 3.2s linear infinite;
  pointer-events: none;
}
.electric-card::after {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: -1;
  border-radius: 42px;
  background: radial-gradient(circle at 20% 0, rgba(95, 246, 255, 0.55), transparent 34%), radial-gradient(circle at 85% 100%, rgba(37, 239, 134, 0.45), transparent 38%);
  filter: blur(16px);
  opacity: 0.7;
  animation: electric-flicker 1.8s ease-in-out infinite alternate;
}
.electric-card > * {
  position: relative;
  z-index: 2;
}
@keyframes electric-spin {
  to { --electric-angle: 360deg; }
}
@keyframes electric-flicker {
  0% { opacity: 0.5; transform: scale(0.995); }
  100% { opacity: 0.9; transform: scale(1.01); }
}
.final-cta h2 {
  font-size: clamp(36px, 5vw, 56px);
}
.final-cta > div > p:not(.eyebrow) {
  max-width: 740px;
  margin-right: auto;
  margin-left: auto;
}
.final-benefits {
  display: flex;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
  margin: 24px 0 3px;
}
.final-benefits span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #e9fff0;
  background: rgba(255, 255, 255, 0.1);
  font-size: 11px;
  font-weight: 900;
}
.back-gallery-link {
  display: inline-flex;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}
.back-gallery-link:hover {
  color: #fff;
}

@media (max-width: 1080px) {
  .trial-lanyard {
    right: 0;
    transform: scale(0.86);
    transform-origin: top right;
  }
  .activity-grid {
    grid-template-columns: 1fr;
  }
  .activity-card {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
    grid-template-rows: 1fr;
  }
}

@media (max-width: 820px) {
  .trial-lanyard {
    opacity: 0.92;
    transform: scale(0.72);
  }
  .sales-slide {
    grid-template-columns: 1fr;
  }
  .sales-slide .story-visual {
    min-height: 390px;
  }
  .activity-heading,
  .activity-card,
  .stack-card {
    grid-template-columns: 1fr;
  }
  .activity-card {
    grid-template-rows: auto auto;
  }
  .stack-card {
    top: calc(92px + (var(--stack-index) * 10px));
  }
  .payment-stage {
    order: initial;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 760px;
  }
  .hero-inner {
    min-height: 760px;
  }
  .hero-copy {
    padding-bottom: 160px;
  }
  .trial-lanyard {
    top: auto;
    right: 6px;
    bottom: 42px;
    height: 250px;
    transform: scale(0.66);
    transform-origin: bottom right;
  }
  .lanyard-cord {
    display: none;
  }
  .lanyard-clip {
    top: 4px;
  }
  .lanyard-pass {
    top: 29px;
  }
  .carousel-topbar {
    padding: 13px 15px;
  }
  .carousel-topbar strong {
    font-size: 12px;
  }
  .carousel-drag-hint {
    font-size: 9px;
  }
  .carousel-controls button {
    width: 38px;
    height: 38px;
  }
  .sales-carousel {
    border-radius: 23px;
  }
  .sales-slide .story-visual {
    min-height: 345px;
  }
  .pos-terminal {
    border-width: 6px;
  }
  .pos-body {
    grid-template-columns: 1fr;
  }
  .pos-products {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .pos-total {
    min-height: 130px;
  }
  .pos-total div {
    grid-template-columns: repeat(2, 1fr);
  }
  .activity-heading {
    margin-top: 66px;
  }
  .activity-copy {
    padding: 28px 23px 18px;
  }
  .activity-visual {
    min-height: 270px;
    padding: 18px;
  }
  .scroll-stack {
    padding-bottom: 12vh;
  }
  .stack-card {
    position: sticky;
    top: calc(78px + (var(--stack-index) * 7px));
    min-height: 0;
    margin-bottom: 66px;
    padding: 22px 19px;
    border-radius: 24px;
    transform: scale(0.985);
  }
  .stack-card.is-current {
    transform: scale(1);
  }
  .stack-copy h3 {
    font-size: 25px;
  }
  .stack-copy > p {
    font-size: 14px;
  }
  .stack-chips {
    margin-top: 15px;
  }
  .stack-preview {
    min-height: 180px;
  }
  .preview-payment {
    grid-template-columns: 70px 1fr auto;
  }
  .qr-mini {
    width: 66px;
    height: 66px;
    padding: 8px;
  }
  .pay-with-line {
    flex-direction: column;
    font-size: 31px;
  }
  .rotating-payment {
    min-width: min(100%, 8.5em);
    font-size: 27px;
  }
  .final-cta {
    padding: 70px 14px;
  }
  .electric-card {
    padding: 38px 20px;
    border-radius: 25px;
  }
  .final-benefits {
    align-items: center;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lanyard-pass,
  .electric-card::before,
  .electric-card::after,
  .rotating-payment.is-entering b {
    animation: none !important;
  }
  .sales-track,
  .rotating-payment b {
    transition: none !important;
  }
  .stack-card {
    transform: none;
  }
}
