:root {
  --bg: #f6f5f3;
  --bg-soft: #fcfaf7;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-solid: #ffffff;
  --text: #2f3136;
  --text-soft: #666b76;
  --text-faint: #888d97;
  --line: #ebe7e1;
  --line-strong: #ddd6cc;
  --brand: #ff5a1f;
  --brand-strong: #e94d14;
  --brand-soft: #fff2ea;
  --brand-glow: rgba(255, 90, 31, 0.18);
  --ok: #1f8a57;
  --ok-soft: #ecfaf2;
  --warn: #9e2b21;
  --warn-soft: #fff3f1;
  --shadow-sm: 0 14px 32px rgba(38, 31, 22, 0.06);
  --shadow-md: 0 26px 70px rgba(38, 31, 22, 0.09);
  --shadow-lg: 0 34px 100px rgba(38, 31, 22, 0.12);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1000px 560px at 100% 0%, rgba(255, 90, 31, 0.08), transparent 56%),
    radial-gradient(900px 520px at 0% 24%, rgba(255, 186, 146, 0.16), transparent 50%),
    linear-gradient(180deg, #f8f7f5 0%, #fbfaf8 38%, #f4f2ee 100%);
}

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

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

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

button {
  cursor: pointer;
}

.orbs,
.grid-glow,
.waves {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -2;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.7;
}

.orb.one {
  width: 360px;
  height: 360px;
  top: -40px;
  right: -80px;
  background: rgba(255, 90, 31, 0.14);
}

.orb.two {
  width: 340px;
  height: 340px;
  left: -90px;
  top: 34%;
  background: rgba(255, 196, 160, 0.18);
}

.orb.three {
  width: 380px;
  height: 380px;
  right: 18%;
  bottom: -120px;
  background: rgba(255, 90, 31, 0.12);
}

.grid-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(47, 49, 54, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 49, 54, 0.028) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 72%);
}

.waves::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 320px;
  background:
    radial-gradient(520px 120px at 15% 85%, rgba(255, 90, 31, 0.18), transparent 62%),
    radial-gradient(620px 140px at 86% 88%, rgba(255, 90, 31, 0.14), transparent 64%);
  opacity: 0.9;
}

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

.site-header {
  position: sticky;
  top: 10px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(235, 231, 225, 0.95);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, #ff6a33, #ff5a1f 62%, #ff946d);
  box-shadow: 0 14px 28px rgba(255, 90, 31, 0.24);
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
}

.brand-copy small {
  display: block;
  margin-top: 3px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-link,
.button,
.header-cta {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.nav-link {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 800;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--brand-strong);
  background: var(--brand-soft);
  outline: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, var(--brand-strong), var(--brand) 58%, #ff8d5f);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(255, 90, 31, 0.2);
}

.header-cta:hover,
.button:hover,
.header-cta:focus-visible,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(38, 31, 22, 0.11);
  outline: none;
}

.hero-surface {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,251,247,0.94));
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.hero-body {
  padding: 38px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--brand-soft);
  border: 1px solid #ffd8ca;
  color: var(--brand-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.eyebrow-light {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.96);
}

.display {
  margin: 18px 0 0;
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.display span {
  display: block;
  margin-top: 10px;
  color: var(--brand);
}

.lead {
  margin: 18px 0 0;
  max-width: 740px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.78;
}

.lead strong {
  color: var(--text);
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.button.primary {
  border: 0;
  background: linear-gradient(135deg, var(--brand-strong), var(--brand) 58%, #ff946d);
  color: #fff;
  box-shadow: 0 14px 24px rgba(255, 90, 31, 0.22);
}

.button.secondary {
  background: rgba(255,255,255,0.76);
}

.button.white {
  background: #fff;
  color: var(--brand-strong);
  border: 0;
}

.button.outline-white {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.26);
  color: #fff;
}

.hero-mini-points {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-mini-points span {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 800;
}

.hero-note {
  margin-top: 16px;
  color: var(--text-faint);
  font-size: 13px;
  line-height: 1.65;
  font-weight: 700;
}

.hero-visual-stack {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 14px;
  align-items: center;
}

.hero-visual-side {
  display: grid;
  gap: 14px;
}

.hero-device {
  border-radius: 34px;
  border: 1px solid rgba(221,214,204,0.8);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,248,243,0.94));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-device img,
.feature-shot img {
  width: 100%;
  height: auto;
}

.hero-device-main {
  padding: 14px;
}

.hero-device-small {
  padding: 10px;
}

.tilt-card {
  transform: perspective(1200px) rotateY(-4deg) rotateX(1.5deg);
}

.section-block {
  margin-top: 20px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.86);
  box-shadow: var(--shadow-sm);
}

.section-head {
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 14px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 14px 0 0;
  max-width: 760px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.75;
}

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

.step-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #fcfaf8);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-strong), var(--brand));
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(255, 90, 31, 0.22);
}

.step-card h3 {
  margin: 16px 0 10px;
  font-size: 21px;
  line-height: 1.2;
}

.step-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 14px;
}

.feature-showcase {
  display: grid;
  gap: 18px;
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #fcfaf8);
}

.feature-panel.reverse {
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
}

.feature-panel.reverse .feature-copy {
  order: 2;
}

.feature-panel.reverse .feature-shot {
  order: 1;
}

.feature-label,
.value-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--brand-soft);
  border: 1px solid #ffd7ca;
  color: var(--brand-strong);
  font-size: 12px;
  font-weight: 800;
}

.feature-copy h3,
.value-card h3,
.trust-card h3,
.faq-card h3 {
  margin: 14px 0 0;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.feature-copy p,
.value-card p,
.trust-card p,
.faq-card p,
.footer-text {
  margin: 14px 0 0;
  color: var(--text-soft);
  line-height: 1.76;
  font-size: 15px;
}

.feature-shot {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow-md);
}

.dual-value-block {
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,247,241,0.86));
}

.value-grid,
.trust-grid,
.faq-grid {
  display: grid;
  gap: 14px;
}

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

.value-card,
.trust-card,
.faq-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #fcfaf8);
}

.check-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 800;
}

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

.inline-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--brand-strong);
  font-size: 14px;
  font-weight: 800;
}

.cta-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  background:
    radial-gradient(480px 240px at 85% 12%, rgba(255,255,255,0.18), transparent 65%),
    linear-gradient(135deg, #ff6a33 0%, #ff5a1f 58%, #ff9365 100%);
  color: #fff;
  box-shadow: 0 24px 48px rgba(255, 90, 31, 0.22);
  border-color: rgba(255, 125, 78, 0.5);
}

.cta-copy h2 {
  margin: 14px 0 0;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.cta-copy p {
  margin: 14px 0 0;
  max-width: 720px;
  color: rgba(255,255,255,0.92);
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.site-footer-card {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.88);
  box-shadow: var(--shadow-sm);
}

.footer-brand {
  align-items: flex-start;
}

.footer-links-col {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links-col a {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 700;
}

.footer-links-col a:hover {
  color: var(--brand-strong);
}

.hidden {
  display: none !important;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .feature-panel,
  .feature-panel.reverse,
  .cta-block,
  .site-footer-card {
    grid-template-columns: 1fr;
  }

  .feature-panel.reverse .feature-copy,
  .feature-panel.reverse .feature-shot {
    order: unset;
  }

  .hero-visual-stack {
    grid-template-columns: 1fr;
  }

  .hero-visual-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid,
  .value-grid,
  .trust-grid,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    flex-direction: column;
    align-items: stretch;
  }

  .header-right {
    flex-direction: column;
    align-items: stretch;
  }

  .nav {
    width: 100%;
  }

  .header-cta {
    width: 100%;
  }

  .hero-body,
  .section-block,
  .site-footer-card {
    padding: 24px;
  }

  .steps-grid,
  .value-grid,
  .trust-grid,
  .faq-grid,
  .hero-visual-side {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: calc(100% - 18px);
    padding-top: 12px;
    padding-bottom: 26px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .display {
    font-size: 2.35rem;
  }

  .lead {
    font-size: 15px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .button,
  .button.white,
  .button.outline-white {
    width: 100%;
  }

  .hero-mini-points {
    display: grid;
  }
}