:root {
  --od-ink: #101828;
  --od-muted: #5f6f85;
  --od-line: rgba(16, 24, 40, .1);
  --od-panel: rgba(255, 255, 255, .86);
  --od-blue: #4357e8;
  --od-blue-dark: #26349f;
  --od-green: #099268;
  --od-yellow: #f7c948;
  --od-bg: #f6f8fc;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--od-bg);
  color: var(--od-ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
.od-page {
  overflow: hidden;
  background:
    linear-gradient(180deg, #f7f9ff 0%, #ffffff 54%, #f4f7fb 100%);
}
.od-container {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}
.od-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(16, 24, 40, .08);
  background: rgba(247, 249, 255, .86);
  backdrop-filter: blur(18px);
}
.od-nav__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.od-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.08rem;
}
.od-brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(67, 87, 232, .18);
}
.od-nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.od-nav__links a {
  color: #53647b;
  font-weight: 750;
  font-size: .94rem;
  text-decoration: none;
}
.od-nav__links a:hover { color: var(--od-ink); }
.od-nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.od-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 850;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.od-btn:hover {
  transform: translateY(-1px);
}
.od-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--od-blue), var(--od-blue-dark));
  box-shadow: 0 18px 34px rgba(67, 87, 232, .24);
}
.od-btn--ghost {
  color: var(--od-ink);
  background: rgba(255,255,255,.72);
  border-color: rgba(16,24,40,.12);
}
.od-btn--light {
  color: var(--od-ink);
  background: #fff;
  border-color: rgba(16,24,40,.1);
}
.od-hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  padding-block: clamp(48px, 8vw, 100px);
}
.od-hero::before {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  left: 48%;
  top: 48%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: .62;
  background:
    radial-gradient(circle at 54% 42%, rgba(67, 87, 232, .16), transparent 34%),
    radial-gradient(circle at 44% 62%, rgba(9, 146, 104, .13), transparent 28%);
  pointer-events: none;
}
.od-hero > * { position: relative; z-index: 1; }
.od-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--od-green);
  background: rgba(9, 146, 104, .1);
  border: 1px solid rgba(9, 146, 104, .16);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.od-hero h1 {
  max-width: 760px;
  margin: 22px 0 18px;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: .94;
  letter-spacing: 0;
  font-weight: 950;
}
.od-hero__lead {
  max-width: 640px;
  color: var(--od-muted);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.68;
}
.od-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.od-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  max-width: 650px;
}
.od-proof span {
  min-height: 78px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  border: 1px solid rgba(16,24,40,.09);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 14px 34px rgba(16,24,40,.06);
}
.od-proof strong {
  font-size: 1.18rem;
}
.od-proof small {
  color: var(--od-muted);
  font-weight: 650;
}
.od-visual {
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.od-showcase {
  position: relative;
  width: min(500px, 100%);
  min-height: 620px;
}
.od-road {
  position: absolute;
  inset: 24px 0 24px 80px;
  border-radius: 44px;
  background:
    linear-gradient(90deg, transparent 0 16%, #f8fafc 16% 18%, #343942 18% 48%, var(--od-yellow) 48% 49%, #343942 49% 82%, #f8fafc 82% 84%, transparent 84%),
    linear-gradient(180deg, #34734d, #79a75b);
  transform: rotate(-8deg);
  box-shadow: 0 32px 80px rgba(16,24,40,.18);
}
.od-phone {
  position: absolute;
  left: 30px;
  top: 24px;
  width: min(360px, 80vw);
  border: 10px solid #101828;
  border-radius: 40px;
  background: #101828;
  box-shadow: 0 36px 84px rgba(16,24,40,.34);
}
.od-phone__bar {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.od-phone__bar span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b4658;
}
.od-phone__screen {
  min-height: 550px;
  border-radius: 29px;
  padding: 18px;
  background: #f8fafc;
}
.od-app-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.od-app-head__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.od-app-head img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}
.od-app-head strong,
.od-card strong,
.od-row strong {
  display: block;
  color: var(--od-ink);
}
.od-app-head small,
.od-card small,
.od-row span {
  color: #66758a;
}
.od-pill {
  color: #075e49;
  background: rgba(9,146,104,.12);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: .78rem;
  font-weight: 850;
}
.od-card {
  border: 1px solid rgba(16,24,40,.08);
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(16,24,40,.06);
  margin-bottom: 12px;
}
.od-card--primary strong {
  color: var(--od-green);
  font-size: 2.15rem;
  letter-spacing: 0;
}
.od-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.od-meter-head {
  display: flex;
  justify-content: space-between;
  color: var(--od-ink);
  font-weight: 850;
  margin: 4px 0 8px;
}
.od-meter {
  height: 9px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
  margin-bottom: 14px;
}
.od-meter span {
  display: block;
  height: 100%;
  width: 68%;
  background: linear-gradient(90deg, var(--od-green), #22c55e);
}
.od-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(16,24,40,.08);
  border-radius: 8px;
  background: #fff;
  padding: 13px 14px;
  margin-bottom: 10px;
}
.od-row div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.od-row i {
  color: var(--od-blue);
  font-size: 1.1rem;
}
.od-section {
  padding-block: clamp(64px, 8vw, 110px);
}
.od-section__head {
  max-width: 760px;
  margin-bottom: 28px;
}
.od-section h2,
.od-split h2,
.od-cta h2 {
  margin: 14px 0 0;
  color: var(--od-ink);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.04;
  font-size: clamp(2.2rem, 4.6vw, 4.6rem);
}
.od-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.od-feature,
.od-faq-card,
.od-step {
  border: 1px solid rgba(16,24,40,.09);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 18px 44px rgba(16,24,40,.07);
}
.od-feature i {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--od-green), #22c55e);
  border-radius: 12px;
  font-size: 1.22rem;
}
.od-feature h3,
.od-faq-card h3 {
  margin: 16px 0 8px;
  color: var(--od-ink);
  font-size: 1.08rem;
  font-weight: 900;
}
.od-feature p,
.od-faq-card p,
.od-split p,
.od-cta p {
  color: var(--od-muted);
  line-height: 1.65;
  margin: 0;
}
.od-pricing {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.od-price-card {
  position: relative;
  border: 1px solid rgba(16,24,40,.09);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 18px 44px rgba(16,24,40,.07);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
}
.od-price-card.is-featured {
  border-color: rgba(67,87,232,.32);
  box-shadow: 0 24px 64px rgba(67,87,232,.16);
}
.od-price-badge {
  align-self: flex-start;
  border-radius: 999px;
  background: #e7f8ef;
  color: #167f45;
  font-size: .78rem;
  font-weight: 850;
  padding: 6px 10px;
}
.od-price-card h3 {
  margin: 0;
  color: var(--od-ink);
  font-weight: 950;
  font-size: 1.16rem;
}
.od-price-card strong {
  color: var(--od-ink);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
}
.od-price-card p,
.od-price-card li {
  color: var(--od-muted);
  line-height: 1.55;
}
.od-price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.od-price-card li::before {
  content: "✓";
  color: var(--od-green);
  font-weight: 950;
  margin-right: 8px;
}
.od-price-card .od-btn {
  margin-top: auto;
}
.od-split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(64px, 8vw, 100px);
}
.od-steps {
  display: grid;
  gap: 14px;
}
.od-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}
.od-step strong {
  color: var(--od-blue);
  font-size: 1.3rem;
}
.od-step span {
  color: var(--od-ink);
  font-weight: 850;
}
.od-faq {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.od-cta {
  margin-block: 40px 90px;
  text-align: center;
  border: 1px solid rgba(67,87,232,.16);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, #eef2ff);
  padding: clamp(34px, 6vw, 72px) 20px;
  box-shadow: 0 28px 70px rgba(67,87,232,.12);
}
.od-cta p {
  max-width: 660px;
  margin: 14px auto 24px;
  font-size: 1.08rem;
}
@media (max-width: 1024px) {
  .od-nav__links { display: none; }
  .od-hero,
  .od-split {
    grid-template-columns: 1fr;
  }
  .od-hero {
    min-height: auto;
  }
  .od-hero h1 {
    max-width: 820px;
  }
  .od-visual {
    min-height: 570px;
  }
  .od-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .od-pricing {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .od-container {
    width: min(100% - 24px, 1160px);
  }
  .od-nav__inner {
    min-height: auto;
    padding-block: 12px;
    align-items: flex-start;
  }
  .od-brand span {
    display: none;
  }
  .od-nav__actions {
    gap: 8px;
  }
  .od-nav__actions .od-btn {
    min-height: 40px;
    padding-inline: 12px;
    font-size: .84rem;
  }
  .od-hero {
    padding-block: 34px 52px;
  }
  .od-hero h1 {
    font-size: clamp(2.7rem, 15vw, 4.5rem);
  }
  .od-hero__actions .od-btn {
    width: 100%;
  }
  .od-proof {
    grid-template-columns: 1fr;
  }
  .od-visual {
    min-height: 500px;
    justify-content: flex-start;
  }
  .od-showcase {
    min-height: 500px;
  }
  .od-road {
    inset: 36px -42px 28px 58px;
  }
  .od-phone {
    left: 0;
    width: min(330px, 92vw);
  }
  .od-phone__screen {
    min-height: 486px;
  }
  .od-grid,
  .od-pricing,
  .od-faq {
    grid-template-columns: 1fr;
  }
  .od-section,
  .od-split {
    padding-block: 52px;
  }
}
