:root {
  --navy: #071525;
  --navy-soft: #0d2238;
  --blue: #125f9e;
  --blue-light: #4fb5e8;
  --coral: #f16f61;
  --cream: #f3f0e9;
  --white: #ffffff;
  --ink: #102236;
  --muted: #687585;
  --line: #dfe5e9;
  --shadow: 0 28px 70px rgba(3, 18, 33, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

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

svg {
  width: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.sale-bar {
  position: relative;
  z-index: 20;
  background: var(--coral);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.sale-bar__inner {
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.sale-bar p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
}

.sale-bar strong {
  padding: 3px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sale-bar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sale-bar a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.16);
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 43px;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  font-size: 26px;
  font-weight: 300;
  letter-spacing: -0.055em;
}

.brand span {
  color: var(--blue-light);
  font-weight: 820;
}

.brand em {
  margin-left: 4px;
  color: var(--coral);
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
}

.nav nav {
  display: flex;
  align-items: center;
  gap: 38px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 650;
}

.nav nav a {
  position: relative;
  padding: 8px 0;
}

.nav nav a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transition: width 180ms ease;
}

.nav nav a:hover {
  color: #fff;
}

.nav nav a:hover::after {
  width: 100%;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 780;
  letter-spacing: -0.01em;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  padding: 0 19px;
  font-size: 13px;
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

.button--outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.button--primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 14px 36px rgba(241, 111, 97, 0.24);
}

.button--primary:hover {
  background: #fa7c6d;
}

.hero {
  position: relative;
  min-height: 870px;
  overflow: hidden;
  padding-top: 131px;
  background:
    linear-gradient(115deg, rgba(7, 21, 37, 0.97) 0 48%, rgba(7, 21, 37, 0.84)),
    radial-gradient(circle at 80% 25%, #17659c, #071525 64%);
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 70px 70px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 60%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow--one {
  top: 170px;
  right: -160px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(79, 181, 232, 0.12);
  box-shadow:
    0 0 0 80px rgba(79, 181, 232, 0.025),
    0 0 0 160px rgba(79, 181, 232, 0.018);
}

.hero-glow--two {
  right: 37%;
  bottom: 50px;
  width: 300px;
  height: 300px;
  background: rgba(241, 111, 97, 0.07);
  filter: blur(80px);
}

.hero__grid {
  position: relative;
  z-index: 2;
  min-height: 670px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.9fr);
  align-items: center;
  gap: 76px;
  padding-top: 56px;
  padding-bottom: 70px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 33px;
  height: 2px;
  display: inline-block;
  margin: 0 11px 3px 0;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
  color: var(--blue-light);
}

.hero__lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 18px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 36px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  color: var(--blue-light);
  font-size: 17px;
}

.hero__meta {
  display: flex;
  gap: 32px;
  margin-top: 54px;
}

.hero__meta div {
  min-width: 105px;
  padding-left: 15px;
  border-left: 2px solid rgba(79, 181, 232, 0.35);
}

.hero__meta span,
.hero__meta strong {
  display: block;
}

.hero__meta span {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__meta strong {
  font-size: 15px;
}

.commerce-visual {
  position: relative;
  height: 520px;
  perspective: 1200px;
}

.dashboard {
  position: absolute;
  top: 54px;
  right: -10px;
  width: 480px;
  height: 350px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(250, 252, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
  transform: rotateY(-8deg) rotateX(4deg) rotateZ(-1deg);
}

.dashboard__top {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 21px;
  border-bottom: 1px solid #e4eaf0;
  background: #fff;
}

.mini-brand {
  font-size: 14px;
  font-weight: 300;
}

.mini-brand b {
  color: var(--blue);
  font-weight: 850;
}

.dashboard__dots {
  display: flex;
  gap: 6px;
}

.dashboard__dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #cdd6df;
}

.dashboard__body {
  height: calc(100% - 58px);
  display: flex;
}

.dashboard__side {
  width: 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-top: 29px;
  background: #0b1f33;
}

.dashboard__side span {
  width: 17px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.26);
}

.dashboard__side .side-active {
  height: 17px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(241, 111, 97, 0.15);
}

.dashboard__content {
  flex: 1;
  padding: 25px;
}

.stat-row {
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 21px;
  border: 1px solid #e5ebef;
  background: #fff;
}

.stat-row small,
.stat-row strong,
.stat-row em {
  display: block;
}

.stat-row small {
  color: #7c8793;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.stat-row strong {
  margin-top: 6px;
  font-size: 23px;
}

.stat-row em {
  margin-top: 3px;
  color: #3d9c77;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.chart {
  height: 50px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

.chart i {
  width: 7px;
  background: #d7eaf5;
}

.chart i:nth-child(1) {
  height: 18px;
}

.chart i:nth-child(2) {
  height: 27px;
}

.chart i:nth-child(3) {
  height: 23px;
}

.chart i:nth-child(4) {
  height: 38px;
}

.chart i:nth-child(5) {
  height: 32px;
}

.chart i:nth-child(6) {
  height: 44px;
  background: var(--blue-light);
}

.chart i:nth-child(7) {
  height: 49px;
  background: var(--coral);
}

.product-row {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 3px;
  border-bottom: 1px solid #e7ecef;
  font-size: 11px;
}

.product-row > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.product-row small {
  color: #81909e;
  font-size: 8px;
}

.product-row > strong {
  color: var(--blue);
}

.product-image {
  width: 38px;
  height: 32px;
  display: block;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58) 0 35%, transparent 35%),
    #f0a49a;
}

.product-image--blue {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0 35%, transparent 35%),
    #76badb;
}

.floating-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(10, 31, 50, 0.92);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.floating-card--order {
  top: 23px;
  left: -18px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 19px;
}

.floating-card--order small,
.floating-card--order strong {
  display: block;
}

.floating-card--order small,
.floating-card--market small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-card--order strong {
  font-size: 16px;
}

.floating-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #3b9d77;
  font-size: 15px;
  font-weight: 900;
}

.floating-card--market {
  right: 1px;
  bottom: 48px;
  min-width: 160px;
  padding: 18px 20px;
}

.floating-card--market strong {
  display: block;
  margin: 3px 0 4px;
  color: var(--blue-light);
  font-size: 25px;
}

.floating-card--market span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
}

.nl-badge {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 46px;
  height: 46px;
  display: grid;
  z-index: 4;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 12px 25px rgba(241, 111, 97, 0.22);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(79, 181, 232, 0.14);
  border-radius: 50%;
}

.visual-orbit--one {
  top: 15px;
  right: -80px;
  width: 430px;
  height: 430px;
}

.visual-orbit--two {
  right: 50px;
  bottom: -5px;
  width: 240px;
  height: 240px;
}

.trust-strip {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 17, 30, 0.55);
}

.trust-strip__inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.trust-strip__inner i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--coral);
}

.section {
  padding: 112px 0;
}

.opportunities {
  background: var(--cream);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  align-items: end;
  gap: 70px;
  margin-bottom: 54px;
}

.eyebrow--dark {
  color: var(--blue);
}

.section-heading h2,
.value-points h2,
.transfer-card h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 760;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.concept-list {
  border-top: 1px solid #cfd8de;
}

.concept {
  min-height: 158px;
  display: grid;
  grid-template-columns: 82px 1fr 260px;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid #cfd8de;
  transition:
    background 180ms ease,
    padding 180ms ease;
}

.concept:hover {
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.65);
}

.concept__number {
  align-self: stretch;
  display: grid;
  place-items: center;
  border-right: 1px solid #cfd8de;
  color: #a6b3bd;
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
}

.concept__content {
  display: grid;
  grid-template-columns: 140px minmax(250px, 1fr) minmax(280px, 0.9fr);
  align-items: center;
  gap: 28px;
}

.concept__content p {
  margin: 0;
  color: var(--coral);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.concept__content h3 {
  margin: 0;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.concept__content span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.concept__accent {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 13px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.concept__accent svg {
  color: var(--coral);
}

.domain-value {
  overflow: hidden;
  background: #fff;
}

.value-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.7fr);
  align-items: center;
  gap: 110px;
}

.value-identity {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.value-identity::after {
  position: absolute;
  top: -180px;
  right: -180px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(79, 181, 232, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 60px rgba(79, 181, 232, 0.03),
    0 0 0 120px rgba(79, 181, 232, 0.025);
  content: "";
}

.giant-domain {
  position: relative;
  z-index: 1;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 260;
  letter-spacing: -0.065em;
}

.giant-domain::before {
  position: absolute;
  top: -20px;
  left: 0;
  width: 55px;
  height: 3px;
  background: var(--coral);
  content: "";
}

.giant-domain span {
  color: var(--blue-light);
  font-weight: 800;
}

.value-identity > p:last-child {
  max-width: 520px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.8;
}

.value-points h2 {
  margin-bottom: 34px;
  font-size: 38px;
}

.value-points ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.value-points li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 720;
}

.check {
  width: 27px;
  height: 27px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #e6f3fa;
  color: var(--blue);
}

.check svg {
  width: 14px;
}

.value-note {
  margin-top: 28px;
  padding-left: 21px;
  border-left: 3px solid var(--coral);
}

.value-note span {
  color: var(--coral);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.value-note p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.transfer {
  background:
    linear-gradient(rgba(7, 21, 37, 0.93), rgba(7, 21, 37, 0.93)),
    radial-gradient(circle at 80% 20%, #1b6b9d, var(--navy) 65%);
}

.transfer-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: stretch;
  gap: 80px;
  color: #fff;
}

.transfer-card__copy {
  padding: 34px 0;
}

.transfer-card h2 {
  max-width: 700px;
}

.transfer-card__copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.75;
}

.button--light {
  background: #fff;
  color: var(--navy);
}

.button--light:hover {
  background: var(--blue-light);
}

.price-panel {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  background: rgba(255, 255, 255, 0.065);
}

.price-panel > span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.price-panel > strong {
  display: block;
  margin: 12px 0 6px;
  color: var(--blue-light);
  font-size: 52px;
  letter-spacing: -0.05em;
}

.price-panel > p {
  margin: 0 0 33px;
  font-size: 16px;
  font-weight: 750;
}

.price-panel div {
  display: flex;
  gap: 10px;
}

.price-panel div span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
}

footer {
  padding: 74px 0 28px;
  background: #050f1b;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.7fr;
  gap: 60px;
  padding-bottom: 62px;
}

.brand--footer {
  font-size: 23px;
}

.footer-grid > div:first-child p {
  max-width: 260px;
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 12px;
  line-height: 1.75;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-col h3 {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.footer-col a:hover {
  color: var(--blue-light);
}

.footer-contact p {
  margin: 0 0 17px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

.footer-contact a {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--coral);
}

.footer-contact a:hover {
  background: var(--blue-light);
}

.footer-contact svg {
  width: 21px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
}

@media (max-width: 1080px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 96px;
    padding-bottom: 110px;
  }

  .hero__copy {
    max-width: 760px;
  }

  .commerce-visual {
    width: min(570px, 100%);
    height: 440px;
    margin: 0 auto;
  }

  .hero {
    min-height: 1240px;
  }

  .concept {
    grid-template-columns: 65px 1fr;
    padding: 26px 0;
  }

  .concept:hover {
    padding: 26px 16px;
  }

  .concept__number {
    min-height: 100%;
  }

  .concept__content {
    grid-template-columns: 130px 1fr;
  }

  .concept__content span {
    grid-column: 2;
  }

  .concept__accent {
    grid-column: 2;
    justify-content: flex-start;
    padding-bottom: 8px;
  }

  .value-grid,
  .transfer-card {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .price-panel {
    min-height: 260px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-contact {
    display: none;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 32px, 1180px);
  }

  .sale-bar__inner {
    min-height: 52px;
    justify-content: space-between;
    gap: 10px;
  }

  .sale-bar p {
    font-size: 10px;
  }

  .sale-bar strong {
    padding: 0;
    border: 0;
    font-size: 9px;
  }

  .sale-bar a {
    display: none;
  }

  .site-header {
    top: 52px;
  }

  .nav {
    height: 74px;
  }

  .nav nav {
    display: none;
  }

  .brand {
    font-size: 22px;
  }

  .hero {
    min-height: 1060px;
    padding-top: 126px;
  }

  .hero__grid {
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 105px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero__lead {
    font-size: 16px;
  }

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

  .hero__meta {
    gap: 12px;
    margin-top: 42px;
  }

  .hero__meta div {
    min-width: 0;
    padding-left: 10px;
  }

  .hero__meta strong {
    font-size: 11px;
  }

  .commerce-visual {
    height: 345px;
    margin-top: 22px;
  }

  .dashboard {
    top: 38px;
    right: 0;
    width: 95%;
    height: 265px;
  }

  .dashboard__content {
    padding: 15px;
  }

  .stat-row {
    height: 80px;
    padding: 10px 14px;
  }

  .stat-row strong {
    font-size: 18px;
  }

  .product-row {
    padding: 10px 2px;
  }

  .floating-card--order {
    left: -2px;
    padding: 10px 12px;
  }

  .floating-card--market {
    right: 0;
    bottom: 8px;
    min-width: 130px;
    padding: 12px 15px;
  }

  .nl-badge {
    right: 1px;
    top: 3px;
  }

  .trust-strip__inner {
    min-height: 62px;
    gap: 10px;
    justify-content: space-between;
    font-size: 7px;
  }

  .trust-strip__inner i {
    display: none;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 38px;
  }

  .section-heading h2,
  .transfer-card h2 {
    font-size: 38px;
  }

  .concept {
    min-height: 0;
    grid-template-columns: 45px 1fr;
    gap: 18px;
  }

  .concept__content {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .concept__content span,
  .concept__accent {
    grid-column: 1;
  }

  .concept__accent {
    padding-top: 6px;
  }

  .value-identity {
    min-height: 360px;
    padding: 36px 28px;
  }

  .giant-domain {
    font-size: 42px;
  }

  .value-points h2 {
    font-size: 34px;
  }

  .transfer-card {
    gap: 28px;
  }

  .price-panel {
    padding: 34px 28px;
  }

  .price-panel > strong {
    font-size: 44px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 24px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
