:root {
  color-scheme: light;
  --ink: #17211f;
  --muted: #64706c;
  --line: #d8e0dd;
  --surface: #ffffff;
  --soft: #f5f7f8;
  --soft-green: #e9f1ee;
  --primary: #176b5b;
  --primary-strong: #0e463d;
  --accent: #b94835;
  --accent-soft: #f6e8e3;
  --success: #2f855a;
  --shadow: 0 18px 42px rgba(23, 33, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

img {
  max-width: 100%;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  left: 0;
  padding: 18px clamp(18px, 4vw, 54px);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
}

.site-nav.solid {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
}

.brand,
.site-nav nav,
.hero-actions,
.store-actions,
.account-actions {
  align-items: center;
  display: flex;
}

.brand {
  color: var(--primary-strong);
  font-weight: 900;
  gap: 10px;
}

.brand img {
  border-radius: 8px;
}

.site-nav nav {
  color: white;
  gap: 18px;
  font-size: 15px;
  font-weight: 850;
}

.site-nav nav a {
  border-radius: 8px;
  padding: 8px 2px;
}

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

.site-nav nav:dir(rtl) {
  gap: 18px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}

.nav-toggle {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--primary-strong);
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 46px;
  justify-content: center;
  min-height: 46px;
  padding: 0;
  width: 46px;
}

.nav-toggle:hover {
  background: #fff;
}

.nav-toggle span {
  background: currentColor;
  border-radius: 999px;
  display: block;
  height: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  width: 22px;
}

.site-nav.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-nav.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-nav.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


.language-select {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--primary);
  font: inherit;
  font-weight: 800;
  min-height: 36px;
  padding: 0 8px;
}

.hero {
  min-height: 86vh;
  overflow: hidden;
  position: relative;
}

.hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 41%, rgba(255, 255, 255, 0.24) 78%),
    linear-gradient(0deg, rgba(245, 247, 248, 1) 0%, rgba(245, 247, 248, 0) 18%);
  inset: 0;
  position: absolute;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
  min-height: 86vh;
  padding: 116px clamp(22px, 5vw, 72px) 68px;
  position: relative;
  z-index: 2;
}

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

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

.eyebrow_m {
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.eyebrow_m:dir(rtl) {
  color: white;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(48px, 8vw, 86px);
  line-height: 0.96;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  margin-bottom: 16px;
}

h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.hero-copy {
  color: #35413b;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
  max-width: 680px;
}

.hero-copy:dir(rtl) {
  color: white;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
  max-width: 680px;
}

.hero-title:dir(rtl) {
  color: white;
}

.hero-actions,
.store-actions,
.account-actions {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.button,
button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
}

.button.primary,
button {
  background: var(--primary);
  color: #fff;
}

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

.button.secondary {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--line);
  color: var(--primary-strong);
}

button.secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--primary-strong);
}

.hero-proof {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 28px 0 0;
  max-width: 680px;
}

.hero-proof div {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.hero-proof dt {
  color: var(--primary-strong);
  font-size: 22px;
  font-weight: 950;
}

.hero-proof dd {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  margin: 4px 0 0;
}

.section,
.credits-section,
.pricing-teaser {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  margin: 0 auto;
  max-width: 1180px;
  padding: 76px clamp(20px, 4vw, 38px);
}

.section p,
.credits-section p,
.pricing-teaser p,
.price-card p,
.faq-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.problem-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.problem-grid article,
.faq-card,
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 20px;
}

.problem-grid span,
.flow-card span {
  color: var(--accent);
  font-weight: 950;
}

.flow-band {
  background: var(--soft-green);
  border-block: 1px solid var(--line);
  padding: 72px clamp(20px, 4vw, 38px);
}

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

.flow-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.flow-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 160px;
  padding: 18px;
}

.feature-story {
  display: grid;
}

.feature-section {
  display: grid;
  gap: clamp(24px, 5vw, 62px);
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  margin: 0 auto;
  max-width: 1240px;
  padding: 78px clamp(20px, 4vw, 38px);
}

.feature-section:nth-child(even) {
  background: #fff;
  max-width: none;
  padding-inline: max(clamp(20px, 4vw, 38px), calc((100vw - 1240px) / 2 + 38px));
}

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

.feature-section.reverse .feature-media {
  order: 1;
}

.feature-copy {
  align-self: center;
}

.feature-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.benefit-list,
.feature-list,
.role-list {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
}

.benefit-list li,
.feature-list li,
.role-list li {
  color: #34413c;
  list-style: none;
}

.benefit-list li::before,
.feature-list li::before {
  color: var(--success);
  content: "✓ ";
  font-weight: 900;
}

.feature-media {
  align-self: center;
}

.image-frame {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.browser-bar {
  align-items: center;
  background: #edf3f0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 6px;
  height: 34px;
  padding: 0 12px;
}

.browser-bar span {
  background: #cad7d2;
  border-radius: 999px;
  height: 9px;
  width: 9px;
}

.screenshot-wrap {
  aspect-ratio: 16 / 10;
  background: #f3f6f5;
  display: grid;
  place-items: center;
}

.screenshot-wrap.mobile-shot {
  aspect-ratio: 10 / 13;
  margin: 0 auto;
  max-width: 430px;
}

.screenshot-wrap img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.screenshot-caption {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.4;
  margin: 0;
  padding: 12px 14px;
}

.step-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.step-tabs button {
  background: #fff;
  border-color: var(--line);
  color: var(--primary-strong);
  min-height: 38px;
  padding-inline: 12px;
}

.step-tabs button[aria-selected="true"] {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.pricing-teaser {
  align-items: center;
  background: var(--primary-strong);
  color: #fff;
  max-width: none;
  padding-inline: max(clamp(20px, 4vw, 38px), calc((100vw - 1180px) / 2 + 38px));
}

.pricing-teaser .eyebrow,
.pricing-teaser p {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-teaser .button {
  justify-self: end;
}

.faq-section {
  padding: 76px clamp(20px, 4vw, 38px);
}

.faq-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.final-cta {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 76px clamp(20px, 4vw, 38px);
  text-align: center;
}

.final-cta h2 {
  margin-inline: auto;
  max-width: 820px;
}

.final-cta .hero-actions {
  justify-content: center;
}

.pricing-hero {
  margin: 0 auto;
  max-width: 860px;
  padding: 80px clamp(20px, 4vw, 38px) 42px;
  text-align: center;
}

.pricing-hero h1 {
  font-size: clamp(42px, 7vw, 72px);
}

.pricing-hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.checkout-message {
  color: var(--primary-strong);
  font-weight: 900;
  margin-top: 16px;
  min-height: 24px;
}

.pricing-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 clamp(20px, 4vw, 38px) 72px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-card.highlighted {
  border-color: var(--primary);
}

.price {
  color: var(--primary);
  font-size: 34px;
  font-weight: 900;
  margin: 0;
}

.price span {
  color: var(--muted);
  font-size: 15px;
}

.role-list li {
  display: flex;
  justify-content: space-between;
}

.role-list strong {
  color: var(--ink);
}

.credit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skeleton span {
  background: #e4ebe7;
  border-radius: 8px;
  display: block;
  height: 24px;
}

footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 24px clamp(20px, 4vw, 54px);
}

footer span {
  font-weight: 900;
}

:focus-visible {
  outline: 3px solid rgba(185, 72, 53, 0.45);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: no-preference) {
  .feature-section,
  .flow-card,
  .problem-grid article,
  .faq-card {
    animation: rise 0.55s ease both;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .feature-section,
  .feature-section:nth-child(even) {
    grid-template-columns: 1fr;
    max-width: 900px;
    padding-inline: clamp(20px, 4vw, 38px);
  }

  .feature-section.reverse .feature-copy,
  .feature-section.reverse .feature-media {
    order: initial;
  }
}

@media (max-width: 820px) {
  .site-nav {
    align-items: center;
    background: rgba(255, 255, 255, 0.94);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    position: absolute;
  }

  .site-nav.solid {
    position: sticky;
  }

  .site-nav nav {
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    color: var(--primary-strong);
    display: none;
    flex-direction: column;
    font-size: 16px;
    gap: 4px;
    grid-column: 1 / -1;
    margin-top: 12px;
    padding: 12px;
    width: 100%;
  }

  .site-nav.nav-open nav {
    display: flex;
  }

  .site-nav nav:dir(rtl) {
    color: var(--primary-strong);
    font-size: 16px;
  }

  .site-nav nav a {
    align-items: center;
    display: flex;
    min-height: 44px;
    padding: 10px 12px;
  }

  .site-nav nav a:hover {
    background: var(--soft-green);
    color: var(--primary-strong);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .language-select {
    min-height: 44px;
    width: 100%;
  }

  .hero-content {
    padding-top: 138px;
  }

  .hero-proof,
  .problem-grid,
  .faq-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .credits-section,
  .pricing-teaser {
    grid-template-columns: 1fr;
    padding-block: 52px;
  }

  .pricing-teaser .button {
    justify-self: stretch;
  }

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

  .nav-toggle {
    width: 46px;
  }
}

@media (max-width: 620px) {
  .flow-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 46px;
  }
}
