:root {
  --ink: #171512;
  --muted: #6f6a63;
  --surface: #fffdf9;
  --surface-soft: #f5eee5;
  --line: rgba(23, 21, 18, 0.11);
  --orange: #f36b21;
  --orange-deep: #d95210;
  --green: #159a68;
  --shadow: 0 24px 70px rgba(67, 44, 27, 0.12);
  --radius-lg: 34px;
  --radius-md: 24px;
  --content: 1120px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 83% 8%, rgba(243, 107, 33, 0.12), transparent 26rem),
    #faf7f2;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(23, 21, 18, 0.07);
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(calc(100% - 40px), var(--content));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 20px;
  font-weight: 780;
  letter-spacing: -0.03em;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  color: #4f4a44;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: #fff;
}

.nav-links .language-link {
  margin-left: 6px;
  border: 1px solid var(--line);
}

.language-item {
  position: relative;
  margin-left: 6px;
}

.language-menu summary {
  min-width: 126px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  cursor: pointer;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  list-style: none;
  transition: background-color 160ms ease, transform 160ms ease;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu summary:hover,
.language-menu summary:focus-visible,
.language-menu[open] summary {
  background: #fff;
  transform: translateY(-1px);
}

.language-trigger-flag {
  font-size: 20px;
}

.language-current {
  white-space: nowrap;
}

.language-chevron {
  width: 7px;
  height: 7px;
  margin: -3px 1px 0 3px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  opacity: 0.58;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.language-menu[open] .language-chevron {
  margin-top: 3px;
  transform: rotate(225deg);
}

.language-options {
  position: absolute;
  z-index: 30;
  top: calc(100% + 12px);
  right: 0;
  width: 238px;
  max-height: min(430px, calc(100vh - 100px));
  overflow-y: auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.98);
  box-shadow: 0 18px 54px rgba(67, 44, 27, 0.18);
  backdrop-filter: blur(18px);
  overscroll-behavior: contain;
}

.language-options a {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 11px;
  border-radius: 11px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.language-options a:hover,
.language-options a:focus-visible,
.language-options a[aria-current="true"] {
  background: var(--surface-soft);
}

.language-options a[aria-current="true"]::after {
  margin-left: auto;
  color: var(--green);
  content: "✓";
}

.language-flag {
  width: 25px;
  flex: 0 0 25px;
  font-size: 19px;
  line-height: 1;
  text-align: center;
}

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

.hero {
  min-height: calc(100vh - 76px);
  padding: 88px 0 92px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--orange-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(243, 107, 33, 0.12);
  content: "";
}

.hero h1 {
  max-width: 750px;
  margin: 0;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 820;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  border-color: var(--orange);
  color: #fff;
  background: var(--orange);
  box-shadow: 0 14px 34px rgba(243, 107, 33, 0.25);
}

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

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

.trust-row {
  margin: 34px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  color: #514c46;
  font-size: 14px;
  font-weight: 650;
  list-style: none;
}

.trust-row li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-row li::before {
  color: var(--green);
  font-size: 18px;
  content: "✓";
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-orbit,
.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  border: 1px solid rgba(243, 107, 33, 0.18);
  border-radius: 50%;
  content: "";
}

.hero-orbit {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(243, 107, 33, 0.16), rgba(243, 107, 33, 0.02) 58%, transparent 70%);
}

.hero-orbit::before {
  inset: 48px;
}

.hero-orbit::after {
  inset: 98px;
}

.app-card {
  position: relative;
  z-index: 2;
  width: min(330px, 78vw);
  padding: 34px 28px 28px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 42px;
  background: rgba(255, 253, 249, 0.86);
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(16px);
}

.app-card .logo-wrap {
  width: 146px;
  height: 146px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border-radius: 34px;
  background: #fffaf3;
  box-shadow: 0 18px 50px rgba(80, 48, 25, 0.14);
}

.app-card .logo-wrap img {
  width: 118px;
  height: 118px;
  object-fit: contain;
}

.app-card strong {
  display: block;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.app-card p {
  margin: 7px 0 24px;
  color: var(--muted);
}

.status-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #08744b;
  background: rgba(21, 154, 104, 0.12);
  font-size: 14px;
  font-weight: 760;
}

.status-pill::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(21, 154, 104, 0.12);
  content: "";
}

.section {
  padding: 100px 0;
}

.section.soft {
  background: var(--surface-soft);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.section-heading p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 284px;
  padding: 30px;
  border: 1px solid rgba(23, 21, 18, 0.08);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 10px 38px rgba(67, 44, 27, 0.05);
}

.feature-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--orange-deep);
  background: rgba(243, 107, 33, 0.12);
  font-size: 22px;
  font-weight: 850;
}

.feature-card h3 {
  margin: 26px 0 10px;
  font-size: 23px;
  letter-spacing: -0.03em;
}

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

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  position: relative;
  padding: 74px 32px 16px 0;
  counter-increment: step;
}

.steps li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--orange-deep);
  background: #fff;
  font-weight: 820;
  content: counter(step, decimal-leading-zero);
}

.steps li:not(:last-child)::after {
  position: absolute;
  top: 24px;
  left: 62px;
  width: calc(100% - 80px);
  height: 1px;
  background: var(--line);
  content: "";
}

.steps h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

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

.contact-panel {
  padding: 54px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.contact-panel p {
  margin: 18px 0 0;
  color: #bdb7ae;
}

.contact-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
}

.contact-card span {
  display: block;
  margin-bottom: 8px;
  color: #aaa39a;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card a {
  color: #fff;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 750;
  text-decoration-color: var(--orange);
  text-underline-offset: 5px;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
}

.operator {
  max-width: 710px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 13px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--orange-deep);
}

.legal-hero {
  padding: 76px 0 48px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(40px, 6vw, 68px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.legal-hero p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.legal-layout {
  padding: 58px 0 100px;
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  align-items: start;
  gap: 58px;
}

.legal-aside {
  position: sticky;
  top: 110px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
}

.legal-aside strong,
.legal-aside span {
  display: block;
}

.legal-aside strong {
  font-size: 14px;
}

.legal-aside span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.legal-aside a {
  display: inline-block;
  margin-top: 14px;
  color: var(--orange-deep);
  font-size: 13px;
  font-weight: 700;
}

.legal-content h2 {
  margin: 48px 0 12px;
  font-size: 25px;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: #49443e;
}

.legal-content a {
  color: var(--orange-deep);
  font-weight: 650;
}

.support-grid {
  margin: 42px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.support-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.support-item h2 {
  margin: 0 0 8px;
  font-size: 19px;
}

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

.notice {
  margin: 30px 0;
  padding: 20px 22px;
  border-left: 4px solid var(--orange);
  border-radius: 8px 16px 16px 8px;
  background: rgba(243, 107, 33, 0.09);
}

.notice p {
  margin: 0;
}

:focus-visible {
  outline: 3px solid rgba(243, 107, 33, 0.45);
  outline-offset: 3px;
}

@media (max-width: 850px) {
  .nav {
    min-height: 68px;
  }

  .nav-links li:not(.always) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 64px 0 74px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .hero-orbit {
    width: min(420px, 95vw);
    height: min(420px, 95vw);
  }

  .feature-grid,
  .steps,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    gap: 28px;
  }

  .steps li {
    padding: 0 0 0 68px;
  }

  .steps li::before {
    top: 0;
  }

  .steps li::after {
    display: none;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .legal-aside {
    position: static;
  }
}

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

  .brand img {
    width: 38px;
    height: 38px;
  }

  .language-options {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: auto;
    width: min(252px, calc(100vw - 28px));
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .actions .button {
    width: 100%;
  }

  .section {
    padding: 74px 0;
  }

  .feature-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .contact-panel {
    padding: 34px 24px;
  }

  .legal-hero {
    padding: 56px 0 36px;
  }

  .legal-layout {
    padding: 36px 0 74px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
