:root {
  --p1-ink: #111827;
  --p1-muted: #64707d;
  --p1-blue: #00419f;
  --p1-cyan: #00a8ea;
  --p1-green: #71eb30;
  --p1-navy: #062567;
  --p1-navy-deep: #04163d;
  --p1-line: #e6ebf1;
  --p1-soft: #f6f8fb;
  --p1-white: #ffffff;
  --p1-gradient: linear-gradient(115deg, #00419f 0%, #00a8ea 52%, #71eb30 100%);
  --p1-shadow: 0 24px 60px rgba(6, 17, 15, .13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--p1-ink);
  font-family: Inter, "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.5;
  background: #ffffff;
}

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

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

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

.p1-wrap {
  width: min(1240px, calc(100% - 44px));
  margin: 0 auto;
}

.p1-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(230, 235, 241, .78);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(18px);
}

.p1-topbar {
  border-bottom: 1px solid rgba(230, 235, 241, .72);
  color: #5d6875;
  font-size: 12px;
}

.p1-topbar-inner,
.p1-top-links,
.p1-nav,
.p1-menu,
.p1-nav-actions,
.p1-hero-actions,
.p1-strip-track,
.p1-console-top,
.p1-final-inner,
.p1-copyright {
  display: flex;
  align-items: center;
}

.p1-topbar-inner {
  min-height: 34px;
  justify-content: space-between;
  gap: 20px;
}

.p1-topbar p {
  margin: 0;
}

.p1-topbar a {
  color: var(--p1-blue);
  font-weight: 800;
}

.p1-top-links {
  gap: 22px;
  white-space: nowrap;
}

.p1-nav {
  min-height: 76px;
  justify-content: space-between;
  gap: 28px;
}

.p1-brand img {
  width: 142px;
}

.p1-menu {
  gap: 30px;
  color: #182235;
  font-size: 14px;
  font-weight: 800;
}

.p1-menu a {
  position: relative;
  padding: 12px 0;
}

.p1-menu a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--p1-gradient);
  content: "";
  opacity: 0;
  transform: scaleX(.35);
  transition: opacity .2s ease, transform .2s ease;
}

.p1-menu a:hover,
.p1-menu a:focus-visible {
  color: var(--p1-blue);
}

.p1-menu a:hover::after,
.p1-menu a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.p1-nav-actions {
  gap: 12px;
}

.p1-lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #dce5ee;
  border-radius: 6px;
  color: var(--p1-blue);
  font-size: 13px;
  font-weight: 900;
  background: #fff;
  box-shadow: 0 10px 22px rgba(6, 17, 15, .05);
}

.p1-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.p1-button:hover,
.p1-button:focus-visible {
  transform: translateY(-2px);
}

.p1-button-primary {
  color: #fff;
  background: var(--p1-gradient);
  box-shadow: 0 17px 34px rgba(0, 168, 234, .23);
}

.p1-button-ghost {
  border: 1px solid rgba(255, 255, 255, .38);
  color: #fff;
  background: rgba(255, 255, 255, .08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2);
}

.p1-button-small {
  min-height: 42px;
  padding: 0 18px;
}

.p1-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 16%, rgba(113, 235, 48, .28), transparent 28%),
    radial-gradient(circle at 10% 20%, rgba(0, 168, 234, .32), transparent 30%),
    linear-gradient(135deg, #04163d 0%, #062567 42%, #00419f 100%);
}

.p1-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .95), rgba(0, 0, 0, .2));
}

.p1-hero::after {
  position: absolute;
  right: max(-70px, -6vw);
  bottom: -120px;
  width: min(54vw, 720px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: conic-gradient(from 210deg, rgba(113, 235, 48, .32), rgba(0, 168, 234, .14), rgba(255, 255, 255, .02), rgba(113, 235, 48, .32));
  content: "";
  opacity: .84;
}

.p1-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .72fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 112px);
  padding: 72px 0 74px;
}

.p1-hero-copy {
  max-width: 760px;
}

.p1-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #c8f7ff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.p1-eyebrow span {
  width: 38px;
  height: 3px;
  border-radius: 999px;
  background: var(--p1-green);
  box-shadow: 0 0 22px rgba(113, 235, 48, .8);
}

.p1-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 1.03;
  letter-spacing: 0;
}

.p1-hero-lead {
  max-width: 710px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.78;
}

.p1-hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

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

.p1-proof-grid article {
  min-height: 112px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
}

.p1-proof-grid strong {
  display: block;
  color: #fff;
  font-size: 26px;
  line-height: 1;
}

.p1-proof-grid span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 700;
}

.p1-apply-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 8px;
  color: var(--p1-ink);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .24);
}

.p1-apply-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--p1-gradient);
  content: "";
}

.p1-form-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--p1-blue);
  background: rgba(0, 168, 234, .1);
  font-size: 12px;
  font-weight: 900;
}

.p1-apply-card h2 {
  margin: 14px 0 8px;
  color: var(--p1-navy-deep);
  font-size: clamp(25px, 2.7vw, 34px);
  line-height: 1.15;
  letter-spacing: 0;
}

.p1-apply-card p {
  margin: 0 0 20px;
  color: var(--p1-muted);
  font-size: 14px;
  line-height: 1.72;
}

.p1-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.p1-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.p1-form span {
  color: #293447;
  font-size: 13px;
  font-weight: 900;
}

.p1-form input,
.p1-form select,
.p1-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #dce5ee;
  border-radius: 6px;
  outline: none;
  color: #101828;
  background: #fff;
  box-shadow: 0 8px 20px rgba(6, 17, 15, .04);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.p1-form input,
.p1-form select {
  padding: 0 13px;
}

.p1-form textarea {
  resize: vertical;
  padding: 12px 13px;
}

.p1-form input:focus,
.p1-form select:focus,
.p1-form textarea:focus {
  border-color: rgba(0, 168, 234, .8);
  box-shadow: 0 0 0 4px rgba(0, 168, 234, .12);
}

.p1-form-wide,
.p1-form button {
  grid-column: 1 / -1;
}

.p1-strip {
  background: var(--p1-navy-deep);
  color: #fff;
}

.p1-strip-track {
  justify-content: space-between;
  gap: 14px;
  min-height: 70px;
  overflow-x: auto;
  scrollbar-width: none;
}

.p1-strip-track::-webkit-scrollbar {
  display: none;
}

.p1-strip-track span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.p1-strip-track span::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--p1-green);
  box-shadow: 0 0 16px rgba(113, 235, 48, .88);
  content: "";
}

.p1-section {
  padding: clamp(76px, 8vw, 120px) 0;
}

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

.p1-section-head span,
.p1-income-copy span,
.p1-tool-copy > span,
.p1-final span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--p1-blue);
  font-size: 13px;
  font-weight: 1000;
  text-transform: uppercase;
}

.p1-section-head h2,
.p1-income-copy h2,
.p1-tool-copy h2,
.p1-final h2 {
  margin: 0;
  color: var(--p1-navy-deep);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: 0;
}

.p1-section-head p,
.p1-income-copy p {
  margin: 18px 0 0;
  color: var(--p1-muted);
  font-size: 17px;
  line-height: 1.78;
}

.p1-benefits {
  background:
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

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

.p1-benefit-grid article {
  position: relative;
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--p1-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(6, 17, 15, .06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.p1-benefit-grid article::after {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 54px;
  height: 4px;
  border-radius: 999px;
  background: var(--p1-gradient);
  content: "";
  opacity: .76;
}

.p1-benefit-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 168, 234, .28);
  box-shadow: var(--p1-shadow);
}

.p1-benefit-grid img {
  width: 34px;
  height: 34px;
  filter: invert(25%) sepia(79%) saturate(2436%) hue-rotate(202deg) brightness(76%) contrast(103%);
}

.p1-benefit-grid h3 {
  margin: 22px 0 12px;
  color: var(--p1-navy-deep);
  font-size: 21px;
  line-height: 1.25;
}

.p1-benefit-grid p {
  margin: 0;
  color: var(--p1-muted);
  font-size: 15px;
  line-height: 1.72;
}

.p1-income {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 88% 20%, rgba(113, 235, 48, .24), transparent 28%),
    linear-gradient(135deg, var(--p1-navy-deep), var(--p1-navy));
}

.p1-income-grid,
.p1-toolkit-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.p1-income-copy span {
  color: #9df2ff;
}

.p1-income-copy h2,
.p1-income-copy p {
  color: #fff;
}

.p1-income-copy p {
  color: rgba(255, 255, 255, .76);
  margin-bottom: 30px;
}

.p1-console {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .06)),
    rgba(5, 20, 54, .56);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .28);
}

.p1-console::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 6px;
  content: "";
  pointer-events: none;
}

.p1-console-top {
  position: relative;
  z-index: 1;
  justify-content: space-between;
  margin-bottom: 20px;
}

.p1-console-top strong {
  font-size: 17px;
}

.p1-console-top span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #11300a;
  background: var(--p1-green);
  font-size: 12px;
  font-weight: 1000;
}

.p1-console-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 12px;
}

.p1-revenue-card {
  min-height: 134px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.p1-revenue-primary {
  background: linear-gradient(135deg, rgba(0, 168, 234, .34), rgba(113, 235, 48, .18));
}

.p1-revenue-card small,
.p1-revenue-card em {
  display: block;
  color: rgba(255, 255, 255, .72);
  font-style: normal;
  font-weight: 800;
}

.p1-revenue-card b {
  display: block;
  margin: 8px 0;
  color: #fff;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1;
}

.p1-chart {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: end;
  gap: 10px;
  height: 210px;
  margin-top: 22px;
  padding: 18px;
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    rgba(0, 0, 0, .16);
  background-size: 100% 42px;
}

.p1-chart i {
  display: block;
  min-height: 36px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--p1-green), var(--p1-cyan));
  box-shadow: 0 0 24px rgba(0, 168, 234, .32);
}

.p1-toolkit {
  background: #fff;
}

.p1-toolkit-grid {
  grid-template-columns: minmax(420px, 1fr) minmax(0, .88fr);
}

.p1-tool-visual {
  position: relative;
  min-height: 520px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 24% 20%, rgba(0, 168, 234, .24), transparent 28%),
    radial-gradient(circle at 78% 72%, rgba(113, 235, 48, .26), transparent 32%),
    #f5f9ff;
  box-shadow: inset 0 0 0 1px var(--p1-line);
}

.p1-window {
  position: absolute;
  border: 1px solid rgba(0, 65, 159, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 24px 60px rgba(6, 17, 15, .13);
}

.p1-window span {
  display: block;
  color: var(--p1-blue);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.p1-window strong {
  display: block;
  margin-top: 8px;
  color: var(--p1-navy-deep);
  font-size: 22px;
}

.p1-window-main {
  top: 64px;
  left: 44px;
  width: min(72%, 430px);
  min-height: 320px;
  padding: 28px;
}

.p1-window-main p {
  height: 14px;
  margin: 24px 0 0;
  border-radius: 999px;
  background: #dce7f4;
}

.p1-window-main p:nth-of-type(2) {
  width: 76%;
}

.p1-window-main p:nth-of-type(3) {
  width: 52%;
}

.p1-mini-bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 10px;
  height: 88px;
  margin-top: 28px;
}

.p1-mini-bars i {
  display: block;
  border-radius: 6px 6px 0 0;
  background: var(--p1-gradient);
}

.p1-mini-bars i:nth-child(1) {
  height: 46%;
}

.p1-mini-bars i:nth-child(2) {
  height: 68%;
}

.p1-mini-bars i:nth-child(3) {
  height: 56%;
}

.p1-mini-bars i:nth-child(4) {
  height: 90%;
}

.p1-window-qr {
  right: 34px;
  bottom: 86px;
  width: 210px;
  min-height: 160px;
  padding: 24px;
}

.p1-window-qr::after {
  display: block;
  width: 72px;
  height: 72px;
  margin-top: 18px;
  border-radius: 6px;
  background:
    linear-gradient(90deg, var(--p1-navy-deep) 10px, transparent 10px 18px, var(--p1-navy-deep) 18px 28px, transparent 28px),
    linear-gradient(var(--p1-navy-deep) 10px, transparent 10px 18px, var(--p1-cyan) 18px 28px, transparent 28px),
    #fff;
  background-size: 28px 28px;
  content: "";
}

.p1-window-wallet {
  right: 62px;
  top: 64px;
  width: 200px;
  padding: 24px;
  background: linear-gradient(135deg, #ffffff, #f0fff0);
}

.p1-tool-copy h2 {
  max-width: 560px;
}

.p1-tool-copy ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.p1-tool-copy li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  column-gap: 14px;
  padding: 18px;
  border: 1px solid var(--p1-line);
  border-radius: 8px;
  background: #fff;
}

.p1-tool-copy li::before {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--p1-gradient);
  content: "";
}

.p1-tool-copy li strong,
.p1-tool-copy li span {
  grid-column: 2;
}

.p1-tool-copy li strong {
  color: var(--p1-navy-deep);
  font-size: 17px;
}

.p1-tool-copy li span {
  margin-top: 5px;
  color: var(--p1-muted);
  line-height: 1.65;
}

.p1-steps {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 65, 159, .88), rgba(4, 22, 61, .94)),
    linear-gradient(135deg, var(--p1-blue), var(--p1-navy-deep));
}

.p1-section-head-light span,
.p1-section-head-light h2,
.p1-section-head-light p {
  color: #fff;
}

.p1-section-head-light p {
  color: rgba(255, 255, 255, .74);
}

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

.p1-step-grid article {
  min-height: 236px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16);
}

.p1-step-grid article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  color: #123808;
  background: var(--p1-green);
  font-weight: 1000;
}

.p1-step-grid h3 {
  margin: 24px 0 10px;
  font-size: 22px;
  line-height: 1.25;
}

.p1-step-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
  line-height: 1.72;
}

.p1-final {
  padding: 58px 0;
  background: #f7fbff;
}

.p1-final-inner {
  justify-content: space-between;
  gap: 28px;
  padding: 38px;
  border: 1px solid rgba(0, 168, 234, .24);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(6, 17, 15, .08);
}

.p1-final h2 {
  max-width: 760px;
  font-size: clamp(27px, 3.2vw, 42px);
}

.p1-footer {
  padding: 58px 0 30px;
  color: #dbe8ff;
  background: var(--p1-navy-deep);
}

.p1-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  gap: 46px;
}

.p1-footer-logo {
  width: 156px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.p1-footer p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, .7);
  line-height: 1.75;
}

.p1-footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
}

.p1-footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p1-footer a {
  color: rgba(255, 255, 255, .72);
}

.p1-footer a:hover {
  color: #fff;
}

.p1-copyright {
  justify-content: space-between;
  gap: 18px;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .52);
  font-size: 13px;
}

@media (max-width: 1120px) {
  .p1-menu {
    display: none;
  }

  .p1-hero-grid,
  .p1-income-grid,
  .p1-toolkit-grid {
    grid-template-columns: 1fr;
  }

  .p1-hero-grid {
    min-height: 0;
  }

  .p1-apply-card {
    max-width: 720px;
  }

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

  .p1-toolkit-grid {
    gap: 46px;
  }

  .p1-tool-copy {
    order: -1;
  }
}

@media (max-width: 760px) {
  .p1-wrap {
    width: min(100% - 28px, 1240px);
  }

  .p1-topbar {
    display: none;
  }

  .p1-nav {
    min-height: 66px;
  }

  .p1-brand img {
    width: 118px;
  }

  .p1-nav-actions {
    gap: 8px;
  }

  .p1-button-small {
    min-height: 38px;
    padding: 0 12px;
  }

  .p1-lang {
    width: 38px;
    height: 38px;
  }

  .p1-hero-grid {
    padding: 48px 0 54px;
  }

  .p1-hero h1 {
    font-size: clamp(36px, 12vw, 56px);
  }

  .p1-hero-lead {
    font-size: 16px;
  }

  .p1-hero-actions .p1-button {
    width: 100%;
  }

  .p1-proof-grid,
  .p1-form,
  .p1-benefit-grid,
  .p1-console-main,
  .p1-step-grid,
  .p1-footer-grid {
    grid-template-columns: 1fr;
  }

  .p1-apply-card {
    padding: 24px;
  }

  .p1-strip-track {
    justify-content: flex-start;
  }

  .p1-section {
    padding: 66px 0;
  }

  .p1-section-head h2,
  .p1-income-copy h2,
  .p1-tool-copy h2 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .p1-benefit-grid article {
    min-height: auto;
  }

  .p1-console {
    padding: 18px;
  }

  .p1-chart {
    height: 170px;
    gap: 6px;
    padding: 12px;
  }

  .p1-tool-visual {
    min-height: 440px;
  }

  .p1-window-main {
    top: 36px;
    left: 18px;
    width: calc(100% - 58px);
    min-height: 270px;
    padding: 22px;
  }

  .p1-window-wallet {
    top: auto;
    right: 18px;
    bottom: 32px;
    width: 178px;
  }

  .p1-window-qr {
    right: auto;
    bottom: 48px;
    left: 18px;
    width: 168px;
    min-height: 136px;
  }

  .p1-tool-copy li {
    padding: 16px;
  }

  .p1-final-inner {
    display: grid;
    padding: 26px;
  }

  .p1-final-inner .p1-button {
    width: 100%;
  }

  .p1-copyright {
    display: grid;
  }
}

@media (max-width: 420px) {
  .p1-nav-actions .p1-button-small {
    display: none;
  }

  .p1-hero-actions {
    margin-top: 26px;
  }

  .p1-proof-grid article {
    min-height: 96px;
  }
}
