:root {
  --bg: #f6f1eb;
  --bg-strong: #efe5d9;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --surface-ink: #1d1814;
  --text: #201913;
  --muted: #665d56;
  --muted-soft: #8e857c;
  --line: rgba(32, 25, 19, 0.1);
  --accent: #f06e29;
  --accent-deep: #bd4f17;
  --shadow: 0 24px 70px rgba(26, 19, 12, 0.12);
  --shadow-soft: 0 12px 32px rgba(26, 19, 12, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --nav-height: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Roboto", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(240, 110, 41, 0.12), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(71, 55, 37, 0.08), transparent 24%),
    linear-gradient(180deg, #fbf7f2 0%, var(--bg) 44%, #fbf9fc 100%);
  line-height: 1.6;
}

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

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

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

::selection {
  background: rgba(240, 110, 41, 0.2);
  color: var(--text);
}

.site-shell {
  position: relative;
  overflow: clip;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(251, 247, 242, 0.76);
  border-bottom: 1px solid rgba(32, 25, 19, 0.06);
}

.site-header__inner {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.brand__name {
  font-family: "Nunito", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand__tagline {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.3;
}

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  width: min(420px, 100vw);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 104px 28px 32px;
  background: rgba(251, 247, 242, 0.96);
  border-left: 1px solid rgba(32, 25, 19, 0.08);
  box-shadow: -24px 0 60px rgba(26, 19, 12, 0.18);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.site-nav__links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.site-nav__links a {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(32, 25, 19, 0.06);
  color: var(--text);
  font-size: 1.02rem;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav__links a:hover,
.site-nav__links a:focus-visible {
  background: #ffffff;
  transform: translateX(-2px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.lang-switch button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 8px 13px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  transition: background 180ms ease, color 180ms ease;
}

.lang-switch button.is-active {
  background: var(--surface-ink);
  color: #fff7f0;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 12px;
  color: var(--text);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0;
  background: currentColor;
  border-radius: 999px;
  flex: 0 0 auto;
}

.site-nav::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(17, 12, 8, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.site-nav.is-open {
  transform: translateX(0);
}

.site-nav.is-open::before {
  opacity: 1;
}

.site-nav__footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-nav__footer .button {
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 500;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  color: #fffaf5;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: 0 16px 30px rgba(240, 110, 41, 0.24);
}

.button--secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
}

.button--ghost {
  color: var(--text);
  background: transparent;
  border-color: var(--line);
}

.hero {
  padding: 76px 0 38px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(32, 25, 19, 0.08);
  color: var(--muted);
  font-size: 0.92rem;
  box-shadow: var(--shadow-soft);
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 14px;
  font-family: "Nunito", sans-serif;
  font-size: clamp(2.75rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero p,
.page-hero p {
  margin: 0;
  max-width: 640px;
  font-size: 1.07rem;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.badge-link img {
  width: 180px;
  height: auto;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero__meta-item,
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(32, 25, 19, 0.08);
  color: var(--muted);
}

.hero-card {
  position: relative;
  padding: 26px;
  border-radius: var(--radius-xl);
  color: #fff6ef;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #1f1914 0%, #2f241d 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -30px -60px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 110, 41, 0.35), transparent 70%);
}

.hero-card__window {
  position: relative;
  border-radius: 24px;
  padding: 18px;
  background: rgba(255, 247, 241, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-card__topbar {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.hero-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.hero-card__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.hero-card__panel,
.surface-panel {
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card__label,
.surface-panel__label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.77rem;
  color: rgba(255, 246, 239, 0.72);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card__list,
.template-list {
  display: grid;
  gap: 10px;
}

.template-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.template-item strong {
  display: block;
  font-size: 0.96rem;
}

.template-item span {
  color: rgba(255, 246, 239, 0.65);
  font-size: 0.88rem;
}

.template-item__tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 246, 239, 0.82);
  font-size: 0.8rem;
}

.hero-card__result {
  display: grid;
  gap: 10px;
}

.result-block {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.result-block strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: rgba(255, 246, 239, 0.74);
}

.section {
  padding: 42px 0;
}

.section--tight {
  padding-top: 20px;
}

.section--cta {
  padding-bottom: 80px;
}

.section-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 28px;
}

.section-intro h2 {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.section-intro p {
  margin: 0;
  max-width: 580px;
  color: var(--muted);
  font-size: 1rem;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.info-card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid rgba(32, 25, 19, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.info-card h3,
.faq-item h3,
.step-card h3,
.legal-card h2,
.legal-card h3 {
  margin: 0 0 10px;
  font-family: "Nunito", sans-serif;
  font-size: 1.22rem;
}

.info-card p,
.faq-item p,
.step-card p,
.legal-card p,
.legal-card li {
  margin: 0;
  color: var(--muted);
}

.icon-pill {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 14px;
  font-size: 1.2rem;
  color: var(--accent-deep);
  background: rgba(240, 110, 41, 0.12);
}

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

.step-card {
  position: relative;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.68));
  border: 1px solid rgba(32, 25, 19, 0.08);
  box-shadow: var(--shadow-soft);
}

.step-card__number {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 999px;
  color: #fff7f0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  font-weight: 700;
}

.provider-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.provider-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(32, 25, 19, 0.08);
  box-shadow: var(--shadow-soft);
}

.spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 20px;
  align-items: stretch;
}

.spotlight__panel {
  padding: 26px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #211912 0%, #30231b 100%);
  color: #fff7f0;
  box-shadow: var(--shadow);
}

.spotlight__panel p {
  color: rgba(255, 247, 240, 0.74);
}

.spotlight__panel ul {
  padding-left: 18px;
  color: rgba(255, 247, 240, 0.78);
}

.spotlight__panel li + li {
  margin-top: 8px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.shot-card,
.placeholder-card {
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(32, 25, 19, 0.08);
  box-shadow: var(--shadow-soft);
}

.shot-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  background: #eee3d6;
}

.shot-card__body,
.placeholder-card__body {
  padding: 18px;
}

.shot-card__eyebrow,
.placeholder-card__eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--muted-soft);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.placeholder-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(244, 238, 232, 0.82)),
    repeating-linear-gradient(-45deg, rgba(240, 110, 41, 0.06), rgba(240, 110, 41, 0.06) 10px, transparent 10px, transparent 20px);
}

.placeholder-card__body {
  text-align: center;
  max-width: 280px;
}

.page-hero {
  padding: 56px 0 16px;
}

.page-hero__body {
  max-width: 760px;
}

.walkthrough-list,
.faq-list,
.legal-stack {
  display: grid;
  gap: 18px;
}

.walkthrough-step,
.faq-item,
.legal-card,
.contact-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(32, 25, 19, 0.08);
  box-shadow: var(--shadow-soft);
}

.walkthrough-step {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.walkthrough-step__number {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  color: #fff7f0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: 0 16px 24px rgba(240, 110, 41, 0.24);
}

.walkthrough-step h2,
.faq-item h2,
.contact-card h2 {
  margin: 0 0 10px;
  font-family: "Nunito", sans-serif;
  font-size: 1.35rem;
}

.walkthrough-step ul,
.legal-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.walkthrough-step li + li,
.legal-card li + li {
  margin-top: 8px;
}

.faq-item + .faq-item,
.legal-card + .legal-card {
  margin-top: 0;
}

.contact-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.contact-card__mail {
  color: var(--accent-deep);
  font-weight: 700;
}

.callout {
  padding: 20px 22px;
  border-left: 4px solid var(--accent);
  border-radius: 20px;
  background: rgba(240, 110, 41, 0.08);
  color: var(--text);
}

.callout p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding: 28px 0 44px;
  border-top: 1px solid rgba(32, 25, 19, 0.08);
}

.site-footer__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-end;
}

.site-footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.site-footer__brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.site-footer__text p {
  margin: 0;
  color: var(--muted);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
}

.site-footer__links a {
  color: var(--muted);
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: var(--text);
}

[data-lang] {
  display: none;
}

[data-lang].lang-visible {
  display: block;
}

span[data-lang].lang-visible,
a[data-lang].lang-visible,
strong[data-lang].lang-visible,
small[data-lang].lang-visible {
  display: inline;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1080px) {
  .hero__grid,
  .spotlight {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  :root {
    --nav-height: 78px;
  }

  .header-actions {
    gap: 10px;
  }

  .hero,
  .page-hero {
    padding-top: 42px;
  }

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

  .workflow,
  .grid--2,
  .grid--3,
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .hero-card__split,
  .walkthrough-step {
    grid-template-columns: 1fr;
  }

  .walkthrough-step__number {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .brand__tagline {
    display: none;
  }

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

  .button,
  .badge-link {
    width: 100%;
  }

  .badge-link img {
    width: 100%;
    max-width: 190px;
  }

  .site-footer__grid,
  .contact-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100vw;
    padding: 92px 20px 24px;
  }
}
