:root {
  --green: #6BBB42;
  --green-strong: #1FA514;
  --deep: #01402A;
  --ink: #1D302A;
  --muted: #53655F;
  --pink: #FEB0AE;
  --pink-strong: #EE5D75;
  --cream: #FBF8EF;
  --paper: #F7FBF2;
  --line: rgba(1, 64, 42, 0.14);
  --white: #FFFFFF;
  --blue: #2678F2;
  --amber: #F7A21C;
  --shadow: 0 24px 65px rgba(1, 64, 42, 0.14);
  --soft-shadow: 0 14px 35px rgba(1, 64, 42, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 10px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 40px));
  min-height: 74px;
  margin: 10px auto 0;
  padding: 12px 20px;
  border-radius: 24px;
  background: rgba(247, 251, 242, 0.82);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 152px;
  height: auto;
}

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

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid rgba(107, 187, 66, 0.42);
  border-radius: 999px;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.66);
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(1, 64, 42, 0.08);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(430px, 520px) minmax(0, 1fr);
  grid-template-rows: minmax(560px, auto) auto;
  grid-template-areas:
    "copy scene"
    "features scene";
  column-gap: 34px;
  row-gap: 30px;
  align-items: start;
  width: min(1180px, calc(100% - 40px));
  min-height: 800px;
  margin: 0 auto;
  padding: 58px 48px 36px;
  border-radius: 0 0 34px 34px;
  overflow: visible;
}

.hero-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -2;
  width: 100vw;
  overflow: hidden;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 76% 17%, rgba(107, 187, 66, 0.22), transparent 27%),
    radial-gradient(circle at 54% 74%, rgba(254, 176, 174, 0.18), transparent 24%),
    radial-gradient(circle at 10% 14%, rgba(255, 248, 230, 0.9), transparent 31%),
    linear-gradient(115deg, #FCF8EF 0%, #F8FBF2 44%, #EAF8E2 100%);
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-bg::before {
  right: max(-110px, calc((100vw - 1180px) / -2 - 42px));
  bottom: 86px;
  width: min(520px, 35vw);
  height: min(520px, 35vw);
  border-radius: 46% 0 0 46%;
  background:
    radial-gradient(circle at 34% 34%, rgba(107, 187, 66, 0.2), transparent 34%),
    linear-gradient(150deg, rgba(107, 187, 66, 0.22), rgba(107, 187, 66, 0.08));
  filter: blur(0.2px);
}

.hero-bg::after {
  right: max(72px, calc((100vw - 1180px) / 2 + 90px));
  top: 118px;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.52), transparent 39%),
    radial-gradient(circle at center, rgba(107, 187, 66, 0.18), transparent 68%);
}

.hero-copy {
  grid-area: copy;
  position: relative;
  z-index: 4;
  width: 100%;
  padding-left: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 48px;
  margin-bottom: 40px;
  padding: 8px 24px 8px 12px;
  border: 1px solid rgba(107, 187, 66, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(1, 64, 42, 0.06);
  font-size: 17px;
  font-weight: 400;
}

.shield-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: #0BBE3E;
  color: white;
  font-size: 17px;
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(56px, 5.3vw, 66px);
  line-height: 1.05;
  font-weight: 700;
}

.hero h1 span {
  position: relative;
  display: inline-block;
  color: var(--green-strong);
}

.hero h1 span::after {
  content: "";
  position: absolute;
  left: 5px;
  right: 2px;
  bottom: -6px;
  height: 7px;
  border-radius: 999px;
  background: rgba(107, 187, 66, 0.62);
  transform: rotate(-1deg);
}

.hero-text {
  width: min(485px, 100%);
  margin: 34px 0 0;
  color: #364942;
  font-size: 22px;
  line-height: 1.42;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: white;
  background: linear-gradient(180deg, #39C72D, #18AA0C);
  box-shadow: 0 18px 35px rgba(31, 165, 20, 0.28);
}

.btn-primary span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--deep);
  background: white;
  font-size: 22px;
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(107, 187, 66, 0.46);
}

.trust-row {
  display: none;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.trust-row b {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #55D562;
  color: white;
}

.hero-scene {
  grid-area: scene;
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  height: 655px;
  align-self: start;
}

.balance-panel,
.transactions-panel {
  position: absolute;
  border: 1px solid rgba(1, 64, 42, 0.09);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.balance-panel {
  top: 0;
  right: 0;
  width: min(500px, 100%);
  min-height: 462px;
  padding: 30px;
  transform: rotate(1.4deg);
}

.gpt-mini-bubble {
  position: absolute;
  top: 152px;
  right: -34px;
  z-index: 10;
  width: 218px;
  padding: 14px;
  border: 1px solid rgba(1, 64, 42, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(1, 64, 42, 0.12);
  transform: rotate(3deg);
}

.gpt-mini-bubble span {
  display: inline-flex;
  margin-bottom: 7px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--deep);
  background: #DDF8D2;
  font-size: 11px;
  font-weight: 600;
}

.gpt-mini-bubble p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.gpt-mini-bubble strong {
  color: var(--deep);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
}

.panel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.panel-top p,
.sim-result p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
}

.panel-top strong {
  color: #14221F;
  font-size: 38px;
  line-height: 1;
  font-weight: 400;
}

.positive {
  display: inline-flex;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 12px;
  background: #E7F6EA;
  color: #088B35;
  font-weight: 400;
}

.ring {
  position: relative;
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  flex: 0 0 auto;
}

.ring svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-88deg);
}

.ring circle {
  fill: none;
  stroke-width: 11;
  stroke: rgba(107, 187, 66, 0.16);
}

.ring circle:last-child {
  stroke: #29C540;
  stroke-dasharray: 228 308;
  stroke-linecap: round;
}

.ring div {
  position: relative;
  text-align: center;
}

.ring strong {
  display: block;
  font-size: 26px;
  line-height: 1;
}

.ring span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.15;
  font-weight: 500;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.metric {
  display: grid;
  grid-template-columns: 38px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  min-height: 76px;
  padding: 14px;
  border: 1px solid rgba(1, 64, 42, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.72);
}

.metric span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  color: #0C9838;
  background: #BFF4D0;
  font-size: 24px;
  font-weight: 400;
}

.metric.card span {
  color: var(--blue);
  background: #DDEAFF;
}

.metric.invoice span {
  color: var(--amber);
  background: #FFE8BD;
}

.metric.gift span {
  color: #7A39E7;
  background: #EADDFF;
}

.metric.all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  grid-template-columns: none;
  color: var(--deep);
  background: rgba(247, 251, 242, 0.92);
}

.metric.all p {
  color: var(--ink);
  font-weight: 600;
}

.metric.all strong {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: var(--deep);
  font-size: 28px;
  line-height: 1;
}

.metric p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.metric strong {
  color: #13241F;
  font-size: 15px;
  font-weight: 400;
}

.mascot {
  position: absolute;
  left: -118px;
  bottom: 18px;
  z-index: 8;
  width: 360px;
  filter: drop-shadow(0 24px 28px rgba(1, 64, 42, 0.18));
}

.transactions-panel {
  right: 0;
  top: auto;
  bottom: 14px;
  z-index: 9;
  width: min(420px, 84%);
  padding: 22px;
  transform: rotate(1.2deg);
}

.transactions-panel h2 {
  margin: 0 0 14px;
  color: #182521;
  font-size: 18px;
  line-height: 1.1;
}

.transactions-panel ul {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.transactions-panel li {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid rgba(1, 64, 42, 0.09);
}

.transactions-panel li:last-child {
  border-bottom: 0;
}

.transactions-panel li > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  font-weight: 400;
}

.down {
  color: #F23068;
  background: #FFD6E0;
}

.up {
  color: #13A848;
  background: #D5F7DF;
}

.transactions-panel p {
  margin: 0;
}

.transactions-panel strong {
  display: block;
  color: #202D29;
  font-size: 14px;
}

.transactions-panel small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.transactions-panel b {
  color: #15231F;
  font-size: 14px;
  white-space: nowrap;
}

.transactions-panel .gain {
  color: #0C9838;
}

.spark {
  position: absolute;
  z-index: 7;
  color: #26C43A;
  font-size: 48px;
  line-height: 1;
  text-shadow: 0 10px 24px rgba(38, 196, 58, 0.28);
}

.spark-one {
  left: 274px;
  top: 10px;
}

.spark-two {
  left: 248px;
  top: 92px;
  font-size: 28px;
  opacity: 0.7;
}

.feature-strip {
  grid-area: features;
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  width: 100%;
  min-height: 96px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.feature-strip div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: start;
  justify-items: start;
  padding: 0;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  font-size: 25px;
  font-weight: 400;
}

.feature-icon.green {
  color: #04A93A;
  background: #DEF8E4;
}

.feature-icon.pink {
  color: #F23068;
  background: #FFE2EA;
}

.feature-icon.blue {
  color: var(--blue);
  background: #E0EDFF;
}

.feature-icon.amber {
  color: var(--amber);
  background: #FFF1D4;
}

.feature-strip p {
  margin: 0;
  color: #3C4B46;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 400;
}

.feature-strip strong {
  display: block;
  color: #17251F;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 400;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0;
}

.section-copy {
  max-width: 700px;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--green-strong);
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
}

.section h2,
.final-cta h2 {
  margin: 0;
  color: var(--deep);
  font-size: 42px;
  line-height: 1.05;
  font-weight: 700;
}

.section-copy > p:not(.section-kicker),
.security-panel p,
.final-cta p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 400;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 430px) minmax(650px, 720px);
  gap: clamp(38px, 5vw, 78px);
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: none;
  min-height: 790px;
  margin: 0;
  padding: 84px clamp(40px, 6vw, 104px);
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 36%, rgba(107, 187, 66, 0.18), transparent 28%),
    radial-gradient(circle at 14% 88%, rgba(255, 248, 230, 0.92), transparent 30%),
    linear-gradient(180deg, rgba(248, 253, 244, 0.98), rgba(239, 250, 232, 0.82));
  border-top: 1px solid rgba(1, 64, 42, 0.08);
  border-bottom: 1px solid rgba(1, 64, 42, 0.08);
}

.steps::before,
.steps::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.steps::before {
  left: -120px;
  bottom: -160px;
  width: 430px;
  height: 430px;
  border-radius: 999px;
  background: rgba(107, 187, 66, 0.12);
}

.steps::after {
  right: 12%;
  top: 72px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  filter: blur(1px);
}

.steps-copy {
  position: relative;
  z-index: 2;
  max-width: 430px;
}

.steps-copy h2 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(44px, 4vw, 62px);
  line-height: 1.08;
  font-weight: 700;
}

.steps-copy > p:not(.section-kicker) {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 500;
}

.cycle-highlights {
  display: grid;
  gap: 14px;
  margin-top: 46px;
}

.cycle-highlights span {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 34px;
  padding: 0;
  border-right: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 400;
}

.highlight-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #7DBE68;
}

.highlight-icon::before {
  content: "";
  display: block;
  background: currentColor;
}

.highlight-icon.shield::before {
  width: 18px;
  height: 22px;
  clip-path: polygon(50% 0, 88% 14%, 82% 66%, 50% 100%, 18% 66%, 12% 14%);
}

.highlight-icon.bolt::before {
  width: 15px;
  height: 24px;
  clip-path: polygon(55% 0, 14% 48%, 47% 48%, 33% 100%, 86% 40%, 55% 40%);
}

.highlight-icon.bars::before {
  width: 23px;
  height: 22px;
  background:
    linear-gradient(currentColor, currentColor) 0 10px / 5px 12px no-repeat,
    linear-gradient(currentColor, currentColor) 9px 4px / 5px 18px no-repeat,
    linear-gradient(currentColor, currentColor) 18px 0 / 5px 22px no-repeat;
  border-radius: 2px;
}

.cycle-visual {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  height: 710px;
}

.cycle-arrows {
  position: absolute;
  inset: 48px 0 auto;
  width: 100%;
  height: 560px;
  overflow: visible;
  pointer-events: none;
}

.cycle-ring {
  fill: none;
  stroke: rgba(39, 126, 70, 0.66);
  stroke-width: 4.4;
  stroke-linecap: round;
}

.cycle-arrow-head {
  fill: #3D9B4E;
  stroke: none;
}

.cycle-arrows .cycle-dots {
  fill: none;
  stroke: rgba(107, 187, 66, 0.28);
  stroke-width: 4;
  stroke-dasharray: 1 12;
  marker-end: none;
}

.cycle-card,
.cycle-center,
.cycle-note {
  border: 1px solid rgba(1, 64, 42, 0.13);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 46px rgba(1, 64, 42, 0.09);
  backdrop-filter: blur(16px);
}

.cycle-card {
  position: absolute;
  display: grid;
  justify-items: center;
  width: 270px;
  min-height: 250px;
  padding: 44px 26px 24px;
  border-radius: 26px;
  text-align: center;
}

.cycle-card-one {
  top: 8px;
  left: 225px;
}

.cycle-card-two {
  right: 0;
  top: 348px;
}

.cycle-card-three {
  left: 0;
  top: 348px;
}

.cycle-number {
  position: absolute;
  top: -22px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 8px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  background: #E3F6DA;
  color: var(--green-strong);
  font-size: 16px;
  font-weight: 400;
  transform: translateX(-50%);
}

.cycle-card img {
  width: 126px;
  height: 92px;
  object-fit: contain;
  margin-bottom: 6px;
  filter: drop-shadow(0 12px 18px rgba(1, 64, 42, 0.08));
}

.cycle-card h3 {
  margin: 0 0 10px;
  color: var(--deep);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 600;
}

.cycle-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.34;
  font-weight: 500;
}

.cycle-center {
  position: absolute;
  left: 264px;
  top: 282px;
  display: grid;
  place-items: center;
  width: 192px;
  height: 192px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 28%, rgba(107, 187, 66, 0.13), transparent 48%),
    rgba(230, 244, 221, 0.74);
  text-align: center;
}

.cycle-center img {
  width: 126px;
}

.cycle-note strong {
  color: var(--green-strong);
}

.cycle-note {
  position: absolute;
  left: 78px;
  right: 78px;
  bottom: 8px;
  min-height: 58px;
  margin: 0;
  padding: 12px 24px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 500;
  text-align: center;
}

.cycle-note span {
  display: inline-block;
  margin-right: 12px;
  color: var(--green-strong);
  font-size: 22px;
  vertical-align: middle;
}

.cycle-coins {
  position: absolute;
  left: clamp(-42px, -2vw, 0px);
  bottom: -24px;
  z-index: 1;
  width: clamp(210px, 18vw, 330px);
  opacity: 0.74;
  pointer-events: none;
}

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

.steps-grid article,
.resource-grid article,
.simulator-box,
.security-panel,
.final-cta {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--soft-shadow);
}

.steps-grid article {
  min-height: 210px;
  padding: 30px;
}

.steps-grid span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #E3F6DA;
  color: var(--green-strong);
  font-weight: 400;
}

.steps-grid h3,
.resource-grid h3 {
  margin: 22px 0 10px;
  color: var(--deep);
  font-size: 22px;
  line-height: 1.1;
}

.steps-grid p,
.resource-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.42;
  font-weight: 600;
}

.resources {
  padding-top: 84px;
  padding-bottom: 84px;
}

.resource-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.resource-grid article {
  position: relative;
  overflow: hidden;
  min-height: 224px;
  padding: 28px;
  background:
    radial-gradient(circle at 92% 8%, rgba(107, 187, 66, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(249, 253, 246, 0.72));
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.resource-grid article::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: rgba(107, 187, 66, 0.28);
}

.resource-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(107, 187, 66, 0.34);
  box-shadow: 0 22px 52px rgba(1, 64, 42, 0.12);
}

.resource-grid span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: #E6F8DD;
  color: var(--green-strong);
  font-size: 24px;
  font-weight: 400;
}

.resource-grid h3 {
  font-weight: 600;
}

.resource-grid p {
  font-weight: 400;
}

.recurrences {
  position: relative;
  isolation: isolate;
  padding-top: 84px;
  padding-bottom: 84px;
}

.recurrences::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 214, 224, 0.48), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(107, 187, 66, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 250, 246, 0.78), rgba(247, 251, 242, 0.58));
  border-top: 1px solid rgba(238, 93, 117, 0.1);
  border-bottom: 1px solid rgba(1, 64, 42, 0.08);
}

.recurrences .section-copy {
  max-width: 720px;
}

.recurrences .section-kicker {
  color: #D92330;
}

.recurrence-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 22px;
  align-items: stretch;
  margin-top: 34px;
}

.recurrence-dashboard,
.recurrence-callout {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--soft-shadow);
}

.recurrence-dashboard {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 250, 246, 0.72));
}

.recurrence-dashboard::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #EE5D75, #6BBB42);
}

.recurrence-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.recurrence-summary > div {
  display: grid;
  grid-template-columns: 54px 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 14px;
  align-items: center;
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(1, 64, 42, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.summary-icon {
  grid-row: 1 / span 3;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: #E02D41;
  background: #FFE0E3;
  font-size: 27px;
  font-weight: 400;
}

.summary-icon.green {
  color: #0B9C3B;
  background: #DFF6E5;
}

.recurrence-summary p,
.recurrence-summary small {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

.recurrence-summary strong {
  margin-top: 4px;
  color: #13241F;
  font-size: 26px;
  line-height: 1;
  font-weight: 400;
}

.recurrence-summary small {
  margin-top: 6px;
  font-size: 13px;
}

.recurrence-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.recurrence-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(1, 64, 42, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 28px rgba(1, 64, 42, 0.06);
}

.brand-tile {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(1, 64, 42, 0.08);
}

.brand-tile img {
  max-width: 72%;
  max-height: 72%;
  object-fit: contain;
}

.brand-tile.spotify img {
  max-width: 86%;
}

.brand-tile.netflix {
  background: #050505;
}

.brand-tile.itau {
  background: #FFF2E8;
}

.brand-tile.enel {
  background: #FFFFFF;
}

.brand-tile.spotify {
  background: #111111;
}

.recurrence-card h3 {
  margin: 0;
  color: var(--deep);
  font-size: 17px;
  line-height: 1.1;
  font-weight: 400;
}

.recurrence-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 500;
}

.recurrence-card strong {
  color: #D92330;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
}

.recurrence-callout {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  min-height: 344px;
  padding: 28px;
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 214, 224, 0.66), transparent 30%),
    radial-gradient(circle at 12% 92%, rgba(107, 187, 66, 0.16), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 248, 244, 0.82));
}

.recurrence-callout::before {
  content: "";
  position: absolute;
  right: -42px;
  top: 38px;
  width: 150px;
  height: 150px;
  border-radius: 44px;
  background: rgba(238, 93, 117, 0.11);
  transform: rotate(12deg);
}

.recurrence-callout > span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 22px;
  color: #D92330;
  background: #FFE0E6;
  font-size: 34px;
  font-weight: 400;
}

.recurrence-callout h3 {
  position: relative;
  margin: 22px 0 10px;
  color: var(--deep);
  font-size: 28px;
  line-height: 1.05;
  font-weight: 600;
}

.recurrence-callout p {
  position: relative;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
}

.benefits {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 42px;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 84px;
}

.benefits::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 77% 26%, rgba(203, 224, 34, 0.18), transparent 24%),
    radial-gradient(circle at 12% 82%, rgba(107, 187, 66, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(247, 251, 242, 0.52), rgba(255, 252, 244, 0.56));
  border-top: 1px solid rgba(1, 64, 42, 0.07);
  border-bottom: 1px solid rgba(1, 64, 42, 0.07);
}

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

.benefits-copy h2 {
  margin: 0;
  color: var(--deep);
  font-size: 42px;
  line-height: 1.05;
  font-weight: 700;
}

.benefits-copy p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 400;
}

.benefit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.benefit-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--deep);
  background: rgba(107, 187, 66, 0.14);
  border: 1px solid rgba(107, 187, 66, 0.26);
  font-size: 14px;
  font-weight: 400;
}

.benefit-visual {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 22%, rgba(203, 224, 34, 0.34), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(107, 187, 66, 0.2), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(234, 248, 225, 0.9));
  box-shadow: var(--soft-shadow);
}

.benefit-card-image {
  position: absolute;
  left: -18px;
  bottom: -60px;
  width: min(380px, 54%);
  filter: drop-shadow(0 28px 34px rgba(34, 12, 70, 0.2));
}

.benefit-wallet {
  position: absolute;
  right: 26px;
  top: 50%;
  width: min(430px, 58%);
  transform: translateY(-50%);
  padding: 24px;
  border: 1px solid rgba(1, 64, 42, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.wallet-header {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(1, 64, 42, 0.1);
}

.wallet-header > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: var(--deep);
  background: #E6F7DD;
  font-size: 26px;
  font-weight: 400;
}

.wallet-header p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.wallet-header strong {
  color: #15231F;
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
}

.wallet-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.wallet-list article {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 62px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(247, 251, 242, 0.78);
}

.wallet-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.wallet-dot.food {
  background: #CBE022;
}

.wallet-dot.meal {
  background: #6BBB42;
}

.wallet-dot.mobility {
  background: #2678F2;
}

.wallet-list strong {
  display: block;
  color: var(--deep);
  font-size: 15px;
  line-height: 1.1;
  font-weight: 400;
}

.wallet-list small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.22;
  font-weight: 500;
}

.wallet-list b {
  color: var(--deep);
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}

.wallet-separator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--deep);
  color: white;
}

.wallet-separator span,
.wallet-separator strong {
  font-size: 13px;
  line-height: 1.2;
}

.wallet-separator span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.wallet-separator strong {
  font-weight: 400;
  text-align: right;
}

.simulator {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 84px;
}

.simulator::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 70% 46%, rgba(1, 64, 42, 0.12), transparent 30%),
    radial-gradient(circle at 24% 32%, rgba(107, 187, 66, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(234, 248, 225, 0.74), rgba(255, 252, 244, 0.72));
  border-top: 1px solid rgba(1, 64, 42, 0.08);
  border-bottom: 1px solid rgba(1, 64, 42, 0.08);
}

.simulator .section-copy {
  max-width: 560px;
}

.simulator .section-copy h2 {
  font-size: clamp(42px, 4vw, 58px);
}

.simulator-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  padding: 34px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 20% 16%, rgba(107, 187, 66, 0.16), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(247, 251, 242, 0.76));
  box-shadow: 0 28px 80px rgba(1, 64, 42, 0.14);
}

.simulator-box::after {
  content: "";
  position: absolute;
  right: -68px;
  bottom: -84px;
  width: 230px;
  height: 230px;
  border-radius: 999px;
  background: rgba(107, 187, 66, 0.16);
}

.sim-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.sim-form label {
  display: grid;
  gap: 8px;
  color: var(--deep);
  font-size: 14px;
  font-weight: 400;
}

.sim-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(1, 64, 42, 0.16);
  border-radius: 16px;
  padding: 0 16px;
  color: var(--ink);
  background: white;
  font: inherit;
  font-size: 18px;
  font-weight: 400;
  outline: none;
}

.sim-form input:focus {
  border-color: rgba(31, 165, 20, 0.58);
  box-shadow: 0 0 0 4px rgba(107, 187, 66, 0.14);
}

.sim-result {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: 300px;
  padding: 34px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 84% 12%, rgba(107, 187, 66, 0.34), transparent 30%),
    linear-gradient(160deg, #01402A, #075A3A);
  color: white;
}

.sim-result p {
  color: rgba(255, 255, 255, 0.72);
}

.sim-result strong {
  color: white;
  font-size: 42px;
  line-height: 1.05;
  font-weight: 700;
}

.progress-wrap {
  height: 14px;
  margin: 24px 0 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.progress-wrap span {
  display: block;
  width: 83%;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
  transition: width 180ms ease, background 180ms ease;
}

.sim-result small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
}

.gpt-actions {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 84px;
}

.gpt-actions::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 18% 28%, rgba(1, 64, 42, 0.14), transparent 26%),
    radial-gradient(circle at 78% 58%, rgba(107, 187, 66, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(1, 64, 42, 0.96), rgba(9, 91, 58, 0.94));
}

.gpt-copy {
  max-width: 510px;
}

.gpt-copy .section-kicker {
  color: #95EA79;
}

.gpt-copy h2 {
  margin: 0;
  color: white;
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1.06;
  font-weight: 700;
}

.gpt-copy > p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 400;
}

.gpt-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.gpt-points span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 8px 14px 8px 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
}

.gpt-points b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  padding: 0;
  border-radius: 999px;
  color: var(--deep);
  background: #BFF4D0;
  font-size: 14px;
  font-weight: 400;
}

.gpt-visual {
  position: relative;
  min-height: 560px;
}

.gpt-orbit {
  position: absolute;
  inset: 34px 54px 28px 54px;
  border: 1px solid rgba(149, 234, 121, 0.3);
  border-radius: 42px;
  background:
    radial-gradient(circle at 42% 48%, rgba(149, 234, 121, 0.2), transparent 30%),
    rgba(255, 255, 255, 0.05);
  transform: rotate(-2deg);
}

.gpt-chat-card,
.gpt-action-stack article {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.gpt-chat-card {
  position: absolute;
  left: 0;
  top: 34px;
  z-index: 2;
  width: min(455px, 74%);
  min-height: 430px;
  padding: 22px;
  border-radius: 30px;
}

.gpt-chat-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(1, 64, 42, 0.1);
}

.gpt-chat-top span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  color: white;
  background: var(--deep);
  font-size: 14px;
  font-weight: 600;
}

.gpt-chat-top strong {
  color: var(--deep);
  font-size: 17px;
  font-weight: 600;
}

.chat-message {
  width: fit-content;
  max-width: 90%;
  margin-top: 16px;
  padding: 13px 15px;
  border-radius: 18px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.user-message {
  margin-left: auto;
  color: white;
  background: linear-gradient(180deg, #39C72D, #18AA0C);
  border-bottom-right-radius: 6px;
}

.assistant-message {
  background: #F1F7ED;
  border-bottom-left-radius: 6px;
}

.assistant-message strong {
  display: block;
  color: var(--deep);
  font-size: 15px;
  font-weight: 600;
}

.assistant-message p {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 400;
}

.assistant-message p b {
  color: var(--deep);
  font-weight: 600;
}

.assistant-message.compact {
  color: var(--deep);
}

.gpt-action-stack {
  position: absolute;
  right: 0;
  bottom: 42px;
  z-index: 3;
  display: grid;
  gap: 14px;
  width: min(390px, 58%);
}

.gpt-action-stack article {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 94px;
  padding: 16px;
  border-radius: 22px;
}

.gpt-action-stack span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: var(--deep);
  background: #DDF8D2;
  font-size: 22px;
  font-weight: 400;
}

.gpt-action-stack article:nth-child(2) span,
.gpt-action-stack article:nth-child(3) span {
  color: var(--deep);
  background: #BFF4D0;
}

.gpt-action-stack strong {
  display: block;
  color: var(--deep);
  font-size: 17px;
  line-height: 1.15;
  font-weight: 600;
}

.gpt-action-stack small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 400;
}

.plans {
  position: relative;
  width: 100%;
  min-height: 790px;
  padding: 84px 24px 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(107, 187, 66, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(247, 251, 242, 0.7), rgba(250, 253, 246, 0.95));
}

.plans-heading {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.plans-heading .section-kicker {
  font-size: 17px;
}

.plans-heading h2 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(44px, 4.1vw, 66px);
  line-height: 1.08;
  font-weight: 700;
}

.plans-heading > p:not(.section-kicker) {
  width: min(640px, 100%);
  margin: 22px auto 0;
  color: #657386;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 500;
}

.plans-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 430px));
  gap: 36px;
  justify-content: center;
  align-items: start;
  margin-top: 82px;
}

.plan-card {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 520px;
  padding: 54px 58px 38px;
  border: 1px solid rgba(107, 187, 66, 0.28);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 22px 60px rgba(1, 64, 42, 0.08);
  backdrop-filter: blur(18px);
  text-align: center;
}

.plan-featured {
  min-height: 560px;
  margin-top: -22px;
  border-color: rgba(31, 165, 20, 0.78);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 28px 80px rgba(1, 64, 42, 0.12);
}

.plan-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 24px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(180deg, #68BE48, #3FA232);
  box-shadow: 0 12px 28px rgba(47, 152, 38, 0.26);
  font-size: 19px;
  font-weight: 400;
  white-space: nowrap;
  transform: translateX(-50%);
}

.plan-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-right: 148px;
  border-radius: 999px;
  color: var(--green-strong);
  background: rgba(107, 187, 66, 0.16);
  font-size: 32px;
  line-height: 1;
  font-weight: 400;
}

.plan-card h3 {
  margin: -49px 0 0 74px;
  color: var(--deep);
  font-size: 28px;
  line-height: 1;
  font-weight: 400;
}

.plan-price {
  display: grid;
  gap: 8px;
  margin-top: 48px;
}

.plan-price strong {
  color: var(--deep);
  font-size: clamp(52px, 4.3vw, 70px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 0;
}

.plan-price span {
  color: var(--muted);
  font-size: 20px;
  font-weight: 500;
}

.plan-saving {
  width: 100%;
  margin: 24px 0 0;
  padding: 0 0 20px;
  border-bottom: 1px dashed rgba(107, 187, 66, 0.44);
  color: var(--green-strong);
  font-size: 18px;
  font-weight: 400;
}

.plan-card ul {
  display: grid;
  gap: 18px;
  width: 100%;
  margin: 34px 0 30px;
  padding: 28px 0 0;
  border-top: 1px dashed rgba(107, 187, 66, 0.44);
  list-style: none;
  text-align: left;
}

.plan-featured ul {
  margin-top: 24px;
  padding-top: 0;
  border-top: 0;
}

.plan-card li {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #546476;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 500;
}

.plan-card li b {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--green-strong);
  font-size: 26px;
  line-height: 1;
  font-weight: 400;
}

.plan-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  margin-top: auto;
  border: 2px solid var(--green-strong);
  border-radius: 999px;
  font-size: 20px;
  font-weight: 600;
}

.plan-button.secondary {
  color: var(--green-strong);
  background: rgba(255, 255, 255, 0.7);
}

.plan-button.primary {
  border-color: transparent;
  color: white;
  background: linear-gradient(180deg, #61BA43, #38A62E);
  box-shadow: 0 14px 34px rgba(47, 152, 38, 0.28);
}

.plans-note {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(520px, calc(100% - 40px));
  min-height: 58px;
  margin: 30px auto 0;
  padding: 12px 24px;
  border: 1px solid rgba(1, 64, 42, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 38px rgba(1, 64, 42, 0.06);
  color: var(--muted);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 500;
  text-align: center;
}

.plans-note span,
.plans-note strong {
  color: var(--green-strong);
}

.plans-coins {
  position: absolute;
  left: -42px;
  bottom: -54px;
  z-index: 1;
  width: clamp(260px, 25vw, 460px);
  opacity: 0.72;
  pointer-events: none;
}

.plans-pig {
  position: absolute;
  right: clamp(34px, 8vw, 126px);
  bottom: 52px;
  z-index: 2;
  width: clamp(160px, 15vw, 250px);
  filter: drop-shadow(0 22px 34px rgba(1, 64, 42, 0.12));
  pointer-events: none;
}

.plans-sparkles {
  position: absolute;
  right: clamp(260px, 22vw, 390px);
  bottom: 210px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(107, 187, 66, 0.45);
  font-size: 28px;
  pointer-events: none;
}

.plans-sparkles span:nth-child(2) {
  font-size: 40px;
}

.plans-dots {
  position: absolute;
  right: clamp(120px, 10vw, 190px);
  bottom: 228px;
  z-index: 1;
  width: 84px;
  height: 120px;
  opacity: 0.42;
  background-image: radial-gradient(circle, rgba(107, 187, 66, 0.5) 2px, transparent 3px);
  background-size: 18px 18px;
  pointer-events: none;
}

.security {
  padding-top: 84px;
  padding-bottom: 72px;
}

.security-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 42px;
  background:
    linear-gradient(120deg, rgba(1, 64, 42, 0.96), rgba(13, 95, 62, 0.94)),
    var(--deep);
}

.security-panel h2,
.security-panel p,
.security-panel .section-kicker {
  color: white;
}

.security-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.security-panel ul {
  display: grid;
  gap: 12px;
  min-width: 250px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.security-panel li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-weight: 400;
}

.security-panel b {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--green);
}

.final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 32px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 72px;
  padding: 34px 38px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 9% 40%, rgba(107, 187, 66, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(235, 249, 227, 0.78));
  box-shadow: 0 24px 70px rgba(1, 64, 42, 0.12);
}

.final-cta::after {
  content: "";
  position: absolute;
  right: -82px;
  top: -104px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(107, 187, 66, 0.14);
  pointer-events: none;
}

.final-cta img {
  position: relative;
  z-index: 1;
  width: 108px;
}

.final-cta > div,
.final-cta .btn {
  position: relative;
  z-index: 1;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

.site-footer img {
  width: 150px;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "copy"
      "scene"
      "features";
    min-height: auto;
    padding-top: 44px;
    row-gap: 28px;
  }

  .hero-copy {
    width: 100%;
    max-width: 620px;
    padding-left: 0;
  }

  .hero-scene {
    inset: auto;
    width: min(720px, 100%);
    height: 620px;
    justify-self: center;
  }

  .balance-panel {
    right: 0;
    width: min(500px, 100%);
  }

  .mascot {
    left: 12px;
    width: 360px;
  }

  .transactions-panel {
    right: 0;
    width: min(420px, 76%);
  }

  .feature-strip {
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 0;
    width: 100%;
  }

  .feature-strip div:nth-child(2) {
    border-right: 0;
  }

  .feature-strip div:nth-child(-n + 2) {
    padding-bottom: 0;
  }

  .feature-strip div:nth-child(n + 3) {
    padding-top: 0;
    border-top: 0;
  }

  .steps {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: auto;
    padding: 78px clamp(24px, 5vw, 52px);
  }

  .steps-copy {
    max-width: 760px;
    justify-self: stretch;
  }

  .cycle-visual {
    margin-top: 18px;
  }

  .cycle-coins {
    width: 220px;
    opacity: 0.42;
  }

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

  .recurrence-showcase {
    grid-template-columns: 1fr;
  }

  .recurrence-callout {
    min-height: 230px;
  }

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

  .benefits-copy {
    max-width: 720px;
  }

  .simulator,
  .gpt-actions,
  .simulator-box,
  .security-panel,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .gpt-copy {
    max-width: 760px;
  }

  .gpt-visual {
    width: min(720px, 100%);
    justify-self: center;
  }

  .plans {
    min-height: auto;
    padding: 74px 20px 88px;
  }

  .plans-grid {
    grid-template-columns: repeat(2, minmax(300px, 390px));
    gap: 24px;
  }

  .plan-card {
    padding-right: 36px;
    padding-left: 36px;
  }

  .plans-pig {
    right: 34px;
    width: 160px;
  }

  .plans-coins {
    width: 300px;
  }

  .final-cta .btn {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 28px);
    min-height: 68px;
    padding-right: 14px;
    padding-left: 14px;
    border-radius: 20px;
  }

  .brand img {
    width: 142px;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 15px;
    font-size: 14px;
  }

  .section,
  .final-cta,
  .site-footer {
    width: min(100% - 28px, 620px);
  }

  .hero {
    width: calc(100% - 28px);
    min-height: auto;
    padding: 28px 14px 18px;
    border-radius: 0 0 24px 24px;
  }

  .eyebrow {
    min-height: 42px;
    margin-bottom: 24px;
    padding-right: 16px;
    font-size: 14px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-text {
    width: 100%;
    margin-top: 26px;
    font-size: 18px;
  }

  .hero-actions {
    gap: 12px;
  }

  .btn {
    width: 100%;
    min-height: 54px;
    border-radius: 16px;
  }

  .trust-row {
    gap: 14px;
    font-size: 14px;
  }

  .hero-scene {
    position: relative;
    display: grid;
    gap: 16px;
    inset: auto;
    height: auto;
    margin-top: 28px;
  }

  .balance-panel {
    position: relative;
    order: 2;
    top: auto;
    right: auto;
    left: auto;
    width: auto;
    min-height: 300px;
    padding: 22px;
    transform: rotate(0);
  }

  .gpt-mini-bubble {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-bottom: 14px;
    transform: none;
  }

  .panel-top {
    gap: 14px;
  }

  .panel-top strong,
  .sim-result strong {
    font-size: 31px;
  }

  .ring {
    width: 104px;
    height: 104px;
  }

  .ring strong {
    font-size: 24px;
  }

  .metric-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .metric {
    min-height: 58px;
  }

  .mascot {
    position: relative;
    order: 1;
    left: auto;
    bottom: auto;
    justify-self: center;
    width: min(320px, 84vw);
    margin: 0 auto -2px;
    transform: none;
  }

  .transactions-panel {
    position: relative;
    order: 3;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    padding: 20px;
    transform: rotate(0);
  }

  .transactions-panel li {
    grid-template-columns: 34px 1fr auto;
    gap: 8px;
  }

  .transactions-panel b {
    font-size: 12px;
  }

  .spark {
    display: none;
  }

  .feature-strip {
    grid-template-columns: 1fr;
    margin-top: 18px;
    gap: 14px;
    padding: 10px 18px;
  }

  .feature-strip div {
    grid-template-columns: 46px 1fr;
    padding: 4px 0;
    border-right: 0;
    border-top: 0;
  }

  .feature-icon {
    width: 42px;
    height: 42px;
  }

  .section {
    padding: 56px 0;
  }

  .section h2,
  .final-cta h2 {
    font-size: 32px;
  }

  .steps {
    padding: 56px 20px;
  }

  .steps-copy h2 {
    font-size: 38px;
  }

  .steps-copy > p:not(.section-kicker) {
    margin-top: 18px;
    font-size: 17px;
  }

  .cycle-highlights {
    gap: 10px;
    margin-top: 26px;
  }

  .cycle-highlights span {
    width: 100%;
    min-height: 46px;
    padding: 0;
    border-right: 0;
  }

  .cycle-visual {
    display: grid;
    gap: 16px;
    width: 100%;
    height: auto;
    margin-top: 30px;
  }

  .cycle-arrows {
    display: none;
  }

  .cycle-card,
  .cycle-center,
  .cycle-note {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    transform: none;
  }

  .cycle-center {
    order: 0;
    width: min(230px, 72vw);
    height: min(230px, 72vw);
    justify-self: center;
  }

  .cycle-card {
    min-height: auto;
    padding: 42px 22px 24px;
  }

  .cycle-card-one {
    order: 1;
  }

  .cycle-card-two {
    order: 2;
  }

  .cycle-card-three {
    order: 3;
  }

  .cycle-number {
    top: -18px;
  }

  .cycle-note {
    order: 4;
    justify-self: stretch;
    min-height: auto;
    padding: 16px 18px;
    border-radius: 20px;
    font-size: 15px;
  }

  .cycle-coins {
    position: relative;
    left: auto;
    bottom: auto;
    justify-self: start;
    width: 210px;
    margin: -8px 0 -30px;
    opacity: 0.62;
  }

  .steps-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .recurrences {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .recurrence-showcase {
    gap: 14px;
    margin-top: 24px;
  }

  .recurrence-dashboard {
    padding: 16px;
    border-radius: 22px;
  }

  .recurrence-summary,
  .recurrence-list {
    grid-template-columns: 1fr;
  }

  .recurrence-summary > div {
    min-height: 94px;
    padding: 14px;
  }

  .recurrence-summary strong {
    font-size: 22px;
  }

  .recurrence-card {
    grid-template-columns: 50px minmax(0, 1fr);
    min-height: 94px;
    padding: 14px;
  }

  .brand-tile {
    width: 50px;
    height: 50px;
    border-radius: 15px;
  }

  .recurrence-card strong {
    grid-column: 2;
    justify-self: start;
  }

  .recurrence-callout {
    min-height: 220px;
    padding: 22px;
    border-radius: 22px;
  }

  .recurrence-callout h3 {
    font-size: 24px;
  }

  .benefits {
    gap: 24px;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .benefits-copy h2 {
    font-size: 32px;
  }

  .benefit-visual {
    display: grid;
    gap: 14px;
    min-height: auto;
    padding: 18px;
    border-radius: 22px;
  }

  .benefit-card-image {
    position: relative;
    left: auto;
    bottom: auto;
    justify-self: center;
    width: min(260px, 78vw);
  }

  .benefit-wallet {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    transform: none;
    padding: 18px;
    border-radius: 22px;
  }

  .wallet-list article {
    grid-template-columns: 12px minmax(0, 1fr);
  }

  .wallet-list b {
    grid-column: 2;
    justify-self: start;
  }

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

  .wallet-separator strong {
    text-align: left;
  }

  .steps-grid article,
  .resource-grid article {
    min-height: auto;
  }

  .simulator {
    gap: 28px;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .simulator-box {
    padding: 18px;
  }

  .gpt-actions {
    gap: 28px;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .gpt-copy h2 {
    font-size: 34px;
  }

  .gpt-copy > p {
    font-size: 17px;
  }

  .gpt-points span {
    flex: 1 1 142px;
    font-size: 14px;
  }

  .gpt-visual {
    display: grid;
    gap: 14px;
    min-height: auto;
  }

  .gpt-orbit {
    display: none;
  }

  .gpt-chat-card,
  .gpt-action-stack {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
  }

  .gpt-chat-card {
    min-height: auto;
    padding: 18px;
    border-radius: 24px;
  }

  .gpt-action-stack article {
    grid-template-columns: 58px 1fr;
    min-height: 88px;
  }

  .plans {
    padding: 56px 14px 64px;
  }

  .plans-heading h2 {
    font-size: 36px;
  }

  .plans-heading > p:not(.section-kicker) {
    font-size: 17px;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    width: min(100%, 430px);
    margin: 42px auto 0;
  }

  .plan-card,
  .plan-featured {
    min-height: auto;
    margin-top: 0;
    padding: 42px 24px 26px;
    border-radius: 26px;
  }

  .plan-featured {
    margin-top: 8px;
  }

  .plan-badge {
    min-height: 36px;
    padding: 0 18px;
    font-size: 15px;
  }

  .plan-icon {
    width: 54px;
    height: 54px;
    margin-right: 128px;
    font-size: 27px;
  }

  .plan-card h3 {
    margin: -39px 0 0 68px;
    font-size: 24px;
  }

  .plan-price {
    margin-top: 36px;
  }

  .plan-price strong {
    font-size: 48px;
  }

  .plan-card ul {
    gap: 14px;
    margin: 26px 0 24px;
    padding-top: 22px;
  }

  .plan-card li {
    gap: 12px;
    font-size: 15px;
  }

  .plan-button {
    min-height: 54px;
    font-size: 17px;
  }

  .plans-note {
    flex-direction: column;
    gap: 4px;
    width: min(100%, 430px);
    min-height: auto;
    border-radius: 20px;
    font-size: 15px;
  }

  .plans-coins {
    width: 210px;
    opacity: 0.38;
  }

  .plans-pig,
  .plans-sparkles,
  .plans-dots {
    display: none;
  }

  .security-panel {
    padding: 28px;
  }

  .security-panel ul {
    min-width: 0;
  }

  .final-cta {
    margin-bottom: 44px;
    padding: 24px;
  }

  .final-cta img {
    width: 82px;
  }

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

@media (max-width: 420px) {
  .hero h1 {
    font-size: 36px;
  }

  .panel-top {
    align-items: center;
  }

  .ring {
    width: 92px;
    height: 92px;
  }

  .ring span {
    display: none;
  }
}
