:root {
  --bg: #fff7f7;
  --panel: #ffffff;
  --panel-soft: #fff0f0;
  --ink: #211417;
  --muted: #716066;
  --line: #f1d7d7;
  --primary: #e10d12;
  --primary-dark: #a9090e;
  --accent: #ff5b4f;
  --gold: #ffc15a;
  --rose: #b20d13;
  --deep: #2b0d10;
  --shadow: 0 18px 50px rgba(129, 10, 16, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(241, 215, 215, 0.78);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 18px clamp(20px, 5vw, 72px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 1.12rem;
  font-weight: 800;
  gap: 10px;
}

.brand-logo {
  filter: drop-shadow(0 8px 14px rgba(169, 9, 14, 0.16));
  height: 46px;
  object-fit: contain;
  width: 46px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 3vw, 36px);
  font-size: 0.94rem;
  font-weight: 600;
}

.site-nav a {
  color: #4e3c41;
}

.site-nav a:hover {
  color: var(--primary);
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.menu-toggle span {
  background: var(--ink);
  border-radius: 99px;
  display: block;
  height: 2px;
  width: 24px;
}

main {
  overflow: hidden;
}

section,
.site-footer {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.section-band {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 91, 79, 0.16), transparent 26%),
    radial-gradient(circle at 86% 14%, rgba(255, 193, 90, 0.18), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fff0f0 100%);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(36px, 6vw, 88px);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  min-height: 720px;
  padding-top: clamp(72px, 8vw, 118px);
}

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

.narrow {
  max-width: 820px;
}

.eyebrow {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(3rem, 7vw, 6.6rem);
  letter-spacing: 0;
  line-height: 0.94;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: 0;
  line-height: 1.05;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.05rem;
  letter-spacing: 0;
  line-height: 1.25;
}

p {
  color: var(--muted);
}

.hero-copy p:not(.eyebrow),
.section-copy p {
  font-size: 1.08rem;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
}

.button.primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 12px 28px rgba(225, 13, 18, 0.25);
}

.button.primary:hover {
  background: var(--primary-dark);
}

.button.secondary {
  background: white;
  border: 1px solid var(--line);
  color: var(--ink);
}

.hero-visual {
  min-height: 520px;
  position: relative;
}

.laptop {
  bottom: 44px;
  left: 50%;
  max-width: 660px;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
}

.laptop-screen {
  background: #2b0d10;
  border: 12px solid #3d1015;
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 18px;
}

.screen-top {
  display: flex;
  gap: 7px;
  margin-bottom: 16px;
}

.screen-top span {
  background: #c98b8e;
  border-radius: 50%;
  height: 9px;
  width: 9px;
}

.dashboard {
  background: #fff8f8;
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1.35fr 0.8fr;
  min-height: 310px;
  padding: 18px;
}

.dash-main,
.dash-side > div {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.dash-main strong {
  color: var(--ink);
  display: block;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
  margin-bottom: 24px;
}

.dash-side {
  display: grid;
  gap: 12px;
}

.dash-side strong {
  color: var(--primary);
  display: block;
  font-size: 1.3rem;
}

.dash-main p,
.dash-side p {
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.bar-chart {
  align-items: end;
  display: flex;
  gap: 10px;
  height: 130px;
}

.bar-chart span {
  background: linear-gradient(180deg, var(--accent), var(--primary-dark));
  border-radius: 8px 8px 3px 3px;
  flex: 1;
  min-width: 24px;
}

.laptop-base {
  background: linear-gradient(180deg, #f2d0d0, #c99b9b);
  border-radius: 0 0 30px 30px;
  height: 28px;
  margin: 0 auto;
  width: 82%;
}

.orbital-card {
  background: white;
  border: 1px solid rgba(221, 230, 242, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 16px 18px;
  position: absolute;
  z-index: 2;
}

.orbital-card span {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
}

.orbital-card strong {
  color: var(--primary);
  display: block;
  font-size: 1.8rem;
}

.card-top {
  right: 3%;
  top: 38px;
}

.card-bottom {
  bottom: 40px;
  left: 0;
}

.about {
  align-items: center;
  background: white;
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr 0.85fr;
}

.about-media {
  min-height: 330px;
  position: relative;
}

.payment-card {
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: white;
  min-height: 210px;
  padding: 28px;
  position: absolute;
  width: min(420px, 86%);
}

.payment-card span,
.payment-card small {
  display: block;
  font-weight: 700;
  opacity: 0.82;
}

.payment-card strong {
  display: block;
  font-size: 1.75rem;
  line-height: 1.1;
  margin: 52px 0 18px;
}

.payment-card-front {
  background: linear-gradient(135deg, #2b0d10, #e10d12 68%, #ff5b4f);
  right: 8%;
  top: 0;
}

.payment-card-back {
  background: linear-gradient(135deg, #ff5b4f, #a9090e 58%, #2b0d10);
  bottom: 0;
  left: 0;
  transform: rotate(-5deg);
}

.method-grid,
.feature-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

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

.method-card,
.feature-card,
.testimonial-card,
.flow-step {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.featured-method {
  background:
    linear-gradient(135deg, rgba(225, 13, 18, 0.95), rgba(169, 9, 14, 0.95)),
    var(--primary);
  border-color: rgba(169, 9, 14, 0.34);
  color: white;
  grid-column: span 2;
  overflow: hidden;
  position: relative;
}

.featured-method::after {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
  height: 120px;
  position: absolute;
  right: -38px;
  top: -46px;
  width: 120px;
}

.featured-method p {
  color: rgba(255, 255, 255, 0.82);
}

.featured-method .currency-icon,
.featured-method h3,
.featured-method p {
  position: relative;
  z-index: 1;
}

.method-card:hover,
.feature-card:hover,
.testimonial-card:hover,
.flow-step:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.method-card span,
.feature-icon,
.avatar {
  align-items: center;
  background: var(--panel-soft);
  border-radius: 8px;
  color: var(--primary);
  display: inline-flex;
  font-weight: 800;
  height: 46px;
  justify-content: center;
  margin-bottom: 18px;
  width: 46px;
}

.method-card .currency-icon {
  font-size: 1.18rem;
  letter-spacing: 0;
  min-width: 56px;
  padding: 0 8px;
  width: auto;
}

.featured-method .currency-icon {
  background: white;
  color: var(--primary);
}

.method-card h3,
.feature-card h3,
.testimonial-card h3,
.flow-step h3 {
  margin-bottom: 8px;
}

.method-card p,
.feature-card p,
.testimonial-card p,
.flow-step p {
  font-size: 0.94rem;
  margin-bottom: 0;
}

.features,
.testimonials {
  background: white;
}

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

.feature-icon {
  background: linear-gradient(135deg, rgba(225, 13, 18, 0.12), rgba(255, 91, 79, 0.16));
}

.flow {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 40px;
}

.flow-step span {
  color: var(--accent);
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 18px;
}

.overview {
  align-items: center;
  background: var(--deep);
  border-radius: 8px;
  color: white;
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr 1fr;
  margin-top: 56px;
  padding: clamp(28px, 5vw, 56px);
}

.overview p {
  color: rgba(255, 255, 255, 0.74);
}

.overview .eyebrow {
  color: var(--accent);
}

.settlement-list {
  counter-reset: none;
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.settlement-list li {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  display: flex;
  gap: 14px;
  padding: 16px;
}

.settlement-list span {
  align-items: center;
  background: var(--accent);
  border-radius: 50%;
  color: #2b0d10;
  display: inline-flex;
  flex: 0 0 auto;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  width: 38px;
}

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

.testimonial-card span {
  color: var(--primary);
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.avatar {
  background: linear-gradient(135deg, var(--primary), var(--rose));
  color: white;
}

.cta {
  align-items: start;
  background:
    radial-gradient(circle at 90% 5%, rgba(255, 91, 79, 0.18), transparent 28%),
    #fff0f0;
  display: grid;
  gap: 42px;
  grid-template-columns: 0.9fr 1.1fr;
}

.contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form span {
  font-size: 0.84rem;
  font-weight: 800;
}

input,
textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(225, 13, 18, 0.12);
  outline: none;
}

.form-note {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0;
}

.site-footer {
  align-items: start;
  background: #23090c;
  color: white;
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
  padding-bottom: 42px;
  padding-top: 42px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer .brand {
  color: white;
  margin-bottom: 12px;
}

.footer-contact p {
  margin-bottom: 8px;
}

.site-footer nav {
  display: grid;
  gap: 8px;
  justify-items: start;
}

@media (max-width: 1080px) {
  .method-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .menu-toggle {
    display: flex;
  }

  .site-nav {
    background: white;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    gap: 0;
    left: 0;
    padding: 12px 20px 20px;
    position: absolute;
    right: 0;
    top: 75px;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 12px 0;
  }

  .hero,
  .about,
  .overview,
  .cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-visual {
    min-height: 430px;
  }

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

  .about-media {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 18px;
  }

  section,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .hero-visual {
    min-height: 360px;
  }

  .laptop-screen {
    border-width: 8px;
    padding: 12px;
  }

  .dashboard {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .dash-side > div {
    padding: 12px;
  }

  .dash-side strong {
    font-size: 0.95rem;
  }

  .bar-chart {
    height: 86px;
  }

  .orbital-card {
    display: none;
  }

  .method-grid,
  .feature-grid,
  .flow,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .featured-method {
    grid-column: span 1;
  }

  .payment-card {
    width: 92%;
  }

  h1 {
    font-size: clamp(2.6rem, 16vw, 4rem);
  }
}
