:root {
  --green: #0f9f78;
  --green-dark: #087158;
  --blue: #2e8ee6;
  --orange: #ff8a27;
  --bg: #eef8f5;
  --text: #14231f;
  --muted: #5b6f69;
  --line: rgba(10, 86, 67, 0.15);
  --card: rgba(255, 255, 255, 0.92);
  --shadow: 0 20px 60px rgba(9, 70, 57, 0.14);
  --theme-primary: #0f9f78;
  --theme-secondary: #2e8ee6;
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(15, 159, 120, 0.1), transparent 46%),
    linear-gradient(315deg, rgba(46, 142, 230, 0.1), transparent 44%),
    #eef8f5;
  letter-spacing: 0;
}

body.template-ocean {
  --theme-primary: #1679c9;
  --theme-secondary: #18a992;
  --bg: #eef7ff;
}

body.template-sunrise {
  --theme-primary: #ef7d1a;
  --theme-secondary: #168fc7;
  --bg: #fff7ed;
}

body.template-qrpay {
  --theme-primary: #07966d;
  --theme-secondary: #24aedd;
  --bg: #edfbf6;
}

body.template-adtopup {
  --theme-primary: #0b8f72;
  --theme-secondary: #ff8a27;
  --bg: #f2faf7;
}

body.template-chatgpt {
  --theme-primary: #0d9375;
  --theme-secondary: #4678de;
  --bg: #f0f9f7;
}

body.template-amazon {
  --theme-primary: #16866d;
  --theme-secondary: #f49a25;
  --bg: #f8faf5;
}

a {
  color: inherit;
}

.landing-shell {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 14px 12px 104px;
}

.hero {
  position: relative;
  min-height: calc(100svh - 28px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(125deg, rgba(5, 38, 33, 0.98), rgba(6, 92, 75, 0.9) 58%, rgba(21, 113, 146, 0.84)),
    var(--theme-primary);
  box-shadow: var(--shadow);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.template-ocean .hero {
  background: linear-gradient(125deg, #073a63, #126eaa 58%, #16a18f);
}

.template-sunrise .hero {
  background: linear-gradient(125deg, #442509, #a64e0f 58%, #e47b17);
}

.template-qrpay .hero {
  background: linear-gradient(125deg, #043f34, #087d5e 60%, #139d8a);
}

.template-adtopup .hero {
  background: linear-gradient(125deg, #063f35, #087d67 58%, #345b7a);
}

.template-chatgpt .hero {
  background: linear-gradient(125deg, #063e35, #0a7764 58%, #355f9d);
}

.template-amazon .hero {
  background: linear-gradient(125deg, #173c34, #386252 54%, #9d5a16);
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 12px 14px;
}

.brand-logo {
  display: block;
  width: 112px;
  height: auto;
  padding: 7px 9px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.95);
  object-fit: contain;
}

.secure-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: 170px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: right;
  color: rgba(255, 255, 255, 0.86);
}

.secure-label > span {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #62efbd;
  box-shadow: 0 0 0 4px rgba(98, 239, 189, 0.16);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  padding: 18px 18px 28px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  backdrop-filter: blur(10px);
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(34px, 11vw, 58px);
  line-height: 1.03;
  letter-spacing: 0;
  text-wrap: balance;
}

.message {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.52;
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.proof-list li > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #67f2c2;
}

.primary-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 460px);
  min-height: 56px;
  margin-top: 24px;
  padding: 10px 14px 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #073d31;
  background: linear-gradient(110deg, #fff, #e9fff7 54%, #d9f5ff);
  box-shadow: 0 14px 30px rgba(1, 31, 25, 0.28);
  font-size: 16px;
  font-weight: 850;
  text-decoration: none;
  touch-action: manipulation;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(1, 31, 25, 0.32);
}

.primary-cta:active,
.primary-cta.is-loading {
  transform: translateY(1px);
}

.cta-arrow {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--theme-primary);
  font-size: 20px;
}

.cta-note {
  width: min(100%, 460px);
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.45;
}

.scene {
  position: relative;
  display: grid;
  min-height: 330px;
  place-items: center;
  isolation: isolate;
}

.scene-glow {
  position: absolute;
  width: min(74vw, 330px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(79, 230, 191, 0.22);
  filter: blur(52px);
  z-index: -1;
}

.scene-card {
  position: relative;
  width: min(78vw, 330px);
  aspect-ratio: 1.58;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.08)),
    linear-gradient(125deg, var(--theme-primary), var(--theme-secondary));
  box-shadow: 0 30px 60px rgba(1, 26, 22, 0.42);
  transform: rotate(-6deg);
  backdrop-filter: blur(14px);
}

.scene-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
}

.scene-card-head strong {
  font-size: 22px;
}

.scene-chip {
  width: 42px;
  height: 30px;
  margin-top: 26px;
  border-radius: 6px;
  background:
    linear-gradient(90deg, transparent 44%, rgba(91, 63, 0, 0.3) 44% 52%, transparent 52%),
    linear-gradient(#f8d76a, #c89b2f);
}

.scene-card p {
  margin: 22px 0 0;
  font-size: 15px;
  font-weight: 800;
}

.scene-lines {
  display: flex;
  gap: 7px;
  margin-top: 16px;
}

.scene-lines span {
  width: 34px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

.scene-token {
  position: absolute;
  top: 10%;
  right: 4%;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 5px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #fff;
  background: #13a57d;
  box-shadow: 0 16px 30px rgba(0, 42, 31, 0.3);
  font-size: 12px;
  font-weight: 900;
}

.scene-status {
  position: absolute;
  right: 0;
  bottom: 8%;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  color: #123c33;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 34px rgba(0, 30, 25, 0.24);
  backdrop-filter: blur(12px);
}

.status-check {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--theme-primary);
  font-weight: 900;
}

.scene-status span:last-child {
  display: flex;
  flex-direction: column;
}

.scene-status small {
  color: var(--muted);
  font-size: 10px;
}

.scene-status strong {
  font-size: 14px;
}

.trust-strip {
  margin-top: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 12px 34px rgba(9, 70, 57, 0.08);
}

.trust-strip > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.trust-icon {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.trust-strip p {
  margin: 0;
}

.trust-strip strong,
.trust-strip p span {
  display: block;
}

.trust-strip strong {
  font-size: 14px;
}

.trust-strip p span,
.trust-strip .legal {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.trust-strip .legal {
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  z-index: 20;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(8, 77, 59, 0.12);
  background: rgba(247, 253, 251, 0.94);
  backdrop-filter: blur(14px);
}

.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 520px);
  min-height: 50px;
  margin: 0 auto;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(110deg, var(--theme-primary), var(--theme-secondary));
  box-shadow: 0 10px 24px rgba(8, 85, 65, 0.22);
  font-weight: 850;
  text-decoration: none;
}

.sticky-cta a span {
  margin-left: 8px;
}

@media (min-width: 760px) {
  .landing-shell {
    padding: 22px 22px 32px;
  }

  .hero {
    min-height: min(780px, calc(100svh - 44px));
  }

  .topbar {
    padding: 18px 24px;
  }

  .brand-logo {
    width: 132px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
    align-items: center;
    min-height: 620px;
    padding: 34px 44px 54px;
  }

  .scene {
    min-height: 470px;
  }

  .scene-token {
    right: 2%;
  }

  .sticky-cta {
    display: none;
  }
}

@media (min-width: 1080px) {
  .hero-grid {
    padding-right: 68px;
    padding-left: 68px;
  }

  .scene-card {
    width: 360px;
  }
}

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

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