:root {
  --bg: #0a0d12;
  --bg-soft: #12161d;
  --panel: #1a1f28;
  --panel-2: #232428;
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.88);
  --text-muted: rgba(255, 255, 255, 0.7);
  --line: rgba(255, 255, 255, 0.08);
  --accent: #c8ff3d;
  --accent-dark: #101318;
  --radius-xl: 28px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-lg: 0 24px 56px rgba(0, 0, 0, 0.18);
  --shadow-xl: 0 26px 60px rgba(0, 0, 0, 0.28);
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Manrope, Arial, sans-serif;
}

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

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

button,
input {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  background: var(--bg);
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.section-space {
  margin-top: 72px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-dark);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(200, 255, 61, 0.18);
}

.button--primary {
  min-width: 138px;
}

.button--wide {
  width: 100%;
}

.button--cookie-accept {
  min-height: 50px;
}

.button--cookie-reject {
  min-height: 50px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--line);
}

.site-header {
  padding-top: 22px;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 10px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand__icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.brand__icon--footer {
  width: 54px;
  height: 54px;
}

.brand__text {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.header-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex: 1 1 auto;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  gap: 18px 28px;
  width: min(640px, 100%);
}

.main-nav a,
.footer-links a,
.footer-legal-links a {
  font-size: 14px;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.menu-toggle img {
  width: 28px;
  height: 28px;
}

.menu-toggle__close {
  display: none;
}

.menu-open .menu-toggle__open {
  display: none;
}

.menu-open .menu-toggle__close {
  display: block;
}

.hero__container {
  padding-top: 28px;
}

.hero__copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero__title,
.section-heading h2,
.gateway-strip h3,
.proof-showcase__copy h2,
.proof-panel__left h3,
.footer-cta h2,
.hero-card h2,
.hero-tile h3,
.step-card h3 {
  margin: 0;
  font-family: Oswald, Arial, sans-serif;
  font-weight: 500;
}

.hero__title {
  font-size: clamp(76px, 8vw, 112px);
  line-height: 0.9;
  letter-spacing: 0.015em;
}

.hero__title span,
.proof-showcase__copy span,
.footer-cta span {
  color: var(--accent);
}

.hero__text {
  max-width: 520px;
  margin: 22px auto 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.5;
}

.hero__cta {
  margin-top: 30px;
}

.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
}

.hero-card,
.hero-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.hero-card {
  min-height: 420px;
  padding: 26px;
}

.hero-card--light {
  background: linear-gradient(180deg, #f1f1ef 0%, #d7dae1 100%);
}

.hero-card--gray {
  background: linear-gradient(180deg, #d4d4d5 0%, #babcc1 100%);
}

.hero-card__content,
.hero-tile__content {
  position: relative;
  z-index: 1;
}

.hero-card h2 {
  max-width: 440px;
  color: #111318;
  font-size: 48px;
  line-height: 0.96;
  letter-spacing: -0.01em;
}

.hero-card__art {
  position: absolute;
  right: 22px;
  bottom: 14px;
}

.hero-card__art--small {
  width: 32%;
}

.hero-tile {
  min-height: 174px;
  padding: 24px;
  border: 1px solid rgba(195, 255, 89, 0.08);
  background: radial-gradient(circle at 100% 100%, rgba(177, 255, 48, 0.1), transparent 34%), linear-gradient(180deg, rgba(24, 29, 38, 0.98), rgba(16, 20, 27, 0.98));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  cursor: pointer;
}

.hero-tile h3 {
  color: var(--text);
  font-size: 46px;
  line-height: 0.96;
  text-align: center;
}

.hero-tile__content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.hero-tile__art {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.section-heading {
  display: grid;
  gap: 14px;
}

.section-heading--center {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(40px, 4.3vw, 56px);
  line-height: 1.02;
}

.section-heading p,
.gateway-strip p,
.proof-showcase__copy p,
.proof-panel__left p,
.why-card p,
.footer-cta p,
.footer-note,
.cookie-banner p,
.lead-form p,
.lead-form__legal {
  color: var(--text-soft);
}

.section-heading p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.55;
}

.products {
  margin-top: 110px;
}

.products__grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.screen-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #17181b;
  box-shadow: var(--shadow-xl);
}

.products__actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.gateway-strip {
  position: relative;
  overflow: hidden;
  margin-top: 150px;
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
  padding: 54px 28px 54px;
  min-height: 300px;
  background:
    radial-gradient(circle at 50% 50%, rgba(132, 255, 66, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(10, 13, 18, 0.42), rgba(10, 13, 18, 0.18));
}

.gateway-strip h3 {
  position: relative;
  z-index: 1;
  font-size: 40px;
  letter-spacing: 0.02em;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.26);
}

.gateway-strip p {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.26);
}

.gateway-strip .button {
  position: relative;
  z-index: 1;
}

.gateway-strip__flow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gateway-strip__line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(920px, 120%);
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(173, 255, 84, 0.1);
  opacity: 0.8;
  transform: translate(-50%, -50%);
  filter: blur(0.2px);
}

.gateway-strip__line::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid rgba(173, 255, 84, 0.08);
  transform: scaleX(0.94) scaleY(1.08);
}

.gateway-strip__line--one {
  width: min(980px, 130%);
  height: 240px;
  opacity: 0.44;
}

.gateway-strip__line--two {
  width: min(760px, 100%);
  height: 170px;
  opacity: 0.3;
}

.gateway-strip__line--three {
  width: min(560px, 76%);
  height: 110px;
  opacity: 0.22;
}

.gateway-strip::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(860px, 100%);
  height: 220px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(158, 255, 78, 0.14), transparent 72%);
  filter: blur(18px);
  pointer-events: none;
}

.steps__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-card {
  position: relative;
  overflow: hidden;
  min-height: 378px;
  padding: 22px 22px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #f2f1f0 0%, #dededd 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-card::before {
  content: "";
  position: absolute;
  right: -24px;
  top: 72px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176, 255, 43, 0.16), transparent 68%);
}

.step-card span {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  color: rgba(18, 19, 20, 0.72);
  font-size: 24px;
}

.step-card img {
  position: relative;
  z-index: 1;
  width: 168px;
  height: 168px;
  object-fit: contain;
  margin: auto;
}

.step-card h3 {
  position: relative;
  z-index: 1;
  color: #111318;
  font-size: 26px;
  line-height: 1;
  text-align: center;
}

.why {
  margin-top: 92px;
}

.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.why-card {
  position: relative;
  overflow: hidden;
  min-height: 214px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(200, 255, 61, 0.08), transparent 26%),
    linear-gradient(180deg, #181d25 0%, #11151c 100%);
  border: 1px solid rgba(200, 255, 61, 0.08);
  display: grid;
  align-content: start;
  gap: 14px;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.why-card::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 22px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  clip-path: none;
}

.why-card--pink::after { background: #db63f4; }
.why-card--green::after { background: #9ef04d; }
.why-card--blue::after { background: #6d58ff; }
.why-card--amber::after { background: #f0bf6d; }

.why-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at top right, rgba(200, 255, 61, 0.12), transparent 28%),
    linear-gradient(180deg, #1c212a 0%, #141920 100%);
}

.why-card__eyebrow {
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.why-card h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.why-card p {
  margin: 0;
  max-width: 100%;
  font-size: 15px;
  line-height: 1.62;
}

.proof-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg);
}

.proof-showcase__image {
  width: 70%;
}

.proof-showcase__copy {
  position: absolute;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  width: min(900px, calc(100% - 48px));
  text-align: center;
}

.proof-showcase__copy h2 {
  font-size: clamp(52px, 5.2vw, 84px);
  line-height: 0.95;
}

.proof-showcase__copy p {
  max-width: 820px;
  margin: 18px auto 0;
  font-size: 16px;
  line-height: 1.55;
}

.proof-panel {
  width: 86%;
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #2a2a2c;
}

.proof-panel__left,
.proof-panel__right {
  padding: 24px 30px;
}

.proof-panel__left {
  border-right: 1px solid var(--line);
  display: grid;
  align-content: space-between;
  gap: 14px;
}

.proof-panel__left h3 {
  font-size: 34px;
  line-height: 1;
  max-width: none;
}

.proof-panel__left span {
  color: var(--text);
  white-space: nowrap;
}

.proof-panel__left p {
  margin: 10px 0 0;
  max-width: 360px;
  font-size: 15px;
}

.proof-panel__orb-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.proof-panel__orb {
  width: 300px;
  height: 300px;
  object-fit: contain;
}

.proof-panel__right {
  display: grid;
  gap: 14px;
  align-content: center;
}

.proof-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 14px;
  align-items: center;
}

.proof-step strong {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 500;
}

.proof-step__icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proof-step__icon--beige { background: #f1e7d6; }
.proof-step__icon--blue { background: #c3e8f6; }
.proof-step__icon--green { background: #d7efbf; }

.proof-divider {
  position: relative;
  width: 18px;
  height: 18px;
  margin-left: 21px;
  border-radius: 50%;
  background: rgba(18, 19, 24, 0.5);
}

.proof-divider::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 5px;
  width: 2px;
  height: 10px;
  transform: translateX(-50%);
  background: #d6a14a;
}

.proof-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 6px;
  height: 6px;
  border-right: 2px solid #d6a14a;
  border-bottom: 2px solid #d6a14a;
  transform: translateX(-50%) rotate(45deg);
}

.proof-glyph {
  position: relative;
  width: 28px;
  height: 28px;
}

.proof-glyph::before,
.proof-glyph::after {
  content: "";
  position: absolute;
}

.proof-glyph--request::before {
  inset: 5px;
  border: 2px solid #1a1d24;
  border-radius: 50%;
}

.proof-glyph--request::after {
  inset: 1px;
  border: 2px solid transparent;
  border-top-color: #1a1d24;
  border-right-color: #1a1d24;
  border-radius: 50%;
}

.proof-glyph--connect::before {
  left: 3px;
  top: 7px;
  width: 22px;
  height: 16px;
  border: 2px solid #1a1d24;
  border-radius: 5px;
}

.proof-glyph--connect::after {
  left: 8px;
  top: 1px;
  width: 12px;
  height: 6px;
  border: 2px solid #1a1d24;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
}

.proof-glyph--power::before {
  left: 4px;
  top: 8px;
  width: 22px;
  height: 14px;
  border: 2px solid #1a1d24;
  border-radius: 5px;
}

.proof-glyph--power::after {
  left: 9px;
  top: 13px;
  width: 10px;
  height: 4px;
  border-top: 2px solid #1a1d24;
  border-bottom: 2px solid #1a1d24;
}

.site-footer {
  padding-bottom: 48px;
}

.footer-cta {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.footer-cta h2 {
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1;
}

.footer-cta p {
  margin: 0;
  font-size: 15px;
}

.footer-main {
  margin-top: 88px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(280px, 360px);
  align-items: start;
  gap: 56px;
}

.brand--footer {
  align-self: start;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 68px;
  padding-top: 8px;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 26px;
}

.footer-links a,
.footer-legal-links a,
.footer-note,
.footer-bottom {
  color: rgba(255, 255, 255, 0.58);
}

.footer-links a:hover,
.footer-legal-links a:hover {
  color: var(--accent);
}

.footer-subscribe {
  width: min(360px, 100%);
  justify-self: end;
}

.subscribe-form__title {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}

.subscribe-form__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  min-height: 46px;
}

.subscribe-form__row input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  outline: none;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.72);
}

.subscribe-form__row input::placeholder,
.lead-form input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.subscribe-form__submit {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  position: relative;
}

.subscribe-form__submit::before,
.subscribe-form__submit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--accent-dark);
  transform: translate(-50%, -50%);
}

.subscribe-form__submit::before {
  width: 16px;
  height: 2px;
}

.subscribe-form__submit::after {
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--accent-dark);
  border-right: 2px solid var(--accent-dark);
  background: transparent;
  left: calc(50% + 3px);
  transform: translate(-50%, -50%) rotate(45deg);
}

.form-message {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 14px;
}

.footer-note {
  margin: 42px auto 0;
  max-width: 620px;
  font-size: 14px;
  text-align: center;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--text-muted);
  font-size: 13px;
}

.footer-legal-links {
  display: flex;
  gap: 18px;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: min(360px, calc(100% - 24px));
  z-index: 50;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__card {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(25, 29, 38, 0.98), rgba(16, 20, 27, 0.98));
  border: 1px solid rgba(195, 255, 89, 0.08);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
}

.cookie-banner__title {
  font-size: 16px;
  letter-spacing: 0.04em;
}

.cookie-banner p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-banner a,
.lead-form__legal a {
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.cookie-banner__actions .button {
  flex: 1;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px 16px;
}

.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 12, 0.72);
}

.modal__dialog {
  position: relative;
  width: min(520px, 100%);
  border-radius: 28px;
  background: linear-gradient(180deg, #161b23 0%, #0f141b 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.modal__close img {
  width: 32px;
  height: 32px;
}

.modal__body {
  padding: 34px 28px 28px;
}

.lead-form,
.modal-success {
  display: grid;
  gap: 14px;
}

.modal-success[hidden],
.form-message[hidden],
.modal[hidden] {
  display: none !important;
}

.lead-form h2,
.modal-success__title {
  margin: 0;
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 52px;
  line-height: 0.96;
}

.modal-success__text {
  margin: 0;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 0 18px;
  outline: none;
  font: inherit;
}

.lead-form textarea {
  min-height: 132px;
  padding: 16px 18px;
  resize: vertical;
  display: block;
  line-height: 1.5;
  appearance: none;
  -webkit-appearance: none;
}

.lead-form textarea::placeholder,
.lead-form input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.lead-form input:focus,
.lead-form textarea:focus,
.subscribe-form__row input:focus {
  box-shadow: 0 0 0 2px rgba(200, 255, 61, 0.22);
}

.modal-success {
  text-align: center;
}

.is-locked {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .proof-panel {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .section-space {
    margin-top: 48px;
  }

  .header-bar {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .header-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding-top: 8px;
  }

  .menu-open .header-menu {
    display: flex;
  }

  .main-nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .header-bar > .button--primary {
    display: none;
  }

  .hero-cards,
  .products__grid,
  .steps__grid,
  .why__grid,
  .proof-panel,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .products__grid,
  .steps__grid,
  .why__grid {
    display: grid;
  }

  .hero-card,
  .hero-card--news {
    min-height: auto;
  }

  .hero-cards {
    margin-top: 44px;
  }

  .hero-card__art,
  .hero-tile__art {
    position: relative;
    right: auto;
    bottom: auto;
    margin-left: auto;
  }

  .proof-showcase__image {
    width: 100%;
  }

  .proof-showcase__copy {
    width: calc(100% - 24px);
    bottom: 22px;
  }

  .proof-showcase__copy h2 {
    font-size: clamp(38px, 10vw, 58px);
  }

  .proof-showcase__copy p {
    font-size: 15px;
  }

  .proof-panel__left {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-panel__orb {
    width: 220px;
    height: 220px;
  }

  .gateway-strip__line--one {
    width: 140%;
  }

  .gateway-strip__line--two {
    width: 112%;
  }

  .gateway-strip__line--three {
    width: 86%;
  }

  .why-card p {
    max-width: 100%;
  }

  .footer-bottom,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-main {
    gap: 28px;
  }

  .footer-subscribe {
    width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .brand__icon {
    width: 54px;
    height: 54px;
  }

  .brand__text {
    font-size: 20px;
  }

  .hero__title {
    font-size: clamp(58px, 18vw, 82px);
  }

  .hero__text,
  .section-heading p,
  .gateway-strip p,
  .why-card p {
    font-size: 16px;
  }

  .hero-card h2,
  .hero-tile h3,
  .proof-panel__left h3 {
    font-size: 34px;
  }

  .step-card {
    min-height: 320px;
  }

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

  .proof-step__icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .cookie-banner__actions {
    flex-direction: column;
  }

  .modal__body {
    padding: 28px 20px 22px;
  }
}
