:root {
  --paper: #060B16;
  --off: #0A1222;
  --rule: #14233A;
  --mid: #5A6C88;
  --muted: #8FA1BB;
  --ink: #E6EEF9;
  --white: #F4F8FD;
  --accent: #23466F;
  --success: #4D6B4A;
  --fd: "Bitter", Georgia, serif;
  --fb: "Barlow", system-ui, sans-serif;
  --fl: "Barlow Condensed", system-ui, sans-serif;
  --nav-h: 64px;

  --section-y: 72px;
  --section-y-mobile: 48px;
  --eyebrow-gap: 12px;
  --heading-gap: 32px;
  --content-gap: 48px;
  --content-gap-mobile: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--fb);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}

nav.wn {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 56px;
  height: var(--nav-h);
  background: rgba(6, 11, 22, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}

.wn-logo {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.wn-logo span {
  font-weight: 400;
  color: var(--mid);
}

.wn-r {
  display: flex;
  align-items: center;
  gap: 36px;
}

.wn-link {
  font-family: var(--fl);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.wn-link:hover {
  color: var(--ink);
}

.wn-cta {
  font-family: var(--fl);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  padding: 10px 26px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.wn-cta:hover {
  background: var(--white);
  transform: translateY(-1px);
}

/* HERO */

.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 58% 42%;
  padding-top: var(--nav-h);
}

.h-left {
  padding: 40px 64px 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-right: 1px solid var(--rule);
}

.h-kick {
  font-family: var(--fl);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 28px;
  opacity: 0;
  animation: up 0.7s 0.1s forwards;
}

.h-head,
.disp {
  font-family: var(--fd);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.h-head {
  font-size: clamp(58px, 8vw, 106px);
  line-height: 0.91;
  opacity: 0;
  animation: up 0.8s 0.25s forwards;
}

.h-head .it,
.disp .it {
  font-weight: 500;
  font-style: normal;
  color: var(--muted);
  line-height: 0.93;
}

.h-div {
  width: 40px;
  height: 2px;
  background: var(--ink);
  margin: 28px 0 16px;
  opacity: 0;
  animation: fade 0.5s 0.5s forwards;
}

.h-subhead {
  font-family: var(--fd);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.14;
  color: var(--ink);
  font-weight: 500;
  max-width: 540px;
  margin-bottom: 14px;
  opacity: 0;
  animation: up 0.7s 0.55s forwards;
}

.h-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  max-width: 500px;
  opacity: 0;
  animation: up 0.7s 0.65s forwards;
}

.h-sub strong {
  color: var(--ink);
  font-weight: 500;
}

.h-ctas {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  opacity: 0;
  animation: up 0.7s 0.8s forwards;
}

.btn-d,
.btn-sub {
  font-family: var(--fl);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  padding: 15px 40px;
  text-decoration: none;
  display: inline-block;
  border: none;
  transition: background 0.2s ease, transform 0.15s ease;
  cursor: pointer;
}

.btn-d:hover,
.btn-sub:hover {
  background: var(--white);
  color: var(--paper);
  transform: translateY(-1px);
}

.btn-t {
  font-family: var(--fl);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.btn-t:hover {
  color: var(--ink);
  border-color: var(--mid);
}

.h-right {
  background: var(--off);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 56px 56px;
  position: relative;
  overflow: hidden;
}

.h-ghost {
  font-family: var(--fd);
  font-weight: 800;
  font-size: clamp(180px, 24vw, 320px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--rule);
  position: absolute;
  bottom: -24px;
  right: -8px;
  letter-spacing: -0.04em;
  pointer-events: none;
  opacity: 0;
  animation: fade 1s 1s forwards;
}

.h-stats {
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: up 0.7s 0.55s forwards;
}

.h-stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}

.h-stat:first-child {
  border-top: 1px solid var(--rule);
}

.sk {
  font-family: var(--fl);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
}

.sv {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
  text-align: right;
}

/* TICKER */

.tick {
  background: #050914;
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}

.tick-t {
  display: inline-block;
  animation: scroll 28s linear infinite;
  font-family: var(--fl);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--mid);
}

.tick-t .sp {
  color: #304561;
  margin: 0 24px;
  font-size: 8px;
}

/* GLOBAL SECTION SYSTEM */

section {
  padding: var(--section-y) 56px;
  scroll-margin-top: calc(var(--nav-h) + 18px);
}

.ey {
  font-family: var(--fl);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: var(--eyebrow-gap);
  display: flex;
  align-items: center;
  gap: 14px;
}

.ey::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--rule);
  flex-shrink: 0;
}

.disp {
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 0.91;
  margin-bottom: var(--heading-gap);
}

.disp-sm {
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 0.91;
  margin-bottom: var(--heading-gap);
}

/* SECTION BACKGROUNDS */

#problem,
#forwho,
#nodrift {
  background: var(--off);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

#offer,
#process,
#pricing,
#apply {
  background: var(--paper);
}

/* UNIFORM 2-COLUMN SECTION LAYOUTS */

.prob-g,
.off-top,
.nd-wrap,
.px-g,
.ap-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--content-gap);
}

.off-top {
  align-items: end;
  margin-bottom: var(--heading-gap);
}

/* PROBLEM */

.prob-b,
.off-intro,
.nd-copy,
.px-r,
.ap-side {
  max-width: 620px;
}

.prob-b,
.off-intro,
.nd-copy,
.ap-side p {
  font-size: 17px;
  line-height: 1.8;
}

.prob-b {
  color: var(--muted);
}

.prob-b p + p {
  margin-top: 20px;
}

.prob-b strong {
  color: var(--ink);
  font-weight: 500;
}

.pull {
  font-family: var(--fd);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.4;
  color: var(--ink);
  padding-left: 28px;
  border-left: 3px solid var(--ink);
  margin-bottom: var(--heading-gap);
}

.tr-list,
.fw-list,
.pc-list,
.ms,
.nd-list {
  list-style: none;
}

.tr {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.tr:first-child {
  border-top: 1px solid var(--rule);
}

.tr.vis {
  opacity: 1;
  transform: translateY(0);
}

.tr-n {
  font-family: var(--fl);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--rule);
  flex-shrink: 0;
  padding-top: 3px;
}

.tr-t {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}

/* OFFER */

.off-intro {
  color: var(--muted);
  font-weight: 300;
}

.off-g {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.oc {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 28px 24px 30px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease, background 0.2s ease;
}

.oc.vis {
  opacity: 1;
  transform: translateY(0);
}

.oc:hover {
  background: #0A1222;
}

.oc-n {
  font-family: var(--fl);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--rule);
  margin-bottom: 14px;
}

.oc-h {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.2;
}

.oc-b {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

/* NO DRIFT */

.nd-copy {
  color: var(--muted);
}

.nd-copy strong {
  color: var(--ink);
  font-weight: 500;
}

.nd-panel {
  border: 1px solid var(--rule);
  background: rgba(0, 0, 0, 0.08);
  padding: 26px 24px;
}

.nd-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.nd-list li:last-child {
  border-bottom: none;
}

.nd-list li .num {
  font-family: var(--fl);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--mid);
  flex-shrink: 0;
  margin-top: 4px;
}

/* FOR WHO */

.fw-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--content-gap);
}

.fw-c {
  background: var(--off);
  padding: 40px 44px 48px;
  border: 1px solid var(--rule);
}

.fw-label {
  font-family: var(--fl);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mid);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}

.fw-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

.fm {
  font-family: var(--fl);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  color: var(--mid);
  margin-top: 1px;
}

/* PROCESS */

.pr-rows {
  max-width: 760px;
}

.pr {
  display: grid;
  grid-template-columns: 88px 1fr;
  border-bottom: 1px solid var(--rule);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.pr:first-child {
  border-top: 1px solid var(--rule);
}

.pr.vis {
  opacity: 1;
  transform: translateY(0);
}

.pr:hover {
  background: #0A1222;
}

.pr-nw {
  padding: 32px 0;
  border-right: 1px solid var(--rule);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.pr-n {
  font-family: var(--fl);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--rule);
}

.pr-b {
  padding: 32px 0 32px 40px;
}

.pr-h {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 6px;
}

.pr-t {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
  max-width: 620px;
}

/* PRICING */

.pc {
  border: 1px solid var(--rule);
  background: #07101F;
  padding: 48px 44px;
}

.pc-badge {
  font-family: var(--fl);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  background: #14233A;
  display: inline-block;
  padding: 7px 16px;
  margin-bottom: 32px;
}

.pc-amt {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 92px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.pc-amt sup {
  font-size: 30px;
  font-weight: 400;
  vertical-align: super;
  color: var(--muted);
}

.pc-per {
  font-family: var(--fl);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 10px;
  margin-bottom: 32px;
}

.pc-list {
  margin-bottom: 36px;
}

.pc-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
}

.pc-list li::before {
  content: "";
  width: 4px;
  height: 4px;
  background: #43648D;
  border-radius: 50%;
  flex-shrink: 0;
}

.btn-p {
  font-family: var(--fl);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  padding: 17px 40px;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-p:hover {
  background: var(--white);
  transform: translateY(-1px);
}

.pc-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

.px-r p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
  font-weight: 300;
  max-width: none;
}

.px-r strong {
  color: var(--ink);
  font-weight: 400;
}

.m {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}

.m-l {
  font-family: var(--fl);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
}

.m-v {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 19px;
  color: var(--muted);
  white-space: nowrap;
}

.m-v.now {
  color: var(--ink);
}

/* APPLY */

.ap-side p {
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 16px;
}

.ap-side strong {
  color: var(--ink);
  font-weight: 500;
}

.ap-note {
  margin-top: 28px;
  padding: 20px 22px;
  background: var(--off);
  border: 1px solid var(--rule);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* FORM */

.fs {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fsec {
  border: 1px solid var(--rule);
  overflow: hidden;
  background: var(--off);
}

.fsec-h {
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  user-select: none;
  background: var(--off);
  transition: background 0.15s ease;
}

.fsec-h:hover {
  background: #0D1830;
}

.fsec-hl {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.fsec-n {
  font-family: var(--fl);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--mid);
  flex-shrink: 0;
}

.fsec-name {
  font-family: var(--fl);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.fsec-tog {
  font-size: 20px;
  color: var(--mid);
  transition: transform 0.25s ease;
  line-height: 1;
  font-weight: 300;
  flex-shrink: 0;
}

.fsec.open .fsec-tog {
  transform: rotate(45deg);
}

.fsec-b {
  display: none;
  padding: 28px 28px 36px;
}

.fsec.open .fsec-b {
  display: block !important;
}

.fsec-b[hidden] {
  display: none !important;
}

.fr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

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

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

.ff {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}

.ff label {
  font-family: var(--fl);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
}

.ff input,
.ff select,
.ff textarea {
  background: #08101F;
  border: 1px solid var(--rule);
  color: var(--ink);
  font-family: var(--fb);
  font-size: 15px;
  font-weight: 300;
  padding: 12px 15px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.ff input:focus,
.ff select:focus,
.ff textarea:focus {
  border-color: var(--mid);
  background: #0D1830;
}

.ff input::placeholder,
.ff textarea::placeholder {
  color: #5E708C;
  font-style: italic;
}

.ff textarea {
  resize: vertical;
  min-height: 92px;
  line-height: 1.6;
}

.ff select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6C88' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.f-foot {
  margin-top: 3px;
  padding: 36px;
  background: var(--off);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.f-foot p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.7;
  max-width: 460px;
  font-weight: 300;
}

/* FOOTER */

footer.ft {
  background: #050914;
  border-top: 1px solid var(--rule);
  padding: 52px 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}

.fl-logo {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
}

.fl-logo span {
  font-weight: 400;
  color: var(--mid);
}

.fl-mid,
.fl-r {
  font-family: var(--fl);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--mid);
  line-height: 1.9;
  text-transform: uppercase;
}

.fl-mid {
  letter-spacing: 0.24em;
  text-align: center;
}

.fl-r {
  text-align: right;
}

/* ANIMATIONS */

@keyframes up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .tick-t {
    animation: none !important;
  }
}

/* TABLET */

@media (max-width: 960px) {
  nav.wn {
    padding: 0 24px;
  }

  section {
    padding: var(--section-y-mobile) 24px;
  }

  .hero,
  .prob-g,
  .off-top,
  .nd-wrap,
  .px-g,
  .ap-g,
  .fw-g {
    grid-template-columns: 1fr;
    gap: var(--content-gap-mobile);
  }

  .h-left {
    padding: 48px 24px 40px;
    border-right: none;
  }

  .h-right {
    display: none;
  }

  .off-g {
    grid-template-columns: 1fr 1fr;
  }

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

  footer.ft {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .fl-r,
  .fl-mid {
    text-align: center;
  }
}

/* MOBILE */

@media (max-width: 580px) {
  nav.wn {
    padding: 0 16px;
  }

  section {
    padding: var(--section-y-mobile) 16px;
  }

  .off-g {
    grid-template-columns: 1fr;
  }

  .wn-link {
    display: none;
  }

  .wn-r {
    gap: 12px;
  }

  .wn-cta {
    padding: 10px 18px;
    font-size: 10px;
  }

  .h-left {
    padding: 24px 16px 32px;
  }

  .h-kick {
    letter-spacing: 0.22em;
  }

  .h-head {
    font-size: clamp(46px, 15vw, 68px);
    line-height: 0.9;
    letter-spacing: -0.02em;
  }

  .h-subhead {
    font-size: 24px;
    line-height: 1.12;
    margin-bottom: 16px;
  }

  .h-sub {
    font-size: 16px;
  }

  .h-ctas {
    gap: 16px;
    align-items: flex-start;
  }

  .btn-d,
  .btn-sub {
    width: 100%;
    text-align: center;
    padding: 15px 20px;
  }

  .btn-t {
    font-size: 11px;
  }

  .pc {
    padding: 36px 22px;
  }

  .pc-amt {
    font-size: 72px;
  }

  .fsec-h {
    padding: 18px 18px;
  }

  .fsec-b {
    padding: 22px 18px 28px;
  }

  .f-foot {
    padding: 28px 18px;
  }

  footer.ft {
    padding: 40px 16px;
  }

  .disp,
  .disp-sm {
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 36px;
  }

  .pull {
    padding-left: 20px;
    margin-bottom: 36px;
  }

  .pr {
    grid-template-columns: 64px 1fr;
  }

  .pr-b {
    padding: 28px 0 28px 24px;
  }
}
