:root {
  --bg: #06130f;
  --bg-2: #0b1c16;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.13);
  --line: rgba(255, 255, 255, 0.16);
  --text: #f7fbff;
  --text-dark: #0d1722;
  --muted: #aebdca;
  --muted-dark: #566575;
  --teal: #48e6b3;
  --green: #2bd65f;
  --coral: #ff8d6a;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 8px;
}

/* Public connection diagnostics entry points. */
.header-check-link {
  display: none;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: rgba(247, 251, 255, 0.9);
  font-size: 13px;
  font-weight: 850;
}
.header-check-link svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.section.connection-tool-band {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-bottom: 70px;
  padding: clamp(25px, 5vw, 44px);
  overflow: hidden;
  border: 1px solid #cddfe0;
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 10%, rgba(43, 214, 95, 0.14), transparent 28%),
    linear-gradient(135deg, #f8fffc, #eff8f5);
  box-shadow: 0 22px 65px rgba(11, 50, 39, 0.09);
}
.connection-tool-icon { display: grid; width: 66px; height: 66px; place-items: center; border-radius: 18px; background: #08362b; color: #47e6ad; box-shadow: 0 12px 26px rgba(8, 54, 43, 0.18); }
.connection-tool-icon svg { width: 35px; height: 35px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.connection-tool-copy { min-width: 0; }
.connection-tool-copy .eyebrow { margin-bottom: 8px; }
.connection-tool-copy h2 { margin: 0 0 7px; color: var(--text-dark); font-size: clamp(27px, 4vw, 40px); }
.connection-tool-copy p:last-child { max-width: 720px; margin: 0; color: var(--muted-dark); line-height: 1.55; }
.connection-tool-action { min-width: 185px; }

@media (max-width: 1060px) {
  .header-check-link { display: inline-flex; margin-left: auto; }
  .site-header .header-cta { margin-left: 0; }
}

@media (max-width: 760px) {
  .section.connection-tool-band { grid-template-columns: auto minmax(0, 1fr); gap: 16px; margin-bottom: 48px; }
  .connection-tool-icon { width: 52px; height: 52px; border-radius: 15px; }
  .connection-tool-icon svg { width: 29px; height: 29px; }
  .connection-tool-action { grid-column: 1 / -1; width: 100%; }
}

@media (max-width: 470px) {
  .header-check-link { width: 42px; padding: 0; }
  .header-check-link span { display: none; }
  .section.connection-tool-band { display: block; padding: 22px; border-radius: 18px; }
  .connection-tool-icon { margin-bottom: 17px; }
  .connection-tool-action { margin-top: 18px; }
}

.support-nav-link {
  align-items: center;
  display: inline-flex;
  gap: 6px;
}

.support-nav-badge {
  align-items: center;
  background: #e23b3b;
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  height: 20px;
  justify-content: center;
  line-height: 1;
  min-width: 20px;
  padding: 0 5px;
}

.support-nav-badge[hidden] {
  display: none !important;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

img,
svg {
  display: block;
}

button {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 18px;
  height: 72px;
  padding: 12px max(20px, calc((100vw - 1180px) / 2));
  background: rgba(6, 19, 15, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 900;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(72, 230, 179, 0.45);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(72, 230, 179, 0.2), rgba(43, 214, 95, 0.16));
  color: var(--teal);
}

.brand-mark.small {
  width: 32px;
  height: 32px;
}

.brand-mark svg {
  width: 23px;
  height: 23px;
}

.brand-mark path,
.feature-icon path,
.btn path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.header-cta path,
.btn-primary path {
  fill: currentColor;
  stroke: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.nav-links a {
  color: rgba(247, 251, 255, 0.78);
  font-size: 14px;
  font-weight: 750;
}

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

.header-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius);
  background: var(--green);
  color: #041a0c;
  font-weight: 900;
  overflow: hidden;
}

.header-cta::after,
.btn-primary::after,
.mini-buy::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 44%;
  transform: skewX(-22deg);
  background: rgba(255, 255, 255, 0.42);
  animation: sheen 5.4s ease-in-out infinite;
}

.header-cta svg {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
}

.header-cta span,
.header-cta {
  z-index: 1;
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: var(--bg);
}

.hero-media,
.hero-picture,
.hero-overlay,
.hero-motion {
  position: absolute;
  inset: 0;
}

.hero-picture {
  display: block;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 12, 8, 0.98) 0%, rgba(5, 18, 13, 0.92) 34%, rgba(5, 18, 13, 0.52) 68%, rgba(5, 18, 13, 0.16) 100%),
    linear-gradient(0deg, rgba(6, 19, 15, 0.95) 0%, rgba(6, 19, 15, 0.08) 36%, rgba(6, 19, 15, 0.28) 100%);
}

.hero-motion {
  pointer-events: none;
  opacity: 0.6;
}

.hero-motion span {
  position: absolute;
  left: -20%;
  width: 58%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(72, 230, 179, 0.72), rgba(43, 214, 95, 0.5), transparent);
  animation: flowLine 6.8s linear infinite;
}

.hero-motion span:nth-child(1) {
  top: 34%;
}

.hero-motion span:nth-child(2) {
  top: 49%;
  animation-delay: 1.8s;
}

.hero-motion span:nth-child(3) {
  top: 63%;
  animation-delay: 3.3s;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0 78px;
}

.hero-content > * {
  max-width: 650px;
}

.hero-content > .hero-main,
.hero-content > .hero-stats {
  max-width: none;
}

.hero-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
}

.hero-copy-column {
  min-width: 0;
}

.hero-copy-column > * {
  max-width: 650px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow span,
.status-dot,
.mini-status i {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(43, 214, 95, 0.13);
  animation: pulse 2s ease-in-out infinite;
}

.eyebrow.dark {
  color: #0a8b7f;
}

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

h1 {
  margin-bottom: 20px;
  font-size: 72px;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy-column h1 {
  font-size: 64px;
}

h2 {
  margin-bottom: 18px;
  font-size: 42px;
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.18;
}

.hero-copy {
  margin-bottom: 30px;
  color: rgba(247, 251, 255, 0.86);
  font-size: 21px;
  font-weight: 700;
}

.hero-offer {
  width: min(100%, 520px);
  margin: 0 0 18px;
  padding: 18px 20px;
  border: 1px solid rgba(43, 214, 95, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(43, 214, 95, 0.17), rgba(255, 255, 255, 0.05)),
    rgba(6, 19, 15, 0.74);
  box-shadow: 0 18px 56px rgba(43, 214, 95, 0.12);
  backdrop-filter: blur(18px);
}

.offer-label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(43, 214, 95, 0.14);
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.offer-price-row,
.price-stack,
.mini-price-stack {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.offer-price-row {
  margin-top: 10px;
}

.old-price {
  position: relative;
  display: inline-block;
  color: rgba(247, 251, 255, 0.54);
  font-weight: 900;
}

.old-price::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: 52%;
  height: 2px;
  border-radius: 999px;
  background: var(--coral);
  transform: rotate(-7deg);
}

.offer-price-row strong {
  color: var(--text);
  font-size: 44px;
  line-height: 0.94;
}

.offer-price-row > span:last-child {
  color: rgba(247, 251, 255, 0.7);
  font-weight: 850;
}

.hero-offer p {
  margin: 8px 0 0;
  color: rgba(247, 251, 255, 0.68);
  font-size: 14px;
  font-weight: 750;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  overflow: hidden;
}

.btn svg {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
}

.btn-primary {
  background: var(--green);
  color: #041a0c;
  box-shadow: 0 16px 46px rgba(43, 214, 95, 0.23);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.btn.wide {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 0;
}

.hero-stats div,
.feature-card,
.proof-card,
.step-item,
.device-grid div,
.value-panel-shell,
.compat-panel,
.compat-highlights div,
.platform-group,
.compat-note,
.price-card,
.faq-list details,
.live-panel,
.mini-buy-card,
.mini-proof div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  padding: 14px 14px;
}

.hero-stats dt {
  color: var(--green);
  font-size: 24px;
  font-weight: 950;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: rgba(247, 251, 255, 0.72);
  font-size: 13px;
  font-weight: 750;
}

.live-panel {
  position: absolute;
  z-index: 3;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 58px;
  width: 310px;
  padding: 18px;
  box-shadow: var(--shadow);
  animation: floatPanel 5.8s ease-in-out infinite;
}

.live-panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--white);
  font-weight: 900;
}

.signal-meter {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  height: 34px;
  align-items: end;
  margin-bottom: 14px;
}

.signal-meter span {
  display: block;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, var(--teal), var(--green));
  animation: meter 1.4s ease-in-out infinite;
}

.signal-meter span:nth-child(1) { height: 38%; animation-delay: 0s; }
.signal-meter span:nth-child(2) { height: 58%; animation-delay: 0.1s; }
.signal-meter span:nth-child(3) { height: 78%; animation-delay: 0.2s; }
.signal-meter span:nth-child(4) { height: 100%; animation-delay: 0.3s; }
.signal-meter span:nth-child(5) { height: 72%; animation-delay: 0.4s; }

.live-panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.device-grid span {
  display: block;
  color: var(--muted-dark);
  font-size: 13px;
  font-weight: 800;
}

.value-panel {
  padding-top: 34px;
  padding-bottom: 34px;
}

.value-panel-shell {
  position: relative;
  overflow: hidden;
  padding: 34px;
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 30px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(43, 214, 95, 0.14), rgba(72, 230, 179, 0.08)),
    rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.value-panel-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(43, 214, 95, 0.35);
  pointer-events: none;
}

.value-intro,
.value-items {
  position: relative;
  z-index: 1;
}

.value-intro h2 {
  margin-bottom: 16px;
  font-size: 34px;
}

.value-intro p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.value-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-item {
  min-height: 210px;
  padding: 4px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.value-item:first-child {
  border-left: 0;
}

.value-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(43, 214, 95, 0.13);
  color: var(--green);
}

.value-icon svg {
  width: 26px;
  height: 26px;
}

.value-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.value-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 19px;
  line-height: 1.18;
}

.value-item > span:not(.value-icon) {
  display: block;
  color: rgba(247, 251, 255, 0.68);
  font-size: 15px;
}

.value-flow {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  opacity: 0.75;
}

.value-flow span {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(43, 214, 95, 0.1), rgba(43, 214, 95, 0.9), rgba(72, 230, 179, 0.18));
  transform-origin: left;
  animation: valuePulse 2.6s ease-in-out infinite;
}

.value-flow span:nth-child(2) { animation-delay: 0.16s; }
.value-flow span:nth-child(3) { animation-delay: 0.32s; }
.value-flow span:nth-child(4) { animation-delay: 0.48s; }

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-head.compact {
  max-width: 660px;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
}

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

.feature-card,
.proof-card {
  min-height: 280px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(0);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.proof-card:hover {
  transform: translateY(-4px);
  border-color: rgba(72, 230, 179, 0.38);
  background: rgba(255, 255, 255, 0.1);
}

.feature-icon,
.proof-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: rgba(72, 230, 179, 0.12);
  color: var(--teal);
}

.feature-icon svg {
  width: 27px;
  height: 27px;
}

.feature-card p,
.proof-card p,
.step-item p,
.faq-list p {
  color: var(--muted);
}

.proof-section {
  padding-top: 72px;
}

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

.proof-card {
  min-height: 250px;
}

.proof-icon {
  width: auto;
  min-width: 48px;
  padding: 0 12px;
  color: var(--green);
  font-size: 18px;
  font-weight: 950;
}

.message-band {
  position: relative;
  overflow: hidden;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 46px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 32px;
  align-items: center;
  border: 1px solid rgba(72, 230, 179, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(72, 230, 179, 0.12), rgba(255, 141, 106, 0.08)),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.message-copy h2 {
  max-width: 650px;
}

.message-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

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

.chat-card {
  width: 88%;
  padding: 16px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-dark);
  font-weight: 900;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  animation: chatIn 6s ease-in-out infinite;
}

.chat-card.outgoing {
  justify-self: end;
  background: var(--green);
  color: #041a0c;
  animation-delay: 0.8s;
}

.chat-card:nth-child(3) {
  animation-delay: 1.6s;
}

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

.step-item {
  padding: 24px;
}

.step-item > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--green);
  color: #041a0c;
  font-weight: 950;
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.device-grid div {
  min-height: 106px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text-dark);
}

.device-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.compatibility {
  padding-top: 68px;
}

.compat-panel {
  padding: 34px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(72, 230, 179, 0.14), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.compat-copy {
  display: grid;
  align-content: start;
}

.compat-copy h2 {
  max-width: 520px;
}

.compat-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

.compat-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.compat-highlights div {
  padding: 16px;
  background: rgba(0, 0, 0, 0.16);
}

.compat-highlights strong {
  display: block;
  color: var(--green);
  font-size: 28px;
  line-height: 1;
  font-weight: 950;
}

.compat-highlights span {
  display: block;
  margin-top: 7px;
  color: rgba(247, 251, 255, 0.7);
  font-size: 13px;
  font-weight: 800;
}

.platform-board {
  display: grid;
  gap: 12px;
}

.platform-group {
  padding: 18px;
  background: rgba(3, 12, 8, 0.42);
}

.platform-group-title {
  display: block;
  margin-bottom: 12px;
  color: rgba(247, 251, 255, 0.62);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.platform-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.platform-pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 7px 12px 7px 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(247, 251, 255, 0.9);
  font-weight: 850;
}

.platform-pills i {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 26px;
  padding: 0 7px;
  border-radius: 7px;
  background: rgba(43, 214, 95, 0.13);
  color: var(--green);
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}

.compat-note {
  padding: 16px 18px;
  display: grid;
  gap: 4px;
  background: rgba(43, 214, 95, 0.1);
}

.compat-note span {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.compat-note strong {
  color: var(--text);
  font-size: 15px;
  line-height: 1.35;
}

.price-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 86px;
  display: grid;
  grid-template-columns: 1fr 410px;
  gap: 32px;
  align-items: center;
}

.price-copy p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
}

.price-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-dark);
  box-shadow: var(--shadow);
}

.price-card-top span,
.price-card-top small {
  display: block;
  color: var(--muted-dark);
  font-weight: 800;
}

.price-card-top strong {
  display: block;
  margin: 0 0 2px;
  color: #07111b;
  font-size: 48px;
  line-height: 1;
}

.price-card .price-stack {
  margin: 8px 0 4px;
}

.price-card .old-price,
.mini-buy-card .old-price {
  color: rgba(86, 101, 117, 0.74);
  font-size: 24px;
}

.price-card .old-price::after,
.mini-buy-card .old-price::after {
  height: 2px;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: #243241;
  font-weight: 800;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

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

.faq-list details {
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.07);
}

.faq-list summary {
  cursor: pointer;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand,
.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
}

.footer-links a {
  color: var(--muted);
}

.payment-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 78% 4%, rgba(72, 230, 179, 0.22), transparent 32%),
    radial-gradient(circle at 14% 78%, rgba(255, 141, 106, 0.1), transparent 34%),
    linear-gradient(180deg, #06130f 0%, #071911 58%, #040b08 100%);
  color: var(--text);
}

.payment-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 118px 0 70px;
}

.payment-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 34px;
  align-items: center;
}

.payment-copy {
  max-width: 710px;
  padding: 44px 0;
}

.payment-copy h1 {
  margin: 0 0 20px;
  color: var(--white);
  font-size: clamp(52px, 7vw, 92px);
  line-height: 0.92;
  letter-spacing: 0;
}

.payment-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(247, 251, 255, 0.78);
  font-size: 20px;
  font-weight: 760;
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.payment-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(72, 230, 179, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(247, 251, 255, 0.9);
  font-size: 14px;
  font-weight: 900;
}

.payment-checkout {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(72, 230, 179, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text-dark);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.payment-checkout::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--green), rgba(255, 141, 106, 0.86));
}

.payment-checkout-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.payment-checkout-head span,
.payment-checkout-head strong {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.payment-checkout-head span {
  background: rgba(43, 214, 95, 0.14);
  color: #087b30;
}

.payment-checkout-head strong {
  background: rgba(8, 123, 103, 0.1);
  color: #087b67;
}

.payment-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.payment-price-row strong {
  color: #06130f;
  font-size: clamp(54px, 7vw, 76px);
  line-height: 0.92;
  font-weight: 950;
}

.payment-price-row small {
  color: var(--muted-dark);
  font-size: 17px;
  font-weight: 900;
}

.payment-old-price {
  position: relative;
  color: rgba(86, 101, 117, 0.75);
  font-size: 26px;
  font-weight: 950;
}

.payment-old-price::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: 50%;
  height: 3px;
  transform: rotate(-8deg);
  border-radius: 999px;
  background: var(--coral);
}

.payment-includes {
  display: grid;
  gap: 11px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.payment-includes li {
  position: relative;
  padding-left: 25px;
  color: #263645;
  font-weight: 820;
}

.payment-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(43, 214, 95, 0.13);
}

.payment-note {
  margin: 16px 0 0;
  color: var(--muted-dark);
  font-size: 14px;
  font-weight: 760;
}

.site-checkout-form {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.site-trial-form {
  display: grid;
  gap: 12px;
}

.site-form-label {
  color: #132331;
  font-size: 14px;
  font-weight: 900;
}

.site-checkout-form input[type="email"],
.site-trial-form input[type="email"] {
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  border: 1px solid rgba(8, 123, 103, 0.22);
  border-radius: var(--radius);
  background: #f8fffb;
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 800;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.site-checkout-form input[type="email"]::placeholder,
.site-trial-form input[type="email"]::placeholder {
  color: rgba(86, 101, 117, 0.58);
}

.site-checkout-form input[type="email"]:focus,
.site-trial-form input[type="email"]:focus {
  border-color: rgba(43, 214, 95, 0.74);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(43, 214, 95, 0.16);
}

.site-checkout-form button[disabled],
.site-trial-form button[disabled],
.payment-result-card button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.site-checkout-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #405263;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.35;
}

.site-checkout-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--green);
}

.site-checkout-consent a {
  color: #087b67;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-checkout-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 13px;
  font-weight: 820;
}

.site-checkout-status.error {
  color: #b3261e;
}

.site-checkout-status.success {
  color: #087b30;
}

.site-trial-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 22px;
  align-items: start;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(72, 230, 179, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(11, 42, 33, 0.96), rgba(6, 17, 29, 0.96)),
    #06111d;
  color: var(--text-light);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.app-landing-page .site-trial-section {
  width: min(1180px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.site-trial-copy h2 {
  max-width: 620px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

.site-trial-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 14px 0 0;
  color: rgba(247, 251, 255, 0.78);
  font-size: 17px;
  font-weight: 780;
}

.site-trial-section .site-trial-form {
  padding: 20px;
  border: 1px solid rgba(72, 230, 179, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text-dark);
}

.site-trial-rules {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-trial-rules span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(43, 214, 95, 0.13);
  color: #087b30;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.site-trial-result {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(43, 214, 95, 0.24);
  border-radius: var(--radius);
  background: rgba(43, 214, 95, 0.08);
}

.site-trial-result p {
  margin: 0;
  color: #263645;
  font-size: 13px;
  font-weight: 820;
  line-height: 1.35;
}

.payment-trust-strip,
.payment-info-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.payment-trust-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.payment-trust-strip div,
.payment-info-grid article {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
}

.payment-trust-strip div {
  min-height: 108px;
  padding: 20px;
}

.payment-trust-strip strong {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--green);
  color: #041a0c;
  font-size: 18px;
  font-weight: 950;
}

.payment-trust-strip span {
  display: block;
  color: rgba(247, 251, 255, 0.82);
  font-weight: 850;
}

.payment-info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.payment-info-grid article {
  min-height: 178px;
  padding: 24px;
}

.payment-info-grid h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 22px;
  line-height: 1.12;
}

.payment-info-grid p {
  margin: 0;
  color: rgba(247, 251, 255, 0.72);
  font-size: 15px;
  font-weight: 760;
}

.payment-info-grid a {
  color: var(--teal);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.app-landing-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 76% 10%, rgba(72, 230, 179, 0.16), transparent 32%),
    linear-gradient(180deg, #06130f 0%, #071911 48%, #04100c 100%);
  color: var(--text);
}

.app-landing-hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  padding-top: 72px;
}

.app-landing-picture,
.app-landing-media,
.app-landing-overlay {
  position: absolute;
  inset: 0;
}

.app-landing-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  opacity: 0.72;
  filter: saturate(0.94) contrast(1.04);
}

.app-landing-overlay {
  background:
    linear-gradient(90deg, rgba(3, 12, 8, 0.98) 0%, rgba(5, 18, 13, 0.9) 38%, rgba(5, 18, 13, 0.56) 70%, rgba(5, 18, 13, 0.16) 100%),
    linear-gradient(0deg, rgba(3, 14, 10, 0.98) 0%, rgba(3, 14, 10, 0.28) 44%, rgba(3, 14, 10, 0.72) 100%);
}

.app-landing-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 34px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100svh - 72px);
  margin: 0 auto;
  padding: 44px 0 34px;
}

.app-landing-copy {
  max-width: 720px;
}

.app-landing-copy h1 {
  max-width: 760px;
  margin: 0 0 20px;
  color: var(--white);
  font-size: clamp(46px, 6.6vw, 86px);
  line-height: 0.92;
}

.app-landing-copy p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(247, 251, 255, 0.78);
  font-size: 20px;
  font-weight: 780;
}

.app-keyword-cloud,
.app-device-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.app-keyword-cloud {
  margin-top: 26px;
}

.app-keyword-cloud span,
.app-device-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(72, 230, 179, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(247, 251, 255, 0.9);
  font-size: 14px;
  font-weight: 900;
}

.app-landing-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
  margin-top: 18px;
}

.app-landing-stats div {
  min-height: 92px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.app-landing-stats strong,
.app-landing-stats span {
  display: block;
}

.app-landing-stats strong {
  color: var(--green);
  font-size: 30px;
  line-height: 1;
}

.app-landing-stats span {
  margin-top: 8px;
  color: rgba(247, 251, 255, 0.72);
  font-size: 13px;
  font-weight: 850;
}

.app-checkout {
  align-self: center;
}

/* Pricing period cards on the dedicated Happ landing. */
.app-landing-page .hero-period-label {
  margin: 2px 0 -3px;
  color: #263645;
  font-size: 13px;
  font-weight: 950;
}

.app-landing-page .hero-periods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.app-landing-page .hero-period {
  position: relative;
  min-width: 0;
  min-height: 112px;
  padding: 12px 9px;
  border: 1px solid rgba(8, 123, 103, .16);
  border-radius: 15px;
  background: linear-gradient(180deg, #fff, #f3faf6);
  color: #132331;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 8px 24px rgba(7, 58, 43, .06);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.app-landing-page .hero-period:hover {
  border-color: rgba(31, 204, 91, .7);
  transform: translateY(-1px);
}

.app-landing-page .hero-period.is-active {
  border-color: #1fcc5b;
  background: linear-gradient(180deg, #effff5, #e3f9eb);
  box-shadow: inset 0 0 0 1px #1fcc5b, 0 12px 28px rgba(31, 204, 91, .14);
}

.app-landing-page .hero-period.is-active::after {
  content: "✓";
  position: absolute;
  right: 7px;
  top: 7px;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: #1fcc5b;
  color: #042014;
  font-size: 10px;
  font-weight: 950;
}

.app-landing-page .hero-period strong,
.app-landing-page .hero-period b,
.app-landing-page .hero-period small {
  display: block;
}

.app-landing-page .hero-period strong {
  padding-right: 17px;
  font-size: 13px;
  line-height: 1.2;
}

.app-landing-page .hero-period b {
  margin-top: 8px;
  color: #087b30;
  font-size: 18px;
  line-height: 1;
}

.app-landing-page .hero-period small {
  margin-top: 5px;
  color: #657586;
  font-size: 9px;
  line-height: 1.25;
}

.app-landing-page .hero-period em {
  display: inline-flex;
  margin-top: 7px;
  padding: 4px 6px;
  border-radius: 999px;
  background: rgba(31, 204, 91, .13);
  color: #087b30;
  font-size: 8px;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
}

.app-landing-page .hero-period-price-note {
  min-height: 17px;
  margin: -3px 0 0;
  color: #657586;
  font-size: 11px;
  font-weight: 800;
  text-align: right;
}

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

.app-client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.app-client-grid article,
.app-device-section,
.app-legal-strip a {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.074), rgba(255, 255, 255, 0.038)),
    rgba(5, 18, 14, 0.88);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

.app-client-grid article {
  min-height: 220px;
  padding: 24px;
}

.app-client-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(43, 214, 95, 0.14);
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
}

.app-client-grid h3 {
  margin: 18px 0 10px;
  color: var(--white);
  font-size: 24px;
  line-height: 1.08;
}

.app-client-grid p,
.app-device-copy p {
  margin: 0;
  color: rgba(247, 251, 255, 0.72);
  font-weight: 760;
}

.app-device-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
}

.app-device-copy h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.96;
}

.app-steps-section {
  padding-top: 32px;
}

.app-legal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-top: 24px;
}

.app-legal-strip a {
  min-height: 122px;
  padding: 20px;
}

.app-legal-strip strong,
.app-legal-strip span {
  display: block;
}

.app-legal-strip strong {
  color: var(--white);
  font-size: 18px;
  line-height: 1.14;
}

.app-legal-strip span {
  margin-top: 8px;
  color: rgba(247, 251, 255, 0.68);
  font-size: 14px;
  font-weight: 760;
}

.info-page {
  background: #f5f8fb;
  color: var(--text-dark);
}

.info-header {
  position: sticky;
}

.info-content {
  width: min(820px, calc(100% - 40px));
  margin: 112px auto 64px;
  padding: 32px;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--text-dark);
  box-shadow: 0 20px 70px rgba(10, 28, 42, 0.12);
}

.info-content h1 {
  color: var(--text-dark);
  font-size: 42px;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.info-content p {
  color: var(--muted-dark);
  font-size: 17px;
}

.miniapp-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 82% -10%, rgba(72, 230, 179, 0.18), transparent 36%),
    linear-gradient(180deg, #05120e 0%, #06130f 52%, #030b08 100%);
  color: var(--text);
}

.miniapp-shell {
  width: min(100% - 24px, 460px);
  margin: 0 auto;
  padding: calc(12px + env(safe-area-inset-top)) 0 calc(18px + env(safe-area-inset-bottom));
}

.mini-hero,
.mini-offer,
.mini-benefits article,
.mini-platforms,
.mini-steps div {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

.mini-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.mini-hero picture,
.mini-hero-bg,
.mini-hero-overlay,
.mini-flow {
  position: absolute;
  inset: 0;
}

.mini-hero picture {
  display: block;
}

.mini-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.mini-hero-overlay {
  background:
    linear-gradient(180deg, rgba(2, 10, 7, 0.82) 0%, rgba(4, 17, 12, 0.66) 44%, rgba(4, 17, 12, 0.96) 100%),
    linear-gradient(90deg, rgba(2, 10, 7, 0.98) 0%, rgba(5, 18, 13, 0.8) 58%, rgba(5, 18, 13, 0.34) 100%);
}

.mini-flow {
  pointer-events: none;
  opacity: 0.72;
}

.mini-flow span {
  position: absolute;
  left: -34%;
  width: 72%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(72, 230, 179, 0.76), rgba(43, 214, 95, 0.52), transparent);
  animation: flowLine 6.8s linear infinite;
}

.mini-flow span:nth-child(1) { top: 34%; }
.mini-flow span:nth-child(2) { top: 49%; animation-delay: 1.7s; }
.mini-flow span:nth-child(3) { top: 64%; animation-delay: 3.1s; }

.mini-topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 0;
}

.mini-brand,
.mini-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.mini-brand {
  color: var(--white);
}

.mini-status {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(43, 214, 95, 0.28);
  border-radius: 999px;
  background: rgba(43, 214, 95, 0.1);
  color: var(--green);
}

.mini-hero-content {
  position: relative;
  z-index: 1;
  padding: 58px 18px 22px;
}

.mini-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 16px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(72, 230, 179, 0.12);
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.mini-hero h1 {
  max-width: 390px;
  margin-bottom: 14px;
  font-size: 38px;
  line-height: 0.98;
}

.mini-hero p {
  max-width: 360px;
  color: rgba(247, 251, 255, 0.82);
  font-size: 17px;
  font-weight: 800;
}

.mini-offer {
  position: relative;
  overflow: hidden;
  margin-top: 12px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(43, 214, 95, 0.2), rgba(72, 230, 179, 0.06)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(43, 214, 95, 0.12);
}

.mini-offer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--green), transparent);
}

.mini-offer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.mini-offer-head span,
.mini-offer-head strong {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.mini-offer-head span {
  background: rgba(43, 214, 95, 0.14);
  color: var(--green);
}

.mini-offer-head strong {
  background: rgba(255, 141, 106, 0.14);
  color: #ffb49c;
}

.mini-price-stack {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}

.mini-price-stack .old-price {
  color: rgba(247, 251, 255, 0.56);
  font-size: 24px;
}

.mini-price-stack h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: 54px;
  line-height: 0.92;
}

.mini-price-stack small {
  color: rgba(247, 251, 255, 0.72);
  font-size: 15px;
  font-weight: 900;
}

.mini-offer-line {
  height: 5px;
  overflow: hidden;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.mini-offer-line span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--green));
  animation: valuePulse 4s ease-in-out infinite;
}

.mini-offer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.mini-offer-tags span,
.mini-platform-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(72, 230, 179, 0.22);
  border-radius: 999px;
  background: rgba(6, 19, 15, 0.54);
  color: rgba(247, 251, 255, 0.9);
  font-size: 12px;
  font-weight: 900;
}

.mini-buy {
  position: relative;
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: var(--radius);
  background: var(--green);
  color: #041a0c;
  font-size: 17px;
  font-weight: 950;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 18px 52px rgba(43, 214, 95, 0.24);
}

.mini-buy-bottom {
  margin-top: 12px;
}

.mini-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.mini-benefits article {
  min-height: 142px;
  padding: 14px;
}

.mini-benefits strong,
.mini-benefits span {
  display: block;
}

.mini-benefits strong {
  margin: 10px 0 5px;
  color: var(--white);
  font-size: 17px;
  line-height: 1.16;
}

.mini-benefits article > span:last-child {
  color: rgba(247, 251, 255, 0.68);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.28;
}

.mini-benefit-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(72, 230, 179, 0.32);
  border-radius: 8px;
  background: rgba(72, 230, 179, 0.1);
  color: var(--green);
}

.mini-benefit-icon svg {
  width: 20px;
  height: 20px;
}

.mini-benefit-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.mini-platforms {
  display: grid;
  gap: 14px;
  margin-top: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.mini-platforms span,
.mini-platforms strong {
  display: block;
}

.mini-platforms div:first-child > span {
  margin-bottom: 4px;
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.mini-platforms div:first-child > strong {
  color: var(--text);
  font-size: 17px;
  line-height: 1.28;
}

.mini-platform-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.mini-steps div {
  min-height: 88px;
  padding: 12px 10px;
}

.mini-steps strong {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: var(--green);
  color: #041a0c;
  font-size: 14px;
  font-weight: 950;
}

.mini-steps span {
  display: block;
  color: rgba(247, 251, 255, 0.72);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.22;
}

.mini-hero-v2 {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #06130f;
}

.mini-hero-v2 .mini-hero-overlay {
  background:
    linear-gradient(180deg, rgba(2, 10, 7, 0.72) 0%, rgba(4, 17, 12, 0.88) 50%, rgba(4, 17, 12, 0.98) 100%),
    linear-gradient(90deg, rgba(2, 10, 7, 0.98) 0%, rgba(5, 18, 13, 0.74) 56%, rgba(5, 18, 13, 0.24) 100%);
}

.mini-hero-v2 .mini-hero-content {
  padding: 48px 18px 16px;
}

.mini-hero-v2 h1 {
  max-width: 360px;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 54px;
  line-height: 0.92;
}

.mini-price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.mini-price-old {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(247, 251, 255, 0.68);
  font-size: 18px;
  font-weight: 950;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(255, 141, 106, 0.95);
}

.mini-price-row strong {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(255, 141, 106, 0.16);
  color: #ffbeaa;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.mini-hero-v2 .mini-buy-primary {
  margin-top: 18px;
}

.mini-proof-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 0 12px 12px;
}

.mini-proof-grid div {
  min-height: 86px;
  padding: 12px 10px;
  border: 1px solid rgba(72, 230, 179, 0.22);
  border-radius: 14px;
  background: rgba(3, 14, 10, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mini-proof-grid strong,
.mini-proof-grid span {
  display: block;
}

.mini-proof-grid strong {
  margin-bottom: 6px;
  color: var(--green);
  font-size: 24px;
  line-height: 1;
}

.mini-proof-grid span {
  color: rgba(247, 251, 255, 0.78);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
}

.mini-smart-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.mini-smart-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(43, 214, 95, 0.1), rgba(72, 230, 179, 0.04)),
    rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

.mini-smart-list strong,
.mini-smart-list span {
  display: block;
}

.mini-smart-list strong {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 16px;
  line-height: 1.2;
}

.mini-smart-list article > div > span {
  color: rgba(247, 251, 255, 0.68);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.35;
}

.mini-device-strip {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(72, 230, 179, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(72, 230, 179, 0.12), rgba(43, 214, 95, 0.06)),
    rgba(255, 255, 255, 0.07);
}

.mini-device-strip > span {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.mini-device-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-device-cloud b {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(6, 19, 15, 0.62);
  color: rgba(247, 251, 255, 0.9);
  font-size: 12px;
  font-weight: 900;
}

.mini-profile-card,
.mini-connect-guide {
  display: grid;
  gap: 14px;
  margin-top: 12px;
  padding: 16px;
  border: 1px solid rgba(223, 255, 238, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 251, 246, 0.98)),
    #f5fcf8;
  color: #0d1722;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.mini-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.mini-card-head h2,
.mini-card-head p {
  margin: 0;
}

.mini-card-head h2 {
  color: #0d1722;
  font-size: 24px;
  line-height: 1.05;
}

.mini-card-head p:not(.mini-section-kicker) {
  margin-top: 7px;
  color: #405263;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.4;
}

.mini-section-kicker {
  margin: 0 0 7px;
  color: #087b67;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.mini-profile-state,
.mini-guide-head > strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(8, 123, 103, 0.13);
  border-radius: 999px;
  background: rgba(8, 123, 103, 0.08);
  color: #087b67;
  font-size: 12px;
  font-weight: 950;
  text-align: center;
  white-space: nowrap;
}

.mini-profile-state.success {
  border-color: rgba(43, 214, 95, 0.32);
  background: rgba(43, 214, 95, 0.16);
  color: #087b30;
}

.mini-profile-state.warning {
  border-color: rgba(255, 141, 106, 0.32);
  background: rgba(255, 141, 106, 0.12);
  color: #934124;
}

.mini-profile-state.error {
  border-color: rgba(220, 38, 38, 0.24);
  background: rgba(220, 38, 38, 0.1);
  color: #991b1b;
}

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

.mini-profile-grid div {
  display: grid;
  gap: 5px;
  min-height: 76px;
  padding: 12px;
  border: 1px solid rgba(8, 123, 103, 0.1);
  border-radius: 14px;
  background: #ffffff;
}

.mini-profile-grid span {
  color: #657586;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-profile-grid strong {
  color: #0d1722;
  font-size: 18px;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.mini-link-panel,
.mini-profile-empty,
.mini-guide-panel,
.mini-guide-note {
  border: 1px solid rgba(8, 123, 103, 0.12);
  border-radius: 14px;
  background: #ffffff;
}

.mini-link-panel,
.mini-profile-empty {
  display: grid;
  gap: 11px;
  padding: 14px;
}

.mini-link-panel[hidden],
.mini-profile-empty[hidden] {
  display: none;
}

.mini-link-panel label {
  color: #087b67;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.mini-link-panel textarea {
  width: 100%;
  min-height: 84px;
  resize: none;
  padding: 12px;
  border: 1px solid rgba(8, 123, 103, 0.14);
  border-radius: 12px;
  background: #f7fcfa;
  color: #132331;
  font: 760 12px/1.42 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  outline: none;
}

.mini-link-actions,
.mini-guide-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.mini-link-actions a,
.mini-link-actions button,
.mini-guide-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid rgba(8, 123, 103, 0.14);
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 920;
  text-align: center;
  text-decoration: none;
}

.mini-action-primary,
.mini-download-primary {
  background: linear-gradient(180deg, #41ec7d 0%, #1fcc5b 100%);
  color: #041a0c;
  box-shadow: 0 12px 28px rgba(43, 214, 95, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.mini-action-secondary,
.mini-download-secondary {
  background: #f6fbf8;
  color: #0d1722;
}

.mini-action-primary.is-disabled {
  cursor: not-allowed;
  opacity: 0.58;
  box-shadow: none;
}

.mini-link-hint,
.mini-profile-empty p {
  margin: 0;
  color: #536273;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.38;
}

.mini-profile-empty h3 {
  margin: 0;
  color: #0d1722;
  font-size: 19px;
}

.mini-guide-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
}

.mini-guide-tabs button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(8, 123, 103, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #405263;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.mini-guide-tabs button.is-active {
  border-color: rgba(43, 214, 95, 0.5);
  background: var(--green);
  color: #041a0c;
  box-shadow: 0 10px 28px rgba(43, 214, 95, 0.16);
}

.mini-guide-panel {
  display: grid;
  gap: 13px;
  padding: 14px;
}

.mini-guide-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.mini-guide-title-row span,
.mini-guide-title-row strong {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.mini-guide-title-row span {
  background: rgba(8, 123, 103, 0.09);
  color: #087b67;
  text-transform: uppercase;
}

.mini-guide-title-row strong {
  background: rgba(43, 214, 95, 0.14);
  color: #087b30;
}

.mini-guide-title-row h3 {
  margin: 8px 0 0;
  color: #0d1722;
  font-size: 23px;
  line-height: 1.08;
}

.mini-guide-steps-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mini-guide-steps-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(8, 123, 103, 0.1);
  border-radius: 12px;
  background: #f8fcfa;
}

.mini-guide-steps-list li > strong {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green);
  color: #041a0c;
  font-size: 14px;
  font-weight: 950;
}

.mini-guide-steps-list span,
.mini-guide-steps-list b,
.mini-guide-steps-list em {
  display: block;
}

.mini-guide-steps-list b {
  margin-bottom: 4px;
  color: #132331;
  font-size: 14px;
  line-height: 1.18;
}

.mini-guide-steps-list em {
  color: #566575;
  font-style: normal;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.36;
}

.mini-guide-note {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  padding: 13px;
  background: rgba(255, 141, 106, 0.08);
}

.mini-guide-note strong {
  color: #8a3a1e;
  font-weight: 950;
}

.mini-guide-note span {
  color: #405263;
  font-size: 13px;
  font-weight: 780;
  line-height: 1.38;
}

.mini-steps-v2 div {
  border-radius: 14px;
}

.mini-buy-bottom {
  margin-top: 14px;
}

@media (max-width: 390px) {
  .miniapp-shell {
    width: min(100% - 18px, 460px);
  }

  .mini-hero-v2 {
    min-height: 540px;
  }

  .mini-hero-v2 h1 {
    font-size: 46px;
  }

  .mini-proof-grid {
    grid-template-columns: 1fr;
  }

  .mini-proof-grid div {
    min-height: auto;
  }

  .mini-card-head,
  .mini-guide-title-row,
  .mini-guide-note {
    grid-template-columns: 1fr;
  }

  .mini-card-head,
  .mini-guide-title-row {
    display: grid;
  }

  .mini-profile-state,
  .mini-guide-head > strong,
  .mini-guide-title-row strong {
    justify-self: start;
    white-space: normal;
  }

  .mini-profile-grid,
  .mini-link-actions,
  .mini-guide-actions {
    grid-template-columns: 1fr;
  }
}

@keyframes heroDrift {
  from { transform: scale(1); }
  to { transform: scale(1.045); }
}

@keyframes flowLine {
  from { transform: translateX(0); opacity: 0; }
  15% { opacity: 1; }
  80% { opacity: 1; }
  to { transform: translateX(210%); opacity: 0; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.86); opacity: 0.72; }
}

@keyframes sheen {
  0%, 35% { transform: translateX(0) skewX(-22deg); opacity: 0; }
  48% { opacity: 1; }
  65%, 100% { transform: translateX(420%) skewX(-22deg); opacity: 0; }
}

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

@keyframes meter {
  0%, 100% { opacity: 0.75; transform: scaleY(0.86); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes chatIn {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes valuePulse {
  0%, 100% { transform: scaleX(0.7); opacity: 0.42; }
  50% { transform: scaleX(1); opacity: 1; }
}

@media (max-width: 1060px) {
  .site-header {
    gap: 12px;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

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

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

  .value-panel-shell {
    grid-template-columns: 1fr;
  }

  .compat-panel {
    grid-template-columns: 1fr;
  }

  .device-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .price-section,
  .message-band {
    grid-template-columns: 1fr;
  }

  .live-panel {
    display: none;
  }

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

  .footer-links {
    max-width: 100%;
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 64px;
    padding: 10px 14px;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    margin-left: auto;
    min-height: 42px;
    padding: 0 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
  }

  .hero-media {
    object-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 12, 8, 0.98), rgba(5, 18, 13, 0.84)),
      linear-gradient(0deg, rgba(6, 19, 15, 0.94), rgba(6, 19, 15, 0.18));
  }

  .hero-content {
    width: calc(100% - 28px);
    padding: 28px 0 22px;
  }

  h1 {
    font-size: 46px;
  }

  .hero-copy-column h1 {
    font-size: 42px;
    line-height: 0.98;
  }

  h2 {
    font-size: 32px;
  }

  .hero-copy {
    margin-bottom: 14px;
    font-size: 17px;
  }

  .hero-offer {
    margin-bottom: 12px;
    padding: 12px;
  }

  .offer-price-row {
    margin-top: 8px;
  }

  .offer-price-row strong {
    font-size: 34px;
  }

  .hero-offer p {
    font-size: 12px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.64fr);
    gap: 10px;
    margin-bottom: 12px;
  }

  .btn {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    font-size: 14px;
  }

  .btn svg {
    width: 17px;
    height: 17px;
  }

  .hero-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .hero-stats div {
    padding: 8px 7px;
  }

  .hero-stats dt {
    font-size: 20px;
  }

  .hero-stats dd {
    font-size: 11px;
  }

  .section,
  .message-band,
  .price-section,
  .site-footer {
    width: calc(100% - 28px);
  }

  .section {
    padding: 56px 0;
  }

  .feature-grid,
  .value-items,
  .proof-grid,
  .steps-row,
  .device-grid {
    grid-template-columns: 1fr;
  }

  .value-panel-shell {
    padding: 22px;
  }

  .value-intro h2 {
    font-size: 28px;
    line-height: 1.08;
  }

  .value-intro p:not(.eyebrow) {
    font-size: 16px;
  }

  .value-item {
    min-height: auto;
    padding: 18px 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .value-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
  }

  .value-item strong {
    font-size: 18px;
  }

  .value-item:first-child {
    border-top: 0;
  }

  .value-flow {
    left: 24px;
    right: 24px;
    bottom: 16px;
  }

  .compat-panel {
    padding: 22px;
  }

  .compat-highlights {
    grid-template-columns: 1fr;
  }

  .message-band {
    padding: 24px;
  }

  .price-section {
    padding: 48px 0 64px;
  }

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

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 410px) {
  .brand {
    font-size: 15px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-stats dt {
    font-size: 18px;
  }

  .hero-stats dd {
    font-size: 10px;
  }

  .mini-hero {
    min-height: 400px;
  }

  .mini-hero h1 {
    font-size: 34px;
  }

  .mini-price-stack h2 {
    font-size: 46px;
  }

  .mini-benefits article {
    min-height: 134px;
    padding: 12px;
  }
}

@media (max-width: 360px) {
  .mini-benefits,
  .mini-steps {
    grid-template-columns: 1fr;
  }
}

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

/* Professional visual polish for Agorig landing. Kept as overrides to preserve the working markup. */
:root {
  --bg: #03110d;
  --bg-2: #081c17;
  --surface: rgba(255, 255, 255, 0.065);
  --surface-strong: rgba(255, 255, 255, 0.11);
  --line: rgba(223, 255, 238, 0.14);
  --muted: #b7c5c0;
  --muted-dark: #546273;
  --teal: #55e3bd;
  --green: #26df67;
  --cyan: #74d8ff;
  --coral: #ff9a78;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.4);
}

body {
  background:
    linear-gradient(180deg, #03110d 0%, #061611 42%, #030b08 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.22;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 72%, transparent 100%);
}

.site-header {
  background: rgba(3, 15, 11, 0.84);
  border-bottom-color: rgba(223, 255, 238, 0.11);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.22);
}

.brand-mark {
  border-color: rgba(85, 227, 189, 0.5);
  background:
    linear-gradient(145deg, rgba(85, 227, 189, 0.18), rgba(38, 223, 103, 0.11)),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.header-cta,
.btn-primary,
.mini-buy {
  background: linear-gradient(180deg, #41ec7d 0%, #1fcc5b 100%);
  box-shadow: 0 18px 46px rgba(38, 223, 103, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.header-cta:hover,
.btn-primary:hover,
.mini-buy:hover {
  transform: translateY(-1px);
}

.header-cta,
.btn {
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.hero {
  min-height: 92svh;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(85, 227, 189, 0.42), transparent);
  z-index: 2;
}

.hero-media {
  object-position: 58% center;
  filter: saturate(0.94) contrast(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 9, 7, 0.99) 0%, rgba(4, 17, 12, 0.94) 35%, rgba(4, 17, 12, 0.58) 66%, rgba(4, 17, 12, 0.2) 100%),
    linear-gradient(0deg, rgba(3, 17, 13, 0.98) 0%, rgba(3, 17, 13, 0.2) 38%, rgba(3, 17, 13, 0.26) 100%);
}

.hero-content {
  padding-top: 92px;
  padding-bottom: 84px;
}

.hero-content > * {
  max-width: 620px;
}

.eyebrow {
  color: #68e9c8;
}

h1,
h2,
.section-head h2 {
  text-wrap: balance;
}

.hero-copy {
  max-width: 660px;
  color: rgba(247, 251, 255, 0.88);
  font-weight: 760;
  line-height: 1.42;
}

.hero-offer {
  position: relative;
  overflow: hidden;
  padding: 20px 22px 18px;
  border-color: rgba(85, 227, 189, 0.34);
  background:
    linear-gradient(135deg, rgba(38, 223, 103, 0.16), rgba(116, 216, 255, 0.055)),
    rgba(4, 20, 14, 0.82);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28), 0 18px 54px rgba(38, 223, 103, 0.1);
}

.hero-offer::before,
.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--green), rgba(116, 216, 255, 0.45), transparent);
}

.offer-label,
.price-badge {
  min-height: 28px;
  background: rgba(38, 223, 103, 0.15);
  color: #64f29b;
  box-shadow: inset 0 0 0 1px rgba(38, 223, 103, 0.12);
}

.offer-price-row {
  gap: 12px;
  margin-top: 12px;
}

.old-price::after {
  height: 3px;
  background: linear-gradient(90deg, var(--coral), #ff6f55);
  box-shadow: 0 0 0 1px rgba(255, 154, 120, 0.18);
}

.offer-price-row strong {
  font-size: 50px;
  letter-spacing: 0;
}

.hero-offer p {
  max-width: 470px;
  color: rgba(247, 251, 255, 0.72);
}

.offer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.offer-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(247, 251, 255, 0.84);
  font-size: 12px;
  font-weight: 850;
}

.offer-trust span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(38, 223, 103, 0.11);
}

.hero-happ-card {
  width: min(100%, 620px);
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin: 0 0 16px;
  padding: 14px;
  border: 1px solid rgba(72, 230, 179, 0.3);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(72, 230, 179, 0.16), rgba(255, 255, 255, 0.055)),
    rgba(4, 20, 14, 0.82);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  scroll-margin-top: 104px;
}

.hero-happ-card-main {
  width: min(100%, 650px);
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 18px;
  margin: 0 0 18px;
  padding: 18px;
  border-color: rgba(72, 230, 179, 0.42);
  background:
    linear-gradient(135deg, rgba(72, 230, 179, 0.22), rgba(255, 255, 255, 0.06)),
    rgba(4, 20, 14, 0.9);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-happ-card img {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.hero-happ-card-main img {
  width: 84px;
  height: 84px;
  border-radius: 20px;
}

.hero-happ-card span {
  display: block;
  margin-bottom: 3px;
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-happ-card strong {
  display: block;
  color: var(--text);
  font-size: 20px;
  line-height: 1.18;
}

.hero-happ-card h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-happ-card p {
  margin: 5px 0 0;
  color: rgba(247, 251, 255, 0.72);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.34;
}

.hero-happ-markers {
  display: grid;
  gap: 8px;
}

.hero-happ-markers b {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  min-height: 31px;
  padding: 0 10px;
  border: 1px solid rgba(72, 230, 179, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(247, 251, 255, 0.88);
  font-size: 12px;
  font-weight: 950;
}

.hero-happ-card-main .hero-happ-markers b {
  min-width: 74px;
}

.app-happ-card {
  max-width: 650px;
  margin: 22px 0;
}

.hero-fast-card {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 13px;
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(223, 255, 238, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06)),
    rgba(5, 22, 16, 0.84);
  color: var(--text);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px);
}

.hero-fast-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, var(--teal), var(--green), rgba(116, 216, 255, 0.55), transparent);
}

.hero-fast-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
}

.hero-fast-head span,
.hero-fast-price span {
  display: block;
  color: rgba(247, 251, 255, 0.62);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-fast-head strong {
  display: block;
  margin-top: 4px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.05;
}

.hero-fast-price {
  min-width: 104px;
  text-align: right;
}

.hero-fast-price span {
  position: relative;
  display: inline-block;
  color: rgba(247, 251, 255, 0.5);
}

.hero-fast-price span::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: 52%;
  height: 2px;
  border-radius: 999px;
  background: var(--coral);
  transform: rotate(-7deg);
}

.hero-fast-price strong {
  display: block;
  margin-top: 3px;
  color: #67ff9b;
  font-size: 30px;
  line-height: 1;
}

.hero-fast-card .site-form-label {
  color: rgba(247, 251, 255, 0.86);
}

.hero-fast-card input[type="email"] {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(85, 227, 189, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: #101b24;
  font-size: 16px;
  font-weight: 900;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.hero-fast-card input[type="email"]:focus {
  border-color: rgba(65, 236, 125, 0.84);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(38, 223, 103, 0.16);
}

.hero-fast-consent {
  color: rgba(247, 251, 255, 0.72);
}

.hero-fast-consent a {
  color: #7cf5b0;
}

.hero-fast-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.hero-fast-buy,
.hero-fast-trial {
  width: 100%;
  min-height: 54px;
}

.hero-fast-buy path,
.hero-fast-trial path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.hero-fast-trial {
  border-color: rgba(85, 227, 189, 0.34);
  background:
    linear-gradient(180deg, rgba(85, 227, 189, 0.16), rgba(38, 223, 103, 0.08)),
    rgba(255, 255, 255, 0.055);
  color: #eafff1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-fast-trial:hover {
  transform: translateY(-1px);
  border-color: rgba(85, 227, 189, 0.54);
  box-shadow: 0 16px 46px rgba(38, 223, 103, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.hero-fast-result {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(43, 214, 95, 0.24);
  border-radius: 16px;
  background: rgba(43, 214, 95, 0.1);
}

.hero-fast-result[hidden] {
  display: none;
}

.hero-fast-result p,
.hero-fast-status,
.hero-fast-note {
  margin: 0;
}

.hero-fast-result p {
  color: rgba(247, 251, 255, 0.82);
  font-size: 13px;
  font-weight: 820;
  line-height: 1.35;
}

.hero-fast-status {
  min-height: 18px;
  color: rgba(247, 251, 255, 0.72);
  font-size: 13px;
  font-weight: 850;
}

.hero-fast-status.error {
  color: #ffb4a8;
}

.hero-fast-status.success {
  color: #8affb5;
}

.hero-fast-note {
  color: rgba(247, 251, 255, 0.58);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.35;
}

.hero-fast-card button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.hero .live-panel {
  display: none;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(223, 255, 238, 0.18);
}

.btn-secondary:hover {
  border-color: rgba(85, 227, 189, 0.4);
  box-shadow: inset 0 0 0 1px rgba(85, 227, 189, 0.14);
}

.hero-stats {
  gap: 12px;
  margin-top: clamp(26px, 3vw, 42px);
}

.hero-stats div {
  min-height: 88px;
  padding: 15px;
  border-color: rgba(223, 255, 238, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.045)),
    rgba(3, 15, 11, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-stats dt {
  color: #43ef82;
  line-height: 1;
}

.hero-stats dd {
  max-width: 120px;
  color: rgba(247, 251, 255, 0.68);
  line-height: 1.25;
}

.live-panel {
  border-color: rgba(223, 255, 238, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.055)),
    rgba(6, 18, 16, 0.72);
}

.section {
  padding: 92px 0;
}

.value-panel {
  width: 100%;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    linear-gradient(90deg, rgba(38, 223, 103, 0.08), rgba(116, 216, 255, 0.045));
  border-top: 1px solid rgba(223, 255, 238, 0.08);
  border-bottom: 1px solid rgba(223, 255, 238, 0.08);
}

.value-panel-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.value-panel-shell::before {
  display: none;
}

.value-items {
  gap: 12px;
}

.value-item {
  min-height: 196px;
  padding: 22px;
  border: 1px solid rgba(223, 255, 238, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.04)),
    rgba(4, 18, 14, 0.64);
}

.value-item:first-child {
  border-left: 1px solid rgba(223, 255, 238, 0.13);
}

.value-icon,
.feature-icon,
.proof-icon {
  background:
    linear-gradient(180deg, rgba(38, 223, 103, 0.18), rgba(116, 216, 255, 0.07)),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(85, 227, 189, 0.16);
}

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

.feature-card,
.proof-card,
.step-item,
.faq-list details {
  border-color: rgba(223, 255, 238, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.074), rgba(255, 255, 255, 0.038)),
    rgba(5, 18, 14, 0.88);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

.feature-card {
  min-height: 230px;
}

.feature-card p,
.proof-card p,
.step-item p,
.faq-list p,
.section-head p,
.price-copy p:not(.eyebrow),
.compat-copy p:not(.eyebrow),
.message-copy p:not(.eyebrow) {
  color: rgba(224, 235, 232, 0.72);
}

.proof-card {
  min-height: 228px;
}

.proof-icon {
  background: rgba(38, 223, 103, 0.11);
}

.message-band {
  width: 100%;
  margin: 0;
  padding: 62px max(20px, calc((100vw - 1180px) / 2));
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(38, 223, 103, 0.12), rgba(116, 216, 255, 0.08) 46%, rgba(255, 154, 120, 0.055)),
    #071814;
}

.chat-card {
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.chat-card.outgoing {
  background: linear-gradient(180deg, #43ef82, #20cc5c);
}

.compat-panel {
  border-color: rgba(223, 255, 238, 0.13);
  background:
    linear-gradient(135deg, rgba(38, 223, 103, 0.11), rgba(116, 216, 255, 0.06)),
    rgba(5, 18, 14, 0.88);
}

.compat-highlights div,
.platform-group,
.compat-note {
  border-color: rgba(223, 255, 238, 0.11);
  background: rgba(3, 13, 10, 0.44);
}

.platform-pills span {
  border-color: rgba(223, 255, 238, 0.13);
  background: rgba(255, 255, 255, 0.055);
}

.platform-pills i {
  background: rgba(38, 223, 103, 0.13);
  color: #62ed96;
}

.price-section {
  width: 100%;
  padding: 82px max(20px, calc((100vw - 1180px) / 2)) 96px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    linear-gradient(90deg, rgba(38, 223, 103, 0.06), rgba(116, 216, 255, 0.035));
  border-top: 1px solid rgba(223, 255, 238, 0.08);
  border-bottom: 1px solid rgba(223, 255, 238, 0.08);
}

.price-copy h2 {
  font-size: 52px;
}

.price-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(180deg, #ffffff 0%, #f0f7f2 100%);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34), 0 18px 48px rgba(38, 223, 103, 0.14);
}

.price-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.price-card-top strong {
  color: #07150f;
  font-size: 58px;
}

.price-card .old-price {
  font-size: 25px;
}

.price-card li {
  color: #203127;
}

.price-card li::before {
  background: linear-gradient(180deg, #41ec7d, #1fcc5b);
  box-shadow: 0 0 0 4px rgba(38, 223, 103, 0.13);
}

.price-card-note {
  margin: -6px 0 20px;
  padding: 12px 14px;
  border: 1px solid rgba(38, 223, 103, 0.22);
  border-radius: var(--radius);
  background: rgba(38, 223, 103, 0.08);
  color: #314239;
  font-size: 14px;
  font-weight: 760;
}

.faq-list summary {
  outline-offset: 6px;
}

.site-footer {
  border-top-color: rgba(223, 255, 238, 0.1);
}

@media (max-width: 1060px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    background: rgba(3, 15, 11, 0.91);
  }

  .header-cta {
    padding: 0 13px;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    object-position: 68% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(2, 9, 7, 0.99), rgba(4, 17, 12, 0.9)),
      linear-gradient(0deg, rgba(3, 17, 13, 0.98), rgba(3, 17, 13, 0.18));
  }

  .hero-content {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .hero-copy {
    font-size: 18px;
    line-height: 1.44;
  }

  .hero-happ-card {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .hero-happ-card-main {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .hero-happ-card img {
    width: 62px;
    height: 62px;
    border-radius: 15px;
  }

  .hero-happ-card-main img {
    width: 72px;
    height: 72px;
    border-radius: 17px;
  }

  .hero-happ-card h1 {
    font-size: 36px;
    line-height: 0.96;
  }

  .hero-happ-card strong {
    font-size: 17px;
  }

  .hero-happ-card p {
    font-size: 13px;
  }

  .hero-happ-markers {
    grid-column: 1 / -1;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  .hero-offer {
    padding: 16px;
  }

  .offer-price-row strong {
    font-size: 38px;
  }

  .offer-trust {
    display: grid;
    grid-template-columns: 1fr;
  }

  .offer-trust span {
    justify-content: flex-start;
  }

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

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-stats div {
    min-height: 82px;
    padding: 13px;
  }

  .hero-stats dt {
    font-size: 24px;
  }

  .hero-stats dd {
    max-width: none;
    font-size: 12px;
  }

  .section {
    padding: 62px 0;
  }

  .value-panel-shell {
    width: calc(100% - 28px);
    padding: 48px 0;
  }

  .value-items {
    gap: 10px;
  }

  .value-item,
  .value-item:first-child {
    padding: 17px;
    border: 1px solid rgba(223, 255, 238, 0.13);
  }

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

  .feature-card,
  .proof-card,
  .step-item {
    min-height: auto;
  }

  .message-band {
    width: 100%;
    padding: 50px 14px;
  }

  .message-band > * {
    width: min(100%, 620px);
    margin-left: auto;
    margin-right: auto;
  }

  .chat-card {
    width: 94%;
  }

  .compat-panel {
    padding: 20px;
  }

  .platform-pills span {
    width: 100%;
    min-height: 38px;
  }

  .price-section {
    padding: 58px 14px 70px;
  }

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

  .price-card {
    padding: 22px;
  }

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

  .footer-links {
    row-gap: 8px;
  }
}

@media (max-width: 410px) {
  .header-cta {
    min-height: 40px;
    font-size: 14px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .offer-price-row {
    gap: 8px;
  }

  .offer-price-row strong {
    font-size: 35px;
  }
}

.compliance-section {
  padding-top: 74px;
}

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

.compliance-links a {
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(223, 255, 238, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.074), rgba(255, 255, 255, 0.038)),
    rgba(5, 18, 14, 0.88);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

.compliance-links strong,
.compliance-links span {
  display: block;
}

.compliance-links strong {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.18;
}

.compliance-links span {
  color: rgba(224, 235, 232, 0.72);
  font-size: 14px;
  font-weight: 760;
}

.info-content h2 {
  margin: 30px 0 12px;
  color: #0d1722;
  font-size: 24px;
  line-height: 1.18;
}

.info-content ul,
.info-content ol {
  display: grid;
  gap: 9px;
  margin: 12px 0 20px;
  padding-left: 22px;
  color: var(--muted-dark);
  font-size: 17px;
}

.info-content a {
  color: #087b67;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.info-content a.btn {
  color: #041a0c;
  text-decoration: none;
}

.legal-card,
.tariff-table {
  margin: 24px 0;
  padding: 20px;
  border: 1px solid rgba(8, 123, 103, 0.14);
  border-radius: var(--radius);
  background: #f2faf6;
}

.legal-card h2 {
  margin-top: 0;
}

.payment-result-card {
  display: grid;
  gap: 16px;
}

.payment-result-card h2,
.payment-result-card p {
  margin: 0;
}

.payment-status-pill {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(8, 123, 103, 0.1);
  color: #087b67;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.payment-status-pill.success {
  background: rgba(43, 214, 95, 0.16);
  color: #087b30;
}

.payment-status-pill.warning {
  background: rgba(255, 184, 77, 0.18);
  color: #8a4f00;
}

.payment-status-pill.error {
  background: rgba(179, 38, 30, 0.11);
  color: #b3261e;
}

.subscription-result-box {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(8, 123, 103, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.subscription-result-box[hidden] {
  display: none;
}

.subscription-result-box label,
.subscription-result-box h3 {
  margin: 0;
  color: #132331;
  font-size: 14px;
  font-weight: 950;
}

.subscription-result-box p {
  color: #405263;
  font-size: 14px;
  font-weight: 820;
  overflow-wrap: anywhere;
}

.payment-password-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(8, 123, 103, 0.16);
  border-radius: var(--radius);
  background: #ffffff;
}

.payment-password-row[hidden] {
  display: none;
}

.payment-password-row span {
  grid-column: 1 / -1;
  color: #405263;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.payment-password-row code {
  min-width: 0;
  color: #07140f;
  font: 900 15px/1.35 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  overflow-wrap: anywhere;
}

.payment-password-row .btn {
  min-height: 40px;
  padding: 0 12px;
  font-size: 13px;
}

.save-password-note {
  color: #087b67 !important;
  font-weight: 900 !important;
}

.subscription-result-box textarea {
  width: 100%;
  min-height: 86px;
  resize: vertical;
  padding: 12px;
  border: 1px solid rgba(8, 123, 103, 0.18);
  border-radius: var(--radius);
  background: #ffffff;
  color: #132331;
  font: 760 13px/1.45 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  outline: none;
}

.payment-result-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.payment-result-actions .btn.wide {
  width: auto;
}

.payment-ghost-button {
  border-color: rgba(8, 123, 103, 0.18);
  background: rgba(255, 255, 255, 0.78);
  color: #0d1722;
  box-shadow: none;
}

.trial-submit-button {
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}

.trial-submit-button svg,
.trial-submit-button span {
  position: relative;
  z-index: 1;
}

.trial-submit-button.is-ready {
  border-color: transparent;
  background: var(--green);
  color: #041a0c;
  box-shadow: 0 16px 46px rgba(43, 214, 95, 0.23);
}

.trial-submit-button.is-ready::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 44%;
  transform: skewX(-22deg);
  background: rgba(255, 255, 255, 0.42);
  animation: sheen 5.4s ease-in-out infinite;
}

.trial-submit-button.is-ready path {
  fill: none;
  stroke: currentColor;
}

.trial-submit-button.is-ready:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 52px rgba(43, 214, 95, 0.3);
}

@media (max-width: 980px) {
  .hero-main {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-copy-column > * {
    max-width: none;
  }

  .hero-fast-card {
    width: min(100%, 520px);
  }
}

@media (max-width: 760px) {
  .hero-main {
    gap: 16px;
  }

  .hero-fast-card {
    width: 100%;
    padding: 16px;
    border-radius: 20px;
  }

  .hero-fast-head {
    align-items: flex-start;
  }

  .hero-fast-head strong {
    font-size: 21px;
  }

  .hero-fast-price strong {
    font-size: 27px;
  }

  .hero-fast-card input[type="email"] {
    min-height: 52px;
    border-radius: 14px;
  }

  .hero-fast-buy,
  .hero-fast-trial {
    min-height: 50px;
  }

  .hero-fast-note {
    font-size: 11px;
  }

  .hero-stats {
    margin-top: 20px;
  }
}

.account-page {
  min-height: 100svh;
  background:
    linear-gradient(180deg, #f5faf7 0%, #eef6f1 44%, #f7fbf8 100%);
  color: var(--text-dark);
}

.account-page .site-header {
  background: rgba(6, 19, 15, 0.86);
}

.account-page .header-cta::after,
.account-page .btn-primary::after {
  opacity: 0.2;
}

.account-page .btn-primary::after {
  display: none;
}

.account-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0 72px;
}

.account-auth-view,
.account-dashboard-view {
  display: grid;
  gap: 22px;
}

.account-auth-view[hidden],
.account-dashboard-view[hidden],
.account-recover-form[hidden],
.account-renewal-card[hidden],
.account-telegram-card[hidden],
.account-referral-card[hidden],
.account-link-box[hidden],
.account-empty-subscription[hidden],
.account-renewal-toggle[hidden] {
  display: none;
}

.account-auth-view {
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  align-items: stretch;
}

.account-auth-card,
.account-auth-side,
.account-dashboard-head,
.account-summary-grid article,
.account-devices-card,
.account-connect-card,
.account-renewal-card,
.account-topup-card,
.account-telegram-card,
.account-referral-card,
.account-alert {
  border: 1px solid rgba(7, 42, 29, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(8, 34, 23, 0.09);
}

.account-auth-card {
  display: grid;
  gap: 18px;
  padding: 30px;
  background: #ffffff;
}

.account-auth-card h1 {
  margin: 0;
  color: #06130f;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 0.96;
}

.account-auth-card p {
  margin: 0;
  color: #405263;
  font-weight: 760;
}

.account-form {
  display: grid;
  gap: 11px;
}

.account-form label {
  color: #132331;
  font-size: 14px;
  font-weight: 900;
}

.account-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  border: 1px solid rgba(8, 123, 103, 0.22);
  border-radius: var(--radius);
  background: #f8fffb;
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 800;
  outline: none;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.account-form input:focus {
  border-color: rgba(43, 214, 95, 0.74);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(43, 214, 95, 0.16);
}

.account-form button[disabled],
.account-dashboard-actions button[disabled],
.account-renewal-actions button[disabled],
.account-topup-side .btn-primary:disabled {
  cursor: wait;
  opacity: 0.72;
}

.account-form-status {
  min-height: 20px;
  color: var(--muted-dark);
  font-size: 13px;
  font-weight: 820;
}

.account-form-status.error {
  color: #b3261e;
}

.account-form-status.success {
  color: #087b30;
}

.account-auth-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.account-auth-links button,
.account-auth-links a {
  border: 0;
  background: transparent;
  color: #087b67;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.account-recover-form {
  margin-top: 2px;
  padding-top: 16px;
  border-top: 1px solid rgba(8, 123, 103, 0.12);
}

.account-auth-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 24px;
  background: #071911;
  color: var(--white);
}

.account-auth-side div {
  display: grid;
  gap: 9px;
  padding: 18px;
  border: 1px solid rgba(72, 230, 179, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.account-auth-side span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 950;
}

.account-auth-side strong {
  color: var(--white);
  font-size: 24px;
  line-height: 1.05;
}

.account-auth-side p {
  margin: 0;
  color: rgba(247, 251, 255, 0.72);
  font-weight: 760;
}

.account-dashboard-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 392px);
  gap: 22px;
  align-items: stretch;
  padding: 24px;
  background:
    linear-gradient(135deg, #06130f 0%, #0a2c1a 55%, #0d3c25 100%);
  color: var(--white);
  overflow: hidden;
}

.account-dashboard-copy {
  display: grid;
  align-content: center;
  gap: 12px;
}

.account-dashboard-head h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(44px, 7vw, 76px);
  line-height: 0.94;
}

.account-dashboard-head p:not(.eyebrow),
.account-plan-card p {
  margin: 0;
  color: rgba(247, 251, 255, 0.76);
  font-size: 16px;
  font-weight: 800;
}

.account-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.account-hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(72, 230, 179, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(247, 251, 255, 0.88);
  font-size: 13px;
  font-weight: 900;
}

.account-plan-card {
  display: grid;
  gap: 11px;
  align-content: center;
  padding: 18px;
  border: 1px solid rgba(72, 230, 179, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
}

.account-plan-card > span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.account-plan-card > strong {
  color: var(--white);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
}

.account-dashboard-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.account-alert {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 15px 17px;
  background: #ffffff;
  color: #243343;
  font-size: 15px;
  font-weight: 820;
}

.account-alert::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 7px;
  border-radius: 999px;
  background: #2bd65f;
  box-shadow: 0 0 0 5px rgba(43, 214, 95, 0.12);
}

.account-summary-grid {
  display: grid;
  grid-template-columns: 1.08fr 1.35fr repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 8px;
  border: 1px solid rgba(7, 42, 29, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 54px rgba(8, 34, 23, 0.07);
}

.account-summary-grid article {
  position: relative;
  display: grid;
  gap: 7px;
  align-content: center;
  min-height: 116px;
  padding: 16px;
  border: 1px solid rgba(7, 42, 29, 0.08);
  border-radius: 14px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fffb 100%);
  box-shadow: none;
  overflow: hidden;
}

.account-summary-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: rgba(8, 123, 103, 0.2);
}

.account-summary-grid article:nth-child(2) {
  border-color: rgba(43, 214, 95, 0.24);
  background:
    linear-gradient(180deg, #ffffff 0%, #f0fbf3 100%);
}

.account-summary-grid article:nth-child(2)::before {
  background: #2bd65f;
}

.account-summary-grid span {
  color: #087b67;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.account-summary-grid strong {
  color: #0d1722;
  font-size: clamp(23px, 2.45vw, 31px);
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.account-summary-card.is-status strong {
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(43, 214, 95, 0.13);
  color: #087b30;
  font-size: 18px;
}

.account-summary-card.is-time strong {
  color: #06130f;
  font-size: clamp(25px, 2.8vw, 34px);
}

.account-summary-grid p {
  margin: 0;
  color: #566575;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.25;
}

.account-devices-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  background:
    linear-gradient(135deg, #ffffff 0%, #f3fbf6 100%);
}

.account-devices-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.account-devices-head h2 {
  margin: 0;
  color: #0d1722;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
}

.account-devices-head p:not(.connect-guide-kicker) {
  max-width: 680px;
  margin: 8px 0 0;
  color: #405263;
  font-weight: 780;
  line-height: 1.42;
}

.account-devices-meter {
  display: grid;
  gap: 4px;
  min-width: 132px;
  padding: 14px 16px;
  border: 1px solid rgba(43, 214, 95, 0.24);
  border-radius: 14px;
  background: #ffffff;
  text-align: right;
}

.account-devices-meter strong {
  color: #087b30;
  font-size: 30px;
  line-height: 1;
}

.account-devices-meter span {
  color: #566575;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.account-devices-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(8, 123, 103, 0.1);
}

.account-devices-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2bd65f, #087b67);
  transition: width 0.28s ease;
}

.account-devices-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px;
}

.account-devices-list article,
.account-devices-empty {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(8, 123, 103, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
}

.account-devices-list article > span {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(43, 214, 95, 0.12);
  color: #087b30;
  font-size: 12px;
  font-weight: 950;
}

.account-devices-list article > div:nth-child(2) {
  min-width: 0;
  flex: 1 1 auto;
}

.account-devices-list strong {
  display: block;
  color: #0d1722;
  font-size: 17px;
  line-height: 1.18;
}

.account-devices-list p,
.account-devices-empty {
  margin: 4px 0 0;
  color: #566575;
  font-size: 13px;
  font-weight: 780;
  line-height: 1.35;
}

.account-devices-empty {
  align-items: center;
  margin: 0;
}

.account-device-actions {
  display: flex;
  align-items: flex-start;
  margin-left: auto;
}

.account-device-delete {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(179, 38, 30, 0.16);
  border-radius: 8px;
  background: rgba(179, 38, 30, 0.06);
  color: #9d261d;
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
}

.account-device-delete:hover {
  border-color: rgba(179, 38, 30, 0.32);
  background: rgba(179, 38, 30, 0.1);
}

.account-device-delete:disabled {
  cursor: wait;
  opacity: 0.66;
}

.account-devices-status,
.account-referral-status {
  min-height: 20px;
  margin: 0;
  color: #405263;
  font-size: 14px;
  font-weight: 820;
}

.account-devices-status.error,
.account-referral-status.error {
  color: #b3261e;
}

.account-devices-status.success,
.account-referral-status.success {
  color: #087b30;
}

.account-connect-card,
.account-renewal-card,
.account-topup-card,
.account-telegram-card,
.account-referral-card {
  color: var(--text-dark);
  background: #ffffff;
}

.account-connect-card {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.account-renewal-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 18px;
  align-items: stretch;
  padding: 22px;
  border-color: rgba(43, 214, 95, 0.3);
  background:
    linear-gradient(135deg, #ffffff 0%, #f1fbf4 100%);
  box-shadow: 0 22px 66px rgba(18, 114, 54, 0.14);
}

.account-renewal-copy,
.account-renewal-side {
  display: grid;
  gap: 12px;
  align-content: center;
}

.account-renewal-copy h2,
.account-telegram-card h2,
.account-connect-head h2 {
  margin: 0;
  color: #0d1722;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1;
}

.account-renewal-copy p:not(.connect-guide-kicker),
.account-telegram-card p,
.account-connect-head p {
  margin: 0;
  color: #405263;
  font-weight: 780;
  line-height: 1.45;
}

.account-bonus-strip {
  display: grid;
  gap: 4px;
  max-width: 560px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 141, 106, 0.28);
  border-radius: var(--radius);
  background: #fff7f2;
}

.account-bonus-strip strong {
  color: #b64b24;
  font-size: 18px;
  line-height: 1.1;
}

.account-bonus-strip span {
  color: #6a4a36;
  font-size: 14px;
  font-weight: 780;
  line-height: 1.38;
}

.account-renewal-pricing {
  display: grid;
  gap: 0;
  padding: 16px;
  border: 1px solid rgba(8, 123, 103, 0.13);
  border-radius: var(--radius);
  background: #ffffff;
}

.account-renewal-pricing div {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid rgba(8, 123, 103, 0.09);
}

.account-renewal-pricing div:last-child {
  border-bottom: 0;
}

.account-renewal-pricing span {
  color: #566575;
  font-size: 13px;
  font-weight: 900;
}

.account-renewal-pricing strong {
  color: #0d1722;
  font-size: 24px;
  line-height: 1;
}

.account-renewal-pricing .is-total strong {
  color: #087b30;
  font-size: 36px;
}

.account-renewal-toggle {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(8, 123, 103, 0.12);
  border-radius: var(--radius);
  background: #f8fffb;
  color: #132331;
  font-size: 15px;
  font-weight: 900;
}

.account-renewal-toggle input {
  width: 20px;
  height: 20px;
  accent-color: #2bd65f;
}

.account-renewal-actions {
  display: grid;
  gap: 10px;
}

.account-renewal-actions .btn-primary {
  min-height: 58px;
  font-size: 17px;
  box-shadow: 0 18px 42px rgba(43, 214, 95, 0.28);
}

.account-renewal-actions p {
  min-height: 20px;
  margin: 0;
  color: #405263;
  font-size: 14px;
  font-weight: 820;
}

.account-topup-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 18px;
  align-items: stretch;
  padding: 22px;
  background:
    linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
}

.account-topup-card > div:first-child,
.account-topup-side {
  display: grid;
  gap: 12px;
  align-content: center;
}

.account-topup-card h2 {
  margin: 0;
  color: #0d1722;
  font-size: clamp(28px, 4.5vw, 42px);
  line-height: 1;
}

.account-topup-card p:not(.connect-guide-kicker),
.account-topup-side p {
  margin: 0;
  color: #405263;
  font-weight: 780;
  line-height: 1.45;
}

.account-topup-field {
  display: grid;
  gap: 8px;
}

.account-topup-field > span {
  color: #0d1722;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.account-topup-field > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 58px;
  border: 1px solid rgba(8, 123, 103, 0.18);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(8, 34, 23, 0.06);
}

.account-topup-field input {
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  background: transparent;
  color: #0d1722;
  font: inherit;
  font-size: 24px;
  font-weight: 950;
  outline: none;
  padding: 0 0 0 16px;
}

.account-topup-field strong {
  padding: 0 16px;
  color: #087b30;
  font-size: 22px;
  font-weight: 950;
}

.account-topup-field small {
  color: #536273;
  font-size: 13px;
  font-weight: 780;
}

.account-topup-side .btn-primary {
  min-height: 56px;
  font-size: 17px;
  box-shadow: 0 18px 42px rgba(43, 214, 95, 0.24);
}

#account-topup-status {
  min-height: 20px;
  margin: 0;
  color: #405263;
  font-size: 14px;
  font-weight: 820;
}

#account-topup-status.error {
  color: #b3261e;
}

#account-topup-status.success {
  color: #087b30;
}

.account-telegram-card {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  background: #f7fbff;
}

.account-referral-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 18px;
  padding: 22px;
  background: linear-gradient(135deg, #ffffff 0%, #f6fbf8 100%);
}

.account-referral-copy,
.account-referral-side {
  display: grid;
  gap: 12px;
  align-content: start;
}

.account-referral-copy h2 {
  margin: 0;
  color: #0d1722;
  font-size: clamp(28px, 4.5vw, 42px);
  line-height: 1;
}

.account-referral-copy p:not(.connect-guide-kicker),
.account-referral-list span {
  margin: 0;
  color: #405263;
  font-weight: 780;
  line-height: 1.45;
}

.account-referral-copy .account-referral-rule {
  align-items: center;
  background: #ecf9f3;
  border: 1px solid rgba(8, 123, 103, 0.16);
  border-radius: var(--radius);
  color: #123326;
  display: flex;
  gap: 8px;
  padding: 12px 14px;
}

.account-referral-rule strong {
  color: #087b67;
  font-weight: 950;
  white-space: nowrap;
}

.account-referral-link-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.account-referral-link-row input {
  min-width: 0;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(8, 123, 103, 0.18);
  border-radius: var(--radius);
  background: #ffffff;
  color: #132331;
  font: 820 14px/1.35 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  outline: none;
}

.account-referral-link-row button {
  min-height: 52px;
  white-space: nowrap;
}

.account-referral-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.account-referral-stats div,
.account-referral-list {
  border: 1px solid rgba(8, 123, 103, 0.12);
  border-radius: var(--radius);
  background: #ffffff;
}

.account-referral-stats div {
  display: grid;
  gap: 6px;
  min-height: 86px;
  padding: 14px;
}

.account-referral-stats span {
  color: #566575;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.account-referral-stats strong {
  color: #087b30;
  font-size: 24px;
  line-height: 1;
  font-weight: 950;
}

.account-referral-list {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.account-referral-list > span {
  padding: 15px;
}

.account-referral-list div {
  display: grid;
  gap: 4px;
  padding: 13px 15px;
  border-bottom: 1px solid rgba(8, 123, 103, 0.1);
}

.account-referral-list div:last-child {
  border-bottom: 0;
}

.account-referral-list strong {
  color: #0d1722;
  font-size: 15px;
  line-height: 1.2;
}

.account-telegram-card > div {
  display: grid;
  gap: 8px;
}

.account-telegram-card .btn-secondary {
  border-color: rgba(13, 23, 34, 0.12);
  background: #0d1722;
  color: var(--white);
}

.account-telegram-card .btn-secondary:hover {
  background: #071911;
}

.account-connect-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.account-connect-head h2 {
  margin-bottom: 8px;
}

.account-connect-head > strong {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(43, 214, 95, 0.14);
  color: #087b30;
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

.account-link-box {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(8, 123, 103, 0.14);
  border-radius: var(--radius);
  background: #f8fffb;
}

.account-link-box label {
  color: #132331;
  font-size: 14px;
  font-weight: 950;
}

.account-link-box textarea {
  width: 100%;
  min-height: 84px;
  resize: vertical;
  padding: 12px;
  border: 1px solid rgba(8, 123, 103, 0.18);
  border-radius: var(--radius);
  background: #ffffff;
  color: #132331;
  font: 760 13px/1.45 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  outline: none;
}

.account-empty-subscription {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 141, 106, 0.24);
  border-radius: var(--radius);
  background: #fff7f2;
}

.account-empty-subscription h3,
.account-empty-subscription p {
  margin: 0;
}

.account-empty-subscription h3 {
  color: #0d1722;
}

.account-empty-subscription p {
  color: #405263;
  font-weight: 760;
}

.account-empty-subscription .btn {
  justify-self: start;
}

.account-guide-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
}

.account-guide-tabs button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(8, 123, 103, 0.14);
  border-radius: 999px;
  background: #ffffff;
  color: #405263;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
}

.account-guide-tabs button.is-active {
  border-color: rgba(43, 214, 95, 0.55);
  background: var(--green);
  color: #041a0c;
  box-shadow: 0 10px 28px rgba(43, 214, 95, 0.2);
}

.account-guide-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  gap: 14px;
}

.account-app-selector,
.guide-app-selector {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.account-app-selector button,
.guide-app-selector button {
  display: grid;
  gap: 5px;
  min-height: 72px;
  padding: 12px 14px;
  border: 1px solid rgba(8, 123, 103, 0.14);
  border-radius: var(--radius);
  background: #ffffff;
  color: #0d1722;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 10px 26px rgba(8, 34, 23, 0.05);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.account-app-selector button:hover,
.guide-app-selector button:hover {
  transform: translateY(-1px);
  border-color: rgba(43, 214, 95, 0.48);
  box-shadow: 0 14px 30px rgba(8, 34, 23, 0.08);
}

.account-app-selector button.is-active,
.guide-app-selector button.is-active {
  border-color: #071911;
  background: #071911;
  color: #ffffff;
}

.account-app-selector strong,
.guide-app-selector strong {
  font-size: 15px;
  font-weight: 950;
  line-height: 1.15;
}

.account-app-selector span,
.guide-app-selector span {
  color: currentColor;
  font-size: 12px;
  font-weight: 820;
  line-height: 1.25;
  opacity: 0.74;
}

.account-guide-app,
.account-steps-card {
  border: 1px solid rgba(8, 123, 103, 0.12);
  border-radius: var(--radius);
  background: #ffffff;
}

.account-guide-app {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 18px;
}

.account-guide-app-head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.account-guide-app-head span,
.account-guide-app-head strong,
.account-steps-head span,
.account-steps-head strong {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.account-guide-app-head span,
.account-steps-head span {
  background: rgba(8, 123, 103, 0.09);
  color: #087b67;
}

.account-guide-app-head strong,
.account-steps-head strong {
  background: rgba(43, 214, 95, 0.14);
  color: #087b30;
}

.account-guide-app h3 {
  margin: 0;
  color: #0d1722;
  font-size: 30px;
  line-height: 1.05;
}

.account-guide-app p {
  margin: 0;
  color: #405263;
  font-weight: 760;
}

.account-guide-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.account-guide-actions a,
.account-alt-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(8, 123, 103, 0.14);
  border-radius: var(--radius);
  color: #0d1722;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.account-guide-actions .guide-download-button {
  background: #0d1722;
  color: var(--white);
}

.account-guide-actions .guide-import-button {
  background: var(--green);
  color: #041a0c;
  box-shadow: 0 12px 28px rgba(43, 214, 95, 0.18);
}

.account-guide-actions .is-disabled {
  cursor: not-allowed;
  opacity: 0.54;
}

.account-alt-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.account-alt-links a {
  min-height: 42px;
  background: #f8fffb;
  color: #087b67;
  font-size: 13px;
}

.account-guide-note {
  padding: 12px 13px;
  border-radius: var(--radius);
  background: #f7fbff;
  color: #405263;
  font-size: 13px;
  line-height: 1.4;
}

.account-steps-card {
  overflow: hidden;
}

.account-steps-head {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 15px;
  border-bottom: 1px solid rgba(8, 123, 103, 0.1);
  background: #f8fffb;
}

.account-steps-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

.account-steps-list li {
  display: grid;
  grid-template-columns: 178px minmax(0, 1fr);
  gap: 12px;
  padding: 15px;
  border-bottom: 1px solid rgba(8, 123, 103, 0.1);
}

.account-steps-list li:last-child {
  border-bottom: 0;
}

.account-steps-list strong {
  color: #132331;
  font-size: 15px;
  line-height: 1.25;
}

.account-steps-list span {
  color: #566575;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.42;
}

.connect-guide-section {
  display: grid;
  gap: 18px;
  margin: 28px 0;
  padding: 22px;
  border: 1px solid rgba(8, 123, 103, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 250, 246, 0.96)),
    #f2faf6;
  box-shadow: 0 20px 64px rgba(7, 25, 17, 0.08);
}

.connect-guide-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 18px;
  align-items: start;
}

.connect-guide-kicker {
  margin: 0 0 8px;
  color: #087b67;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.connect-guide-head h2 {
  margin: 0 0 10px;
}

.connect-guide-head p:not(.connect-guide-kicker) {
  margin: 0;
  color: #405263;
  font-weight: 760;
}

.detected-device-card {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(43, 214, 95, 0.22);
  border-radius: var(--radius);
  background: rgba(43, 214, 95, 0.11);
}

.detected-device-card span {
  color: #087b67;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.detected-device-card strong {
  color: #0d1722;
  font-size: 18px;
  line-height: 1.15;
}

.connect-quick-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.connect-quick-steps article {
  display: grid;
  gap: 8px;
  min-height: 148px;
  padding: 16px;
  border: 1px solid rgba(8, 123, 103, 0.11);
  border-radius: var(--radius);
  background: #ffffff;
}

.connect-quick-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #2bd65f;
  color: #041a0c;
  font-size: 15px;
  font-weight: 950;
}

.connect-quick-steps strong {
  color: #0d1722;
  font-size: 19px;
  line-height: 1.1;
}

.connect-quick-steps p {
  margin: 0;
  color: #536273;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.42;
}

.platform-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
}

.platform-tabs button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(8, 123, 103, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #405263;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
}

.platform-tabs button.is-active {
  border-color: rgba(43, 214, 95, 0.5);
  background: var(--green);
  color: #041a0c;
  box-shadow: 0 10px 28px rgba(43, 214, 95, 0.2);
}

.platform-panel {
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(8, 123, 103, 0.12);
  border-radius: var(--radius);
  background: #ffffff;
}

.platform-panel[hidden] {
  display: none;
}

.platform-panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.platform-panel-head span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(8, 123, 103, 0.09);
  color: #087b67;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.platform-panel-head h3 {
  margin: 9px 0 0;
  color: #0d1722;
  font-size: 28px;
  line-height: 1.05;
}

.platform-panel-head strong {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(43, 214, 95, 0.14);
  color: #087b30;
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

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

.guide-action-grid a,
.guide-action-grid button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(8, 123, 103, 0.14);
  border-radius: var(--radius);
  color: #0d1722;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.guide-download-button,
.guide-import-button {
  background: var(--green);
  box-shadow: 0 12px 30px rgba(43, 214, 95, 0.18);
}

.guide-alt-button,
.guide-copy-button {
  background: #f6fbf8;
}

.guide-import-button.is-disabled,
.guide-copy-button.is-disabled,
.guide-copy-button:disabled {
  cursor: not-allowed;
  opacity: 0.56;
  box-shadow: none;
}

.guide-steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-steps li {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(8, 123, 103, 0.1);
  border-radius: var(--radius);
  background: #f8fcfa;
}

.guide-steps strong {
  color: #132331;
  font-size: 15px;
  line-height: 1.25;
}

.guide-steps span {
  color: #566575;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.42;
}

.guide-help-strip {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 14px;
  padding: 15px;
  border: 1px solid rgba(255, 141, 106, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 141, 106, 0.08);
}

.guide-help-strip strong {
  color: #8a3a1e;
  font-weight: 950;
}

.guide-help-strip span {
  color: #405263;
  font-size: 14px;
  font-weight: 780;
}

.tariff-table {
  display: grid;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.tariff-table div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(8, 123, 103, 0.12);
}

.tariff-table div:last-child {
  border-bottom: 0;
}

.tariff-table span {
  color: #657586;
  font-weight: 850;
}

.tariff-table strong {
  color: #0d1722;
}

@media (max-width: 1060px) {
  .payment-hero {
    grid-template-columns: 1fr;
  }

  .app-landing-content {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .app-checkout {
    width: min(100%, 560px);
  }

  .app-client-grid {
    grid-template-columns: 1fr;
  }

  .app-device-section {
    grid-template-columns: 1fr;
  }

  .app-legal-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payment-copy {
    max-width: none;
    padding-bottom: 0;
  }

  .payment-checkout {
    max-width: 560px;
  }

  .payment-info-grid {
    grid-template-columns: 1fr;
  }

  .site-trial-section {
    grid-template-columns: 1fr;
  }

  .account-auth-view,
  .account-devices-head,
  .account-guide-panel,
  .account-renewal-card,
  .account-topup-card,
  .account-referral-card {
    grid-template-columns: 1fr;
  }

  .account-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .connect-quick-steps {
    grid-template-columns: 1fr;
  }

  .compliance-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .app-landing-hero {
    min-height: auto;
    padding-top: 64px;
  }

  .app-landing-media {
    object-position: 70% center;
  }

  .app-landing-overlay {
    background:
      linear-gradient(90deg, rgba(2, 9, 7, 0.99), rgba(4, 17, 12, 0.9)),
      linear-gradient(0deg, rgba(3, 17, 13, 0.98), rgba(3, 17, 13, 0.18));
  }

  .app-landing-content {
    width: calc(100% - 28px);
    min-height: auto;
    gap: 18px;
    padding: 28px 0 34px;
  }

  .app-landing-copy h1 {
    margin-bottom: 12px;
    font-size: clamp(36px, 11vw, 48px);
    line-height: 0.96;
  }

  .app-landing-copy p:not(.eyebrow) {
    font-size: 15.5px;
    line-height: 1.42;
  }

  .app-keyword-cloud {
    gap: 8px;
    margin-top: 16px;
  }

  .app-keyword-cloud span,
  .app-device-list span {
    min-height: 34px;
    padding: 0 11px;
    font-size: 12.5px;
  }

  .app-landing-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .app-landing-stats div {
    min-height: 76px;
    padding: 11px 9px;
  }

  .app-landing-stats strong {
    font-size: 22px;
  }

  .app-landing-stats span {
    font-size: 11px;
  }

  .app-landing-page .app-checkout {
    order: 0;
  }

  .app-section {
    width: calc(100% - 28px);
    padding: 52px 0;
  }

  .app-client-grid article,
  .app-device-section {
    padding: 18px;
  }

  .app-client-grid article {
    min-height: auto;
  }

  .app-device-copy h2 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .app-legal-strip {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .app-legal-strip a {
    min-height: auto;
  }

  .payment-shell {
    width: calc(100% - 28px);
    padding-top: 78px;
  }

  .payment-hero {
    gap: 18px;
  }

  .payment-copy {
    padding: 8px 0 0;
  }

  .payment-copy h1 {
    margin-bottom: 12px;
    font-size: clamp(36px, 12vw, 48px);
    line-height: 0.96;
  }

  .payment-copy p:not(.eyebrow) {
    font-size: 15.5px;
    line-height: 1.42;
  }

  .payment-badges {
    gap: 8px;
    margin-top: 16px;
  }

  .payment-badges span {
    min-height: 34px;
    padding: 0 11px;
    font-size: 13px;
  }

  .payment-checkout {
    order: -1;
    padding: 18px;
  }

  .app-landing-page .app-checkout {
    order: 0;
  }

  .payment-checkout-head {
    margin-bottom: 12px;
  }

  .payment-price-row {
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 16px;
  }

  .payment-old-price {
    font-size: 21px;
  }

  .payment-price-row strong {
    font-size: clamp(44px, 13vw, 52px);
  }

  .payment-price-row small {
    flex-shrink: 0;
    font-size: 15px;
  }

  .payment-includes {
    gap: 9px;
    margin-bottom: 18px;
  }

  .payment-includes li {
    font-size: 15px;
    line-height: 1.35;
  }

  .payment-note {
    margin-top: 12px;
    font-size: 13px;
  }

  .site-checkout-form {
    gap: 10px;
  }

  .site-checkout-form input[type="email"],
  .site-trial-form input[type="email"] {
    min-height: 50px;
    font-size: 15px;
  }

  .site-checkout-consent {
    font-size: 12.5px;
  }

  .payment-trust-strip {
    grid-template-columns: 1fr;
  }

  .site-trial-section {
    gap: 16px;
    padding: 18px;
  }

  .site-trial-copy h2 {
    font-size: clamp(30px, 10vw, 40px);
  }

  .site-trial-copy p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.4;
  }

  .site-trial-section .site-trial-form {
    padding: 16px;
  }

  .payment-info-grid article,
  .payment-trust-strip div {
    min-height: auto;
  }

  .compliance-links {
    grid-template-columns: 1fr;
  }

  .compliance-links a {
    min-height: auto;
  }

  .info-content {
    width: calc(100% - 28px);
    margin-top: 88px;
    padding: 22px;
  }

  .payment-result-actions {
    grid-template-columns: 1fr;
  }

  .account-shell {
    width: calc(100% - 28px);
    padding-top: 82px;
  }

  .account-auth-card,
  .account-auth-side,
  .account-connect-card,
  .account-devices-card,
  .account-renewal-card,
  .account-topup-card,
  .account-telegram-card,
  .account-referral-card {
    padding: 16px;
  }

  .account-auth-card h1 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .account-auth-side {
    gap: 10px;
  }

  .account-dashboard-head {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .account-dashboard-head h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .account-dashboard-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .account-summary-grid {
    grid-template-columns: 1fr;
  }

  .account-summary-grid article {
    min-height: auto;
    padding: 16px;
  }

  .account-devices-meter {
    width: 100%;
    text-align: left;
  }

  .account-renewal-toggle,
  .account-renewal-actions {
    grid-column: auto;
  }

  .account-telegram-card {
    display: grid;
    align-items: start;
  }

  .account-referral-link-row {
    grid-template-columns: 1fr;
  }

  .account-referral-stats {
    grid-template-columns: 1fr;
  }

  .account-connect-head {
    grid-template-columns: 1fr;
  }

  .account-connect-head > strong {
    justify-self: start;
  }

  .account-guide-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    margin: 0;
    padding: 0;
  }

  .account-guide-tabs button {
    width: 100%;
    min-height: 42px;
    padding: 0 8px;
    white-space: normal;
  }

  .account-guide-actions {
    grid-template-columns: 1fr;
  }

  .account-app-selector,
  .guide-app-selector {
    grid-template-columns: 1fr;
  }

  .account-alt-links {
    grid-template-columns: 1fr;
  }

  .account-steps-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .subscription-result-box {
    padding: 14px;
  }

  .payment-password-row {
    grid-template-columns: 1fr;
  }

  .connect-guide-section {
    margin: 22px 0;
    padding: 16px;
  }

  .connect-guide-head {
    grid-template-columns: 1fr;
  }

  .detected-device-card {
    padding: 12px;
  }

  .platform-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    margin: 0;
    padding: 0;
  }

  .platform-tabs button {
    width: 100%;
    min-height: 38px;
    padding: 0 8px;
    font-size: 13px;
  }

  .platform-panel {
    padding: 14px;
  }

  .platform-panel-head {
    display: grid;
  }

  .platform-panel-head h3 {
    font-size: 24px;
  }

  .platform-panel-head strong {
    justify-self: start;
  }

  .guide-action-grid {
    grid-template-columns: 1fr;
  }

  .guide-action-grid a,
  .guide-action-grid button {
    min-height: 46px;
    padding: 0 12px;
    font-size: 13.5px;
  }

  .guide-steps li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px;
  }

  .guide-help-strip {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .info-content h1 {
    font-size: clamp(29px, 7.5vw, 34px);
    line-height: 1.08;
  }

  .info-content h2 {
    font-size: 22px;
  }

  .tariff-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* Mobile checkout polish for paid Happ traffic. */
.mobile-sticky-pay {
  display: none;
}

#checkout {
  scroll-margin-top: 82px;
}

@media (max-width: 760px) {
  .site-header .brand {
    min-height: 44px;
  }

  .site-header .brand-mark {
    width: 38px;
    height: 38px;
  }

  .site-header .brand-mark svg {
    width: 24px;
    height: 24px;
  }

  .header-cta {
    min-height: 44px;
    padding-inline: 16px;
  }

  .app-landing-page {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .mobile-sticky-pay {
    position: fixed;
    right: 14px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 14px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: var(--green);
    color: #041a0c;
    font-size: 17px;
    font-weight: 950;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.36), 0 12px 34px rgba(43, 214, 95, 0.24);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .mobile-sticky-pay.is-hidden {
    pointer-events: none;
    opacity: 0;
    transform: translateY(18px);
  }

  .app-landing-content {
    gap: 14px;
    padding: 18px 0 24px;
  }

  .app-landing-copy h1 {
    font-size: clamp(33px, 10vw, 44px);
  }

  .app-landing-copy p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.38;
  }

  .app-happ-card {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 12px;
    margin: 14px 0;
    padding: 12px;
  }

  .app-happ-card img {
    width: 60px;
    height: 60px;
    border-radius: 14px;
  }

  .app-happ-card p {
    display: none;
  }

  .app-keyword-cloud {
    gap: 7px;
    margin-top: 12px;
  }

  .app-keyword-cloud span,
  .app-device-list span,
  .payment-badges span {
    min-height: 38px;
  }

  .app-landing-stats {
    margin-top: 12px;
  }

  .app-landing-stats div {
    min-height: 68px;
    padding: 10px 8px;
  }

  .app-landing-page .payment-checkout {
    padding: 16px;
  }

  .site-checkout-form button[type="submit"] {
    min-height: 56px;
  }

  .site-checkout-consent {
    min-height: 44px;
    align-items: center;
    font-size: 13px;
  }

  .site-checkout-consent input {
    width: 22px;
    height: 22px;
    margin-top: 0;
  }

  .payment-page .payment-checkout {
    padding: 18px;
  }

  .payment-page .payment-includes li {
    font-size: 14.5px;
  }

  .faq-list summary {
    display: flex;
    align-items: center;
    min-height: 44px;
  }

  .footer-links a,
  .payment-info-grid a,
  .info-content a,
  .account-auth-links button,
  .account-auth-links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .footer-links {
    row-gap: 4px;
  }
}

@media (max-width: 380px) {
  .site-header {
    gap: 8px;
  }

  .header-cta {
    padding-inline: 12px;
  }

  .app-landing-content,
  .payment-shell {
    width: calc(100% - 24px);
  }

  .app-landing-copy h1,
  .payment-copy h1 {
    font-size: clamp(32px, 9.8vw, 42px);
  }

  .payment-price-row {
    gap: 6px;
  }

  .payment-price-row strong {
    font-size: clamp(42px, 12.4vw, 48px);
  }

  .app-landing-page .hero-periods {
    gap: 5px;
  }

  .app-landing-page .hero-period {
    min-height: 106px;
    padding: 10px 4px;
    text-align: center;
  }

  .app-landing-page .hero-period.is-active::after {
    right: 4px;
    top: 4px;
    width: 16px;
    height: 16px;
    font-size: 8px;
  }

  .app-landing-page .hero-period strong {
    padding-right: 0;
    font-size: 10px;
  }

  .app-landing-page .hero-period b {
    font-size: 14px;
  }

  .app-landing-page .hero-period small {
    font-size: 8px;
  }

  .app-landing-page .hero-period em {
    width: 100%;
    justify-content: center;
    padding: 4px 2px;
  }
}
