:root {
  --bg: #f7f1df;
  --bg-soft: #fff8ea;
  --paper: rgba(255, 250, 239, 0.82);
  --text: #17140d;
  --muted: #625844;
  --line: rgba(23, 20, 13, 0.12);
  --brand: #f4c400;
  --brand-deep: #d4a300;
  --ink: #111111;
  --success: #0f9d58;
  --shadow: 0 24px 70px rgba(38, 30, 10, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(244, 196, 0, 0.22), transparent 32%),
    radial-gradient(circle at 85% 8%, rgba(255, 224, 130, 0.45), transparent 22%),
    linear-gradient(180deg, #fffdf7 0%, var(--bg) 45%, #f5edda 100%);
}

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

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

.page-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 240, 0.72);
  box-shadow: 0 12px 30px rgba(43, 34, 11, 0.08);
}

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

.lang-switcher {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.08);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  min-width: 42px;
  height: 38px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.lang-btn.active {
  background: #111;
  color: #fff;
}

.brand img {
  width: auto;
  height: 48px;
  max-width: 180px;
  object-fit: contain;
  filter: hue-rotate(250deg) saturate(2.1) brightness(0.95);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: var(--muted);
}

.nav a:hover,
.top-cta:hover,
.button:hover,
.contact-list a:hover {
  opacity: 0.82;
}

.top-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 160ms ease, opacity 160ms ease;
}

.top-cta {
  min-height: 46px;
  padding: 0 20px;
  background: var(--ink);
  color: #fff;
}

.button {
  min-height: 54px;
  padding: 0 26px;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--brand) 0%, #ffdb38 100%);
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(244, 196, 0, 0.34);
}

.button-secondary {
  background: rgba(17, 17, 17, 0.08);
  border: 1px solid rgba(17, 17, 17, 0.1);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 36px;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding: 56px 0 40px;
}

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

.hero h1,
.section-heading h2,
.contact-card h2 {
  margin: 14px 0 16px;
  font-family: "Sora", sans-serif;
  line-height: 1.03;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  max-width: 12ch;
}

.hero-text,
.section-heading p,
.business-copy p,
.contact-card p,
.faq-list p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0 26px;
}

.store-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 0 12px;
}

.store-button {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 190px;
  min-height: 74px;
  padding: 14px 18px;
  border-radius: 22px;
  background: #111;
  color: #fff;
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.18);
}

.store-kicker {
  font-size: 12px;
  opacity: 0.72;
}

.store-button strong {
  margin-top: 4px;
  font-size: 20px;
}

.store-note {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
}

.hero-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-points li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 18px rgba(64, 50, 10, 0.04);
}

.hero-visual {
  position: relative;
}

.phone-stack {
  position: relative;
  min-height: 760px;
}

.phone {
  position: absolute;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 245, 228, 0.92));
  box-shadow: var(--shadow);
}

.phone-main {
  inset: 0 58px 0 0;
  padding: 20px;
}

.phone-side {
  width: 270px;
  right: 0;
  bottom: 44px;
  padding: 18px;
  transform: rotate(6deg);
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 8px rgba(244, 196, 0, 0.12);
}

.screen-card,
.metric-card,
.panel-row,
.strip-item,
.feature-card,
.timeline-step,
.about-grid article,
.faq-list details,
.contact-card,
.business-panel,
.section-dark,
.business-section {
  border: 1px solid rgba(23, 20, 13, 0.08);
  background: var(--paper);
  backdrop-filter: blur(14px);
}

.screen-card {
  padding: 24px;
  border-radius: 28px;
}

.screen-card-highlight {
  background:
    linear-gradient(135deg, rgba(244, 196, 0, 0.98), rgba(255, 225, 112, 0.95));
}

.screen-card h2 {
  margin: 14px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 32px;
  line-height: 1.1;
}

.screen-card p {
  margin: 0;
  max-width: 28ch;
  color: rgba(17, 17, 17, 0.78);
  line-height: 1.65;
}

.pill {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.12);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.screen-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.list-row,
.metric-grid div {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(23, 20, 13, 0.08);
}

.list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.list-row span,
.metric-label,
.metric-grid span,
.panel-row span {
  color: var(--muted);
}

.metric-card {
  padding: 20px;
  border-radius: 26px;
  margin-bottom: 14px;
}

.metric-card strong {
  display: block;
  margin-top: 10px;
  font-size: 48px;
  line-height: 1;
}

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

.metric-grid strong {
  display: block;
  margin-top: 6px;
}

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

.strip-item {
  padding: 20px;
  border-radius: 24px;
}

.strip-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section {
  padding: 84px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.section-heading.narrow {
  max-width: 900px;
}

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

.feature-card,
.about-grid article {
  padding: 24px;
  border-radius: 24px;
}

.feature-card h3,
.timeline-step h3,
.about-grid h3,
.business-copy h2 {
  margin: 16px 0 12px;
  font-family: "Sora", sans-serif;
}

.feature-card p,
.timeline-step p,
.about-grid p,
.business-points span {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.feature-icon,
.timeline-index {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), #ffe68f);
  font-weight: 800;
}

.workflow {
  position: relative;
}

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

.timeline-step {
  padding: 22px;
  border-radius: 24px;
}

.business-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 22px;
  padding: 28px;
  border-radius: var(--radius-xl);
}

.business-copy h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.06;
}

.business-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.business-points div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.65);
}

.business-points strong,
.panel-row strong,
.footer-brand strong {
  display: block;
  margin-bottom: 6px;
}

.business-panel {
  display: grid;
  gap: 14px;
  align-content: center;
  padding: 20px;
  border-radius: 28px;
}

.panel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 18px;
}

.section-dark {
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 215, 64, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(22, 19, 11, 0.98), rgba(36, 29, 12, 0.92));
  color: #fff6dc;
}

.section-dark .section-heading p,
.section-dark .about-grid p {
  color: rgba(255, 246, 220, 0.72);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 22px 24px;
  border-radius: 22px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-size: 20px;
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 14px 0 0;
  font-size: 16px;
}

.contact-card {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  border-radius: 30px;
}

.contact-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.contact-list {
  display: grid;
  gap: 10px;
  min-width: 240px;
}

.contact-list a {
  padding: 15px 18px;
  border-radius: 16px;
  background: #111;
  color: #fff;
  text-align: center;
  font-weight: 700;
}

.footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 36px 0 48px;
  color: var(--muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 54px;
  filter: hue-rotate(250deg) saturate(2.1) brightness(0.95);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.footer-meta p {
  margin: 0;
  text-align: right;
}

.footer-privacy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  color: #1f2937;
  font-weight: 700;
}

.footer-privacy:hover {
  opacity: 0.9;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .nav {
    display: none;
  }

  .hero,
  .business-section,
  .contact-card,
  .footer {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

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

  .footer-meta p {
    text-align: left;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  .hero-visual {
    width: 100%;
  }

  .phone-stack {
    min-height: 650px;
  }

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

  .topbar {
    border-radius: 28px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max));
  }

  .topbar {
    top: 10px;
    gap: 12px;
    padding: 12px 14px;
    align-items: flex-start;
  }

  .brand img {
    width: auto;
    height: 40px;
    max-width: 150px;
  }

  .topbar-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .lang-switcher {
    width: 100%;
    justify-content: center;
  }

  .top-cta {
    width: 100%;
  }

  .hero-points,
  .feature-grid,
  .about-grid,
  .timeline,
  .strip,
  .business-points,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }

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

  .store-buttons {
    flex-direction: column;
  }

  .button,
  .button-primary,
  .button-secondary,
  .store-button {
    width: 100%;
  }

  .phone-stack {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .phone {
    position: static;
    width: 100%;
    transform: none;
  }

  .phone-main,
  .phone-side {
    inset: auto;
  }

  .section,
  .section-dark {
    padding: 62px 0;
  }

  .section-dark,
  .business-section,
  .contact-card {
    padding: 22px;
  }
}
