:root {
  --orange: #f97316;
  --orange-deep: #ea580c;
  --ink: #1a1410;
  --ink-soft: #4a3f36;
  --sand: #fff4eb;
  --sand-2: #ffe8d4;
  --cream: #fffaf6;
  --line: rgba(26, 20, 16, 0.1);
  --white: #ffffff;
  --font-display: "Bricolage Grotesque", Georgia, serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --radius: 1.25rem;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(249, 115, 22, 0.28), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(251, 146, 60, 0.18), transparent 55%),
    linear-gradient(180deg, var(--sand) 0%, var(--cream) 28%, #fff 55%, var(--cream) 100%);
  min-height: 100vh;
  line-height: 1.55;
  overflow-x: hidden;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  backdrop-filter: blur(12px);
  background: rgba(255, 250, 246, 0.78);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.brand img {
  border-radius: 0.55rem;
}

.nav {
  display: none;
  gap: 1.35rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.nav a:hover {
  color: var(--orange-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.35rem;
  border-radius: 0.85rem;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid var(--orange);
  transition: transform 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.28);
}

.btn:hover {
  background: var(--orange-deep);
  border-color: var(--orange-deep);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  border-color: var(--line);
}

.btn-ghost:hover {
  background: rgba(249, 115, 22, 0.08);
  border-color: rgba(249, 115, 22, 0.35);
  color: var(--ink);
}

.btn-small {
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  box-shadow: none;
}

.hero {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  display: grid;
  gap: 2rem;
  align-items: center;
  min-height: calc(100svh - 4.5rem);
}

.hero-glow {
  position: absolute;
  inset: 8% 5% auto auto;
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  background: radial-gradient(circle, rgba(249, 115, 22, 0.35), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.brand-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 8vw, 4.6rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: var(--orange);
  margin-bottom: 0.85rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  max-width: 14ch;
  margin-bottom: 1rem;
}

.lede {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 36ch;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.phone-stage {
  position: relative;
  width: min(100%, 440px);
  margin: 0 auto;
  aspect-ratio: 1 / 1.08;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: 50%;
  animation: spin 28s linear infinite;
}

.o1 {
  width: 94%;
  height: 94%;
}

.o2 {
  width: 74%;
  height: 74%;
  animation-duration: 40s;
  animation-direction: reverse;
  border-style: dashed;
}

.hero-phone {
  width: min(300px, 78%);
  position: relative;
  z-index: 2;
  border-radius: 1.5rem;
  animation: floatY 5.5s ease-in-out infinite;
  filter: drop-shadow(0 28px 50px rgba(26, 20, 16, 0.28));
}

.float-card {
  position: absolute;
  z-index: 3;
  width: 76px;
  height: 76px;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.85);
  display: grid;
  place-items: center;
  padding: 0.5rem;
  box-shadow: 0 16px 32px rgba(26, 20, 16, 0.12);
  animation: floatY 4.8s ease-in-out infinite;
  overflow: hidden;
}

.float-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.c1 { top: 6%; left: 0; animation-delay: -0.6s; }
.c2 { top: 14%; right: -2%; animation-delay: -1.8s; }
.c3 { bottom: 16%; left: 2%; animation-delay: -2.8s; }
.c4 { bottom: 8%; right: 4%; width: 68px; height: 68px; animation-delay: -1.2s; }

.stats {
  max-width: var(--max);
  margin: 0 auto 2rem;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.stat {
  padding: 1.1rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  color: var(--orange);
  line-height: 1.1;
}

.stat span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.strip {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

.strip p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.8vw, 1.65rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink-soft);
  max-width: 30ch;
  border-left: 3px solid var(--orange);
  padding-left: 1rem;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}

.section-head {
  margin-bottom: 2.25rem;
  max-width: 36ch;
}

.section-head h2,
.why-panel h2,
.finale h2,
.payments-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.65rem;
}

.section-head p,
.why-panel > p,
.finale p,
.payments-panel p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 0.55rem;
}

.steps {
  list-style: none;
  display: grid;
  gap: 1.5rem;
}

.step-media {
  border-radius: 1.15rem;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin-bottom: 1rem;
  background: var(--sand-2);
}

.step-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.steps h3,
.role-grid h3,
.feature-copy h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.steps p,
.role-grid p,
.feature-copy p {
  color: var(--ink-soft);
  max-width: 40ch;
}

.features {
  display: grid;
  gap: 3.5rem;
}

.features .section-head {
  margin-bottom: 0.5rem;
}

.feature-row {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.feature-media {
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--sand-2);
  aspect-ratio: 4 / 3;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-media.phone-frame {
  aspect-ratio: 3 / 4;
  max-width: 340px;
  margin-inline: auto;
  background: transparent;
}

.feature-media.phone-frame img {
  object-fit: contain;
  filter: drop-shadow(0 22px 40px rgba(26, 20, 16, 0.2));
}

.check-list {
  list-style: none;
  margin-top: 1.1rem;
  display: grid;
  gap: 0.45rem;
}

.check-list li {
  position: relative;
  padding-left: 1.15rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--orange);
}

.catalog-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(140px, 1fr);
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
}

.catalog-rail figure {
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  padding: 1rem 0.85rem 0.9rem;
  text-align: center;
}

.catalog-rail img {
  width: 100%;
  height: 110px;
  object-fit: contain;
  margin-bottom: 0.65rem;
}

.catalog-rail figcaption {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.role-grid {
  display: grid;
  gap: 1.5rem;
}

.role-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 1.1rem;
  margin-bottom: 1rem;
  background: var(--sand-2);
}

.role-grid ul {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  gap: 0.4rem;
}

.role-grid li {
  position: relative;
  padding-left: 1rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.role-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--orange);
}

.cat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.cat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 600;
}

.cat img {
  width: 28px;
  height: 28px;
}

.payments-panel {
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.14), rgba(255, 247, 237, 0.95));
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-radius: 1.75rem;
  padding: 2rem 1.5rem;
  display: grid;
  gap: 1.75rem;
}

.pay-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.pay-grid li {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 0.95rem 1rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  text-align: center;
}

.gallery-grid {
  display: grid;
  gap: 0.85rem;
}

.gallery-grid figure {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--sand-2);
  aspect-ratio: 4 / 3;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.gallery-grid figcaption {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  background: rgba(26, 20, 16, 0.72);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 0.5rem;
}

.why-panel {
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(255, 237, 213, 0.9) 40%, rgba(255, 255, 255, 0.85));
  border: 1px solid rgba(249, 115, 22, 0.18);
  border-radius: 1.75rem;
  padding: 2rem 1.5rem;
}

.why-panel > p {
  max-width: 48ch;
  margin-bottom: 1.75rem;
}

.why-points {
  display: grid;
  gap: 1.15rem;
}

.why-points strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.why-points span {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 720px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 1rem 1.15rem;
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 650;
  letter-spacing: -0.02em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details[open] summary {
  color: var(--orange-deep);
  margin-bottom: 0.55rem;
}

.faq-list p {
  color: var(--ink-soft);
}

.finale {
  text-align: center;
  padding-bottom: 4rem;
}

.finale-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.finale-visual img {
  width: min(160px, 38vw);
  filter: drop-shadow(0 18px 30px rgba(26, 20, 16, 0.2));
}

.finale-visual img:first-child {
  transform: rotate(-6deg);
}

.finale-visual img:last-child {
  transform: rotate(6deg);
  width: min(140px, 34vw);
}

.finale-inner {
  max-width: 34rem;
  margin: 0 auto;
}

.finale .brand-mark {
  font-size: clamp(2.4rem, 7vw, 3.8rem);
}

.finale .hero-actions {
  justify-content: center;
  margin-top: 1.5rem;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.5rem 2.5rem;
  display: grid;
  gap: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.footer-brand p {
  margin-top: 0.75rem;
  max-width: 36ch;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--orange-deep);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (min-width: 768px) {
  .nav { display: flex; }

  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1rem;
    padding-top: 1.25rem;
  }

  .stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .feature-row {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .feature-row.reverse .feature-copy { order: 2; }
  .feature-row.reverse .feature-media { order: 1; }

  .role-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .cat-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .payments-panel {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding: 2.5rem;
  }

  .pay-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .g-wide {
    grid-column: span 2;
    aspect-ratio: 21 / 9 !important;
  }

  .why-panel {
    padding: 2.75rem 2.5rem;
  }

  .why-points {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .site-footer {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .cat-row {
    grid-template-columns: repeat(6, 1fr);
  }

  .catalog-rail {
    grid-auto-flow: unset;
    grid-template-columns: repeat(6, 1fr);
    overflow: visible;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-phone,
  .float-card,
  .orbit,
  [data-reveal] {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}

/* —— App screens rail —— */
.phone-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 220px);
  gap: 1rem;
  overflow-x: auto;
  padding: 0.25rem 0 1rem;
  scroll-snap-type: x mandatory;
}

.phone-rail figure {
  scroll-snap-align: start;
  text-align: center;
}

.phone-rail img {
  width: 100%;
  border-radius: 1.25rem;
  filter: drop-shadow(0 18px 32px rgba(26, 20, 16, 0.18));
  margin-bottom: 0.75rem;
  background: transparent;
}

.phone-rail figcaption {
  font-weight: 650;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* —— Lifestyle —— */
.lifestyle-grid {
  display: grid;
  gap: 0.85rem;
}

.lifestyle-grid figure {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--sand-2);
}

.lifestyle-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lifestyle-grid figcaption {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  background: rgba(26, 20, 16, 0.72);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 0.5rem;
}

.finale-visual img:nth-child(2) {
  width: min(180px, 42vw);
  transform: none;
  z-index: 1;
}

.finale-visual img:nth-child(3) {
  transform: rotate(7deg);
  width: min(140px, 32vw);
}

/* —— Privacy / legal page —— */
.legal-page {
  background:
    radial-gradient(900px 420px at 100% 0%, rgba(249, 115, 22, 0.18), transparent 55%),
    linear-gradient(180deg, var(--sand) 0%, #fff 35%, var(--cream) 100%);
}

.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.legal-meta {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.legal-intro {
  max-width: 52ch;
  margin-bottom: 2rem;
}

.legal-toc {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 1.25rem 1.35rem;
  margin-bottom: 2.5rem;
}

.legal-toc h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.legal-toc ol {
  padding-left: 1.2rem;
  display: grid;
  gap: 0.35rem;
  color: var(--ink-soft);
}

.legal-toc a:hover {
  color: var(--orange-deep);
}

.legal-body section {
  margin-bottom: 2.25rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.legal-body h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}

.legal-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 1.1rem 0 0.5rem;
  letter-spacing: -0.02em;
}

.legal-body p,
.legal-body li {
  color: var(--ink-soft);
  margin-bottom: 0.65rem;
}

.legal-body ul,
.legal-body ol {
  padding-left: 1.2rem;
  margin-bottom: 0.75rem;
}

.legal-body a {
  color: var(--orange-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.8);
}

.legal-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.legal-body th,
.legal-body td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.legal-body th {
  font-family: var(--font-display);
  color: var(--ink);
  background: rgba(249, 115, 22, 0.08);
}

.legal-body tr:last-child td {
  border-bottom: none;
}

.legal-note {
  margin-top: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: 1rem;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.2);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.nav a[aria-current="page"] {
  color: var(--orange-deep);
  font-weight: 700;
}

@media (min-width: 768px) {
  .phone-rail {
    grid-auto-flow: unset;
    grid-template-columns: repeat(5, 1fr);
    overflow: visible;
  }

  .lifestyle-grid {
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .life-wide {
    grid-row: span 2;
    aspect-ratio: auto !important;
    height: 100%;
    min-height: 420px;
  }
}
