    :root {
      --bg: #ffffff;
      --surface: #ffffff;
      --text: #0f172a;
      --muted: #6b7280;
      --border: #e5e7eb;
      --accent: #CE6632;
      --accent-2: #732E0C;
      --shadow: 0 1px 2px rgba(0, 0, 0, .06), 0 8px 24px rgba(0, 0, 0, .06);
      --radius: 18px;
      --maxw: 1100px;
    }

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

    html,
    body {
      height: 100%
    }

    body {
      margin: 0;
      font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
      color: var(--text);
      background: var(--bg);
    }

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

    .container {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 10px 20px
    }

    .skip-link {
      position: absolute;
      left: -9999px;
      top: auto;
      width: 1px;
      height: 1px;
      overflow: hidden
    }

    .skip-link:focus {
      left: 16px;
      top: 16px;
      width: auto;
      height: auto;
      background: #fff;
      color: #000;
      padding: 8px 12px;
      border-radius: 8px;
      box-shadow: var(--shadow)
    }

    header {
      position: sticky;
      top: 0;
      z-index: 40;
      background: #fff;
      border-bottom: 1px solid var(--border)
    }

    @media (prefers-color-scheme: dark) {
      header {
        background: linear-gradient(180deg, rgba(17, 22, 29, .7), rgba(17, 22, 29, .5))
      }
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 0
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      letter-spacing: .3px
    }

    .brand-badge {
      width: 36px;
      height: 36px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      box-shadow: var(--shadow);
      display: grid;
      place-items: center
    }

    .brand-badge svg {
      filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .25))
    }

    .nav a {
      padding: 8px 12px;
      border-radius: 10px
    }

    .nav a[aria-current="page"],
    .nav a:hover {
      background: #f5f5f5
    }

    .masthead {
      line-height: 0;
      border-bottom: 1px solid var(--border)
    }

    .masthead img {
      width: 100%;
      height: clamp(220px, 38vw, 480px);
      object-fit: cover;
      display: block
    }

    .hero {
      position: relative;
      padding: 32px 0 48px;
      overflow: hidden;
      background: linear-gradient(135deg, rgba(206, 102, 50, .08), rgba(255, 255, 255, 1))
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: -160px auto auto -120px;
      width: 420px;
      height: 420px;
      background: radial-gradient(circle at center, rgba(206, 102, 50, .32), transparent 65%);
      opacity: .45;
      pointer-events: none
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto -200px -220px auto;
      width: 380px;
      height: 380px;
      background: radial-gradient(circle at center, rgba(115, 46, 12, .28), transparent 70%);
      opacity: .35;
      pointer-events: none
    }

    .hero-wrap {
      position: relative;
      display: grid;
      gap: 32px;
      align-items: center
    }

    .hero-copy {
      display: grid;
      gap: 18px;
      align-content: start;
      justify-items: start
    }

    .hero-media {
      position: relative;
      border-radius: 30px;
      padding: 18px;
      background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(248, 250, 252, .72));
      border: 1px solid rgba(15, 23, 42, .08);
      box-shadow: 0 18px 36px rgba(15, 23, 42, .18);
      display: grid;
      place-items: center
    }

    .hero-media::after {
      content: "";
      position: absolute;
      inset: 14px;
      border-radius: 24px;
      border: 1px dashed rgba(15, 23, 42, .12);
      pointer-events: none
    }

    .hero-media img {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 260px;
      height: auto;
      display: block;
      border-radius: 22px;
      box-shadow: 0 12px 28px rgba(15, 23, 42, .18)
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      font-size: .9rem;
      color: var(--muted);
      background: #f8fafc;
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid var(--border)
    }

    .hero-copy .eyebrow {
      justify-self: start;
      width: fit-content;
      max-width: 100%
    }

    .hero h1 {
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      line-height: 1.1;
      margin: 0
    }

    .hero p {
      margin: 0;
      color: var(--muted);
      max-width: 60ch;
      font-size: clamp(1rem, 2vw, 1.2rem)
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: 10px 16px;
      border-radius: 14px;
      border: 1px solid var(--border);
      font-weight: 600
    }

    .btn.primary {
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: #fff;
      border-color: transparent;
      box-shadow: var(--shadow)
    }

    .btn.secondary {
      background: #fff
    }

    .meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      padding: 0;
      margin: 12px 0 0;
      list-style: none;
      color: var(--muted);
      font-size: .95rem
    }

    .meta li {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      border-radius: 12px;
      background: rgba(248, 250, 252, .92);
      border: 1px solid var(--border);
      font-weight: 600
    }

    .meta svg {
      width: 14px;
      height: 14px;
      color: var(--accent)
    }

    .ad-slot {
      display: flex;
      justify-content: center;
      padding: 24px 0;
      margin: 0 auto;
      max-width: min(100%, 960px)
    }

    .ad-slot .adsbygoogle {
      display: block;
      margin: 0 auto;
      max-width: 100%
    }

    body.mock-ads .adsbygoogle {
      display: flex;
      align-items: center;
      justify-content: center;
      background: repeating-linear-gradient(135deg, rgba(148, 163, 184, 0.2) 0, rgba(148, 163, 184, 0.2) 10px, rgba(226, 232, 240, 0.45) 10px, rgba(226, 232, 240, 0.45) 20px);
      border: 1px dashed #cbd5f5;
      color: var(--muted);
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      position: relative;
    }

    body.mock-ads .adsbygoogle::after {
      content: "Mock ad";
      position: absolute;
    }


    main>section {
      padding: 48px 0;
      border-top: 1px solid var(--border)
    }

    h2 {
      font-size: 1.6rem;
      margin: 0 0 12px
    }

    p {
      margin: 0 0 16px
    }

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

    .features-section {
      display: grid;
      gap: 32px
    }

    .section-lead {
      display: grid;
      gap: 12px;
      max-width: 640px;
      margin: 0 auto;
      text-align: center
    }

    .section-lead .eyebrow {
      justify-self: center
    }

    .features {
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr))
    }

    .feature-card {
      position: relative;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      background: var(--surface);
      box-shadow: var(--shadow);
      display: grid;
      gap: 16px
    }

    .feature-card h3 {
      margin: 0;
      font-size: 1.25rem
    }

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

    .feature-icon {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: #fff;
      box-shadow: 0 12px 22px rgba(206, 102, 50, .3)
    }

    .feature-card ul {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 8px;
      color: var(--muted);
      font-size: .95rem
    }

    .feature-card li {
      display: flex;
      align-items: center;
      gap: 8px
    }

    .feature-card li::before {
      content: "•";
      color: var(--accent);
      font-weight: 700
    }

    .screens {
      background: #f8fafc
    }

    .screen-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 28px;
      margin-top: 32px
    }

    .mockup {
      position: relative;
      border-radius: 32px;
      border: 1px solid rgba(15, 23, 42, .08);
      background: linear-gradient(180deg, #fff, rgba(248, 250, 252, .85));
      box-shadow: 0 18px 36px rgba(15, 23, 42, .12);
      padding: 22px;
      display: grid;
      gap: 16px;
      align-content: start;
      justify-items: center
    }

    .mockup .frame {
      width: 100%;
      max-width: 220px;
      aspect-ratio: 9/19.5;
      border-radius: 26px;
      border: 1px solid rgba(15, 23, 42, .12);
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      box-shadow: 0 12px 24px rgba(15, 23, 42, .12)
    }

    .mockup img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block
    }

    .mockup span {
      font-weight: 600;
      color: var(--muted);
      text-align: center
    }

    .download {
      background: linear-gradient(135deg, rgba(206, 102, 50, .12), rgba(255, 255, 255, .95))
    }

    .download-inner {
      display: grid;
      gap: 20px;
      align-items: center;
      justify-items: flex-start
    }

    @media (min-width:720px) {
      .download-inner {
        grid-template-columns: minmax(0, 1fr) auto
      }
    }

    .download p {
      color: var(--muted);
      max-width: 48ch
    }

    .download-points {
      margin: 0;
      padding-left: 20px;
      display: grid;
      gap: 6px;
      color: var(--muted);
      font-size: .95rem
    }

    .app-store-badge {
      display: inline-flex
    }

    .app-store-badge img {
      height: 60px;
      width: auto
    }

    .faq {
      background: #fff
    }

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

    .faq-item {
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 20px;
      background: #fff;
      box-shadow: var(--shadow)
    }

    .faq-item h3 {
      margin: 0 0 8px;
      font-size: 1.1rem
    }

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

    footer {
      padding: 32px 0 40px;
      color: var(--muted);
      border-top: 1px solid var(--border)
    }

    .made {
      display: flex;
      gap: 8px;
      align-items: center
    }

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

    @media (min-width:960px) {
      .hero-wrap {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 340px)
      }

      .hero-copy {
        gap: 20px
      }
    }

    @media (max-width:640px) {
      .hero {
        padding: 24px 0 32px
      }

      .hero-wrap {
        gap: 24px
      }

      .hero-media {
        justify-self: center;
        max-width: 320px
      }
    }
  


.nav-links{display:flex; gap:6px; align-items:center}
.hero-gradient-text{background:linear-gradient(135deg,var(--accent),var(--accent-2)); -webkit-background-clip:text; background-clip:text; color:transparent}
.search-wrap{margin-top:18px; max-width:680px}
.ad-banner-728x90{display:inline-block; width:728px; height:90px}
.footer-row{display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap}
.copyright-meta{opacity:.8}
.footer-link-spaced{margin-right:12px}
.footer-row-ios{display:flex; flex-wrap:wrap; gap:18px; justify-content:space-between; align-items:center}
.secondary-nav-links{display:flex; gap:12px; flex-wrap:wrap}
