/* Ported verbatim from landing/index.html — the existing design system.
   Do not restyle: palette, type and spacing are already signed off. */

@font-face {
      font-family: 'Material Icons Round';
      font-style: normal; font-weight: 400; font-display: swap;
      src: url(/material-icons-round.woff2) format('woff2');
    }
    .material-icons-round {
      font-family: 'Material Icons Round';
      font-weight: normal; font-style: normal; font-size: 24px; line-height: 1;
      letter-spacing: normal; text-transform: none; display: inline-block;
      white-space: nowrap; word-wrap: normal; direction: ltr;
      -webkit-font-feature-settings: 'liga'; -webkit-font-smoothing: antialiased;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: linear-gradient(180deg, #E8F0FE 0%, #F2F2F7 30%, #FFF5EB 70%, #F2F2F7 100%);
      background-attachment: fixed;
      color: #2D2418; overflow-x: hidden;
    }
    /* Ambient orbs (matching app GlassBackground) */
    .ambient-orbs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
    .ambient-orb {
      position: absolute; border-radius: 50%; filter: blur(100px);
      animation: orbFloat 12s ease-in-out infinite;
      will-change: transform; contain: strict;
    }
    .ambient-orb-blue { width: 500px; height: 500px; background: rgba(0,122,255,0.07); top: -60px; left: -80px; }
    .ambient-orb-warm { width: 450px; height: 450px; background: rgba(255,170,50,0.06); bottom: -80px; right: -60px; animation-delay: -4s; animation-duration: 14s; }
    .ambient-orb-green { width: 400px; height: 400px; background: rgba(52,199,89,0.05); bottom: 100px; left: -100px; animation-delay: -8s; animation-duration: 16s; }
    @keyframes orbFloat {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-30px); }
    }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 16px 32px;
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(240,243,248,0.85); backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(45,36,24,0.08);
    }
    .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .nav-logo svg { width: 38px; height: 38px; }
    .nav-brand { font-size: 24px; font-weight: 800; color: #2D2418; letter-spacing: -0.5px; }
    .nav-links { display: flex; gap: 24px; align-items: center; }
    .nav-links a { color: #524A3F; text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
    .nav-links a:hover { color: #2D2418; }
    .nav-cta {
      background: linear-gradient(135deg, #0062E6, #0F65D8) !important; color: #fff !important; padding: 8px 20px;
      border-radius: 8px; font-weight: 700 !important; font-size: 13px !important;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,98,230,0.35); }

    /* LAYOUT */
    .container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
    main { position: relative; z-index: 1; }
    section { padding: 100px 0; }

    /* HERO */
    .hero {
      min-height: 100vh; display: flex; align-items: center;
      padding-top: 80px; padding-bottom: 140px; position: relative; overflow: hidden;
    }
    .hero-bg { position: absolute; inset: 0; z-index: 0; }
    .blob {
      position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.1;
      animation: drift 25s ease-in-out infinite;
      will-change: transform; contain: strict;
    }
    .blob-1 { width: 600px; height: 600px; background: #0062E6; top: -150px; left: -100px; }
    .blob-2 { width: 400px; height: 400px; background: #52A35E; bottom: -100px; right: -100px; animation-delay: -8s; }
    @keyframes drift {
      0%,100% { transform: translate(0,0); }
      50% { transform: translate(40px,-30px); }
    }
    .hero-lineart {
      position: absolute; pointer-events: none;
      opacity: 0.08;
      object-fit: contain;
    }
    .hero-lineart-dog {
      left: 8%; bottom: 5%; height: 70%;
    }
    .hero-lineart-cat {
      right: 8%; bottom: 8%; height: 60%;
    }
    .hero-content { position: relative; z-index: 1; text-align: center; max-width: 900px; margin: 0 auto; }
    .hero-content h1 {
      font-size: 72px; font-weight: 600; line-height: 1.1; letter-spacing: -2.5px;
      margin-bottom: 24px; text-align: center; width: 100%;
    }
    .hero-content h1 .grad {
      background: linear-gradient(135deg, #0062E6, #1A6FE8);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .hero-sub { font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; font-size: 20px; color: #524A3F; line-height: 1.6; margin-bottom: 32px; }
    .hero-stats {
      display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
      margin-bottom: 80px;
    }
    .hero-stat {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 8px 18px; border-radius: 24px;
      text-decoration: none; cursor: pointer; transition: background 0.2s, border-color 0.2s, transform 0.15s;
      background: rgba(0,98,230,0.07); border: 1px solid rgba(0,98,230,0.15);
      font-size: 14px; font-weight: 700; color: #0055D4;
    }
    .hero-stat .material-icons-round { font-size: 18px; color: #0062E6; }
    .hero-stat:hover { background: rgba(0,98,230,0.13); border-color: rgba(0,98,230,0.3); transform: translateY(-1px); }

.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 12px;
      padding: 22px 48px; border-radius: 16px; border: none;
      background: linear-gradient(135deg, #0062E6, #0F65D8); color: #fff; font-size: 20px; font-weight: 700;
      cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; text-decoration: none;
      box-shadow: 0 4px 20px rgba(0,98,230,0.25);
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,98,230,0.35); }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 32px; border-radius: 12px; border: 1px solid rgba(45,36,24,0.12);
      background: transparent; color: #4D4135; font-size: 16px; font-weight: 600;
      cursor: pointer; transition: background 0.2s; text-decoration: none;
    }
    .btn-ghost:hover { background: rgba(45,36,24,0.05); }

    /* SCROLL ARROW */
    .scroll-arrow {
      display: flex; justify-content: center; padding: 0;
      position: absolute; bottom: 32px; left: 0; right: 0; z-index: 2;
      opacity: 1; transition: opacity .35s ease, transform .35s ease;
    }
    /* Once the reader has started scrolling the prompt has done its job. */
    .scroll-arrow.is-scrolled {
      opacity: 0; transform: translateY(10px); pointer-events: none;
    }
    .scroll-arrow a {
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      text-decoration: none; color: #6E655C; font-size: 15px; font-weight: 700;
      letter-spacing: 1.5px; text-transform: uppercase; transition: color 0.3s;
    }
    .scroll-arrow a:hover { color: #0062E6; }
    .scroll-arrow .arrow-icon {
      width: 56px; height: 56px; border-radius: 50%;
      border: 2px solid rgba(0,98,230,0.15);
      background: rgba(255,255,255,0.7);
      display: flex; align-items: center; justify-content: center;
      animation: float-arrow 2s ease-in-out infinite;
      box-shadow: 0 2px 12px rgba(0,98,230,0.08);
    }
    .scroll-arrow .arrow-icon .material-icons-round { font-size: 28px; color: #0062E6; }
    @keyframes float-arrow {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(8px); }
    }

    /* HOW IT WORKS */
    .how-steps {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
      max-width: 900px; margin: 0 auto;
    }
    .how-step {
      text-align: center; position: relative;
    }
    .how-step-num {
      width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 16px;
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; font-weight: 800; color: #fff;
      background: linear-gradient(135deg, #0062E6, #1A6FE8);
    }
    .how-step h3 { font-size: 17px; font-weight: 700; color: #2D2418; margin-bottom: 8px; }
    .how-step p { font-size: 15px; color: #524A3F; line-height: 1.6; }
    .how-arrow {
      position: absolute; top: 24px; right: -28px;
      color: #DDD4C9; font-size: 28px;
    }

    /* SECTION HEADER */
    .sec-label {
      font-size: 13px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 2px; margin-bottom: 12px;
    }
    .sec-title {
      font-size: 40px; font-weight: 800; letter-spacing: -1.5px;
      line-height: 1.15; margin-bottom: 16px;
    }
    .sec-sub {
      font-size: 17px; color: #524A3F; line-height: 1.6; max-width: 600px;
    }

    /* PILLAR DETAIL SECTION */
    .pillar-detail {
      display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    }
    .pillar-detail.reverse { direction: rtl; }
    .pillar-detail.reverse > * { direction: ltr; }
    .detail-text .sec-sub { margin-bottom: 32px; }
    .detail-points { display: flex; flex-direction: column; gap: 20px; }
    .detail-point {
      display: flex; align-items: flex-start; gap: 14px;
    }
    .detail-point-icon {
      width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .detail-point-icon .fi, .detail-point-icon .material-icons-round { font-size: 20px; color: var(--tile-ink, #7A5C34); }
    .detail-point h3 { font-size: 15px; font-weight: 700; color: #2D2418; margin-bottom: 3px; }
    .detail-point p { font-size: 14px; color: #524A3F; line-height: 1.5; }

    /* DETAIL VISUAL (phone mockup) */
    .detail-visual { display: flex; justify-content: center; }
    .phone-mock {
      width: 260px; height: 520px; background: #362C20;
      border-radius: 36px; border: 3px solid #4D4135;
      overflow: hidden; position: relative;
      box-shadow: 0 30px 60px rgba(45,36,24,0.25);
    }
    .phone-notch {
      position: absolute; top: 0; left: 50%; transform: translateX(-50%);
      width: 110px; height: 26px; background: #362C20;
      border-radius: 0 0 14px 14px; z-index: 2;
    }
    .phone-screen {
      width: 100%; height: 100%; background: #f8fafc;
      padding: 34px 14px 14px; overflow: hidden;
    }


    /* FREE BADGE */
    .free-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.2);
      border-radius: 100px; padding: 4px 14px; font-size: 12px; font-weight: 700;
      color: #047857; margin-bottom: 16px;
    }

    /* COMMUNITY COMPACT */
    .community-compact {
      max-width: 800px; margin: 0 auto;
    }
    .community-points {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
      margin-top: 32px;
    }
    .community-point {
      text-align: center; padding: 24px 16px;
      background: rgba(250,246,240,0.8); backdrop-filter: blur(10px); border: 1px solid rgba(234,226,216,0.6);
      border-radius: 16px; transition: transform 0.3s;
    }
    .community-point:hover { transform: translateY(-4px); }
    .community-point-icon {
      width: 48px; height: 48px; border-radius: 14px; margin: 0 auto 12px;
      display: flex; align-items: center; justify-content: center;
    }
    .community-point-icon .material-icons-round { font-size: 24px; color: #fff; }
    .community-point h3 { font-size: 15px; font-weight: 700; color: #2D2418; margin-bottom: 6px; }
    .community-point p { font-size: 14px; color: #524A3F; line-height: 1.5; }

    /* APP PREVIEW SLIDER */
    .slider-text { padding-top: 0; }
    .slider-text .sec-sub { margin-bottom: 32px; }
    .slider-nav { display: flex; flex-direction: column; gap: 8px; }
    .slider-nav-item {
      display: flex; align-items: center; gap: 12px;
      padding: 14px 16px; border-radius: 12px; border: none;
      background: rgba(45,36,24,0.03); cursor: pointer;
      transition: background 0.2s, border-color 0.2s;
      border: 1px solid transparent; text-align: left; width: 100%;
    }
    .slider-nav-item:hover { background: rgba(45,36,24,0.05); }
    .slider-nav-item.active {
      background: rgba(45,36,24,0.06);
      border-color: rgba(45,36,24,0.10);
    }
    .slider-nav-icon {
      width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .slider-nav-icon .material-icons-round { font-size: 20px; color: #fff; }
    .slider-nav-label { font-size: 15px; font-weight: 700; color: #2D2418; }
    .slider-nav-desc { font-size: 12px; color: #524A3F; margin-top: 2px; }
    .slider-wrap {
      position: relative;
    }
    .slider-phone {
      width: 280px; height: 560px; background: #362C20;
      border-radius: 40px; border: 3px solid #4D4135;
      overflow: hidden; position: relative; margin: 0 auto;
      box-shadow: 0 40px 80px rgba(45,36,24,0.25);
    }
    .slider-phone .phone-notch { width: 120px; height: 28px; }
    .slider-track {
      display: flex; transition: transform 0.4s ease;
      height: 100%; will-change: transform;
    }
    .slide {
      min-width: 100%; height: 100%; background: #f8fafc;
      padding: 36px 16px 16px; overflow: hidden;
    }

    /* DOWNLOAD CTA */
    .download-section {
      text-align: center; padding: 80px 0 120px;
    }
    .download-box {
      display: inline-flex; align-items: center; gap: 40px;
      background: #1d1d1f; color: #fff; border-radius: 24px;
      padding: 48px 56px; max-width: 680px; margin: 0 auto;
      box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    }
    .download-box-text { text-align: left; }
    .download-box-text h2 {
      font-size: 28px; font-weight: 800; letter-spacing: -1px;
      margin-bottom: 8px; color: #fff;
    }
    .download-box-text p {
      font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.5;
      margin-bottom: 20px;
    }
    .appstore-badge {
      display: inline-flex; align-items: center; gap: 10px;
      background: #fff; color: #1d1d1f; padding: 12px 24px;
      border-radius: 12px; text-decoration: none; font-size: 16px; font-weight: 700;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .appstore-badge:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.15); }
    .appstore-badge svg { width: 22px; height: 22px; }
    .download-qr {
      width: 140px; height: 140px; flex-shrink: 0;
      background: #fff; border-radius: 16px; padding: 10px;
    }
    .download-qr img { width: 100%; height: 100%; }
    .download-sub { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 6px; text-align: center; }

    /* FOOTER */
    footer {
      position: relative; z-index: 1;
      padding: 40px 32px; text-align: center;
      border-top: 1px solid rgba(45,36,24,0.06);
    }
    footer p { color: #524A3F; font-size: 14px; }
    footer a { color: #524A3F; text-decoration: none; margin: 0 10px; transition: color 0.2s; }
    footer a:hover { color: #2D2418; }
    .share-row { display: flex; justify-content: center; gap: 12px; margin: 16px 0 8px; }
    .share-btn {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 8px 16px; border-radius: 20px; font-size: 13px; font-weight: 600;
      text-decoration: none; transition: transform 0.15s, box-shadow 0.15s;
      border: 1px solid rgba(45,36,24,0.1);
    }
    .share-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
    .share-btn svg { width: 16px; height: 16px; }
    .share-btn.twitter { color: #0F1419; background: #F7F9F9; }
    .share-btn.facebook { color: #1264C7; background: #F0F2F5; }
    .share-btn.linkedin { color: #0A66C2; background: #EDF3F8; }
    .share-btn.bluesky { color: #0062CC; background: #F0F7FF; }

    /* SECTION BACKGROUND ART */
    .section-art {
      position: relative; overflow: hidden;
    }
    .section-art-bg {
      position: absolute; pointer-events: none;
      opacity: 0.06;
      object-fit: contain; height: 85%; width: auto;
      top: 50%; transform: translateY(-50%);
    }
    .section-art-bg.art-left { left: -5%; }
    .section-art-bg.art-right { right: -5%; }

    /* DIVIDER */
    .divider {
      height: 1px; max-width: 1100px; margin: 0 auto;
      background: linear-gradient(90deg, transparent, rgba(45,36,24,0.06), transparent);
    }

    /* NEWS SECTION */
    .news-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
      max-width: 1000px; margin: 0 auto;
    }
    .news-card {
      background: rgba(250,246,240,0.8); backdrop-filter: blur(10px);
      border: 1px solid rgba(234,226,216,0.6); border-radius: 16px;
      overflow: hidden; transition: transform 0.3s, border-color 0.2s;
      display: flex; flex-direction: column;
    }
    .news-card:hover { transform: translateY(-4px); border-color: rgba(45,36,24,0.12); }
    .news-card-thumb {
      width: 100%; height: 140px; object-fit: cover; background: rgba(45,36,24,0.04);
    }
    .news-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
    .news-card-meta {
      display: flex; align-items: center; justify-content: space-between;
      font-size: 11px; color: #716758; margin-bottom: 8px;
    }
    .news-card-source { font-weight: 600; color: #0E7490; }
    .news-card-title {
      font-size: 14px; font-weight: 700; color: #2D2418; line-height: 1.4;
      margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2;
      -webkit-box-orient: vertical; overflow: hidden;
    }
    .news-card-summary {
      font-size: 12px; color: #524A3F; line-height: 1.5; flex: 1;
      display: -webkit-box; -webkit-line-clamp: 3;
      -webkit-box-orient: vertical; overflow: hidden;
    }
    .news-card-link {
      display: inline-flex; align-items: center; gap: 4px;
      font-size: 12px; font-weight: 600; color: #0E7490;
      text-decoration: none; margin-top: 12px;
    }
    .news-card-link:hover { color: #0E7490; }

    /* GUIDES SECTION */
    .guides-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
      max-width: 1000px; margin: 0 auto;
    }
    .guide-card {
      background: rgba(250,246,240,0.8); backdrop-filter: blur(10px);
      border: 1px solid rgba(234,226,216,0.6); border-radius: 16px;
      padding: 24px; text-decoration: none; color: inherit;
      transition: transform 0.3s, border-color 0.2s, box-shadow 0.3s;
      display: flex; flex-direction: column; gap: 10px;
    }
    .guide-card:hover { transform: translateY(-4px); border-color: rgba(45,36,24,0.12); box-shadow: 0 8px 24px rgba(45,36,24,0.06); }
    .guide-card-icon {
      width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
    }
    .guide-card-icon .material-icons-round { font-size: 24px; color: #fff; }
    .guide-card-tag {
      display: inline-block; padding: 3px 10px; border-radius: 12px;
      font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
      width: fit-content;
    }
    .guide-card-tag.dog { background: #EBF2FF; color: #0062E6; }
    .guide-card-tag.cat { background: #FEF3C7; color: #B45309; }
    .guide-card h3 { font-size: 16px; font-weight: 700; color: #2D2418; line-height: 1.3; }
    .guide-card p { font-size: 14px; color: #524A3F; line-height: 1.5; }
    .sec-more {
      display: inline-flex; align-items: center; gap: 4px;
      margin-top: 24px; font-size: 14px; font-weight: 600; color: #0062E6;
      text-decoration: none;
    }
    .sec-more:hover { text-decoration: underline; }

    /* HIGHLIGHTS STRIP */
    .highlights-strip {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
      max-width: 960px; margin: 0 auto;
    }
    .highlight-card {
      text-align: center; padding: 28px 16px;
      background: rgba(250,246,240,0.8); backdrop-filter: blur(10px);
      border: 1px solid rgba(234,226,216,0.6); border-radius: 16px;
      transition: transform 0.3s, border-color 0.2s;
    }
    .highlight-card:hover { transform: translateY(-4px); border-color: rgba(45,36,24,0.12); }
    .highlight-icon {
      width: 48px; height: 48px; border-radius: 14px; margin: 0 auto 12px;
      display: flex; align-items: center; justify-content: center;
    }
    .highlight-icon .fi, .highlight-icon .material-icons-round { font-size: 24px; color: var(--tile-ink, #7A5C34); }
    .highlight-card h3 { font-size: 22px; font-weight: 800; color: #2D2418; letter-spacing: -0.5px; margin-bottom: 4px; }
    .highlight-card p { font-size: 14px; color: #524A3F; line-height: 1.4; }
    @media (max-width: 768px) { .highlights-strip { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
    @media (max-width: 400px) { .highlights-strip { grid-template-columns: 1fr; } }
    @media (max-width: 480px) { .vitamins-grid { grid-template-columns: 1fr; } }

    /* FOODS CTA SECTION */
    .foods-cta-box {
      max-width: 800px; margin: 0 auto;
      background: linear-gradient(135deg, #0062E6, #0F65D8);
      border-radius: 20px; padding: 48px 40px; text-align: center; color: #fff;
    }
    .foods-stats {
      display: flex; justify-content: center; gap: 40px; margin-bottom: 24px; flex-wrap: wrap;
    }
    .foods-stat { text-align: center; }
    .foods-stat-num { font-size: 28px; font-weight: 800; letter-spacing: -1px; }
    .foods-stat-label { font-size: 13px; opacity: 1; margin-top: 2px; }
    .foods-cta-box h3 { font-size: 24px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.5px; }
    .foods-cta-box p { font-size: 15px; opacity: 0.9; margin-bottom: 24px; line-height: 1.5; }
    .foods-cta-btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 32px; background: #fff; color: #0062E6;
      border-radius: 12px; text-decoration: none; font-size: 15px; font-weight: 700;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .foods-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

    /* FAQ SECTION */
    .faq-grid { max-width: 800px; margin: 0 auto; }
    .faq-item {
      background: rgba(250,246,240,0.8); backdrop-filter: blur(10px); border: 1px solid rgba(234,226,216,0.6);
      border-radius: 14px; margin-bottom: 10px; overflow: hidden;
      transition: border-color 0.2s;
    }
    .faq-item:hover { border-color: rgba(45,36,24,0.12); }
    .faq-q {
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
      padding: 18px 20px; cursor: pointer; width: 100%; border: none; background: none;
      font-size: 15px; font-weight: 600; color: #2D2418; text-align: left;
      font-family: inherit;
    }
    .faq-q:hover { color: #2D2418; }
    .faq-q .material-icons-round {
      font-size: 20px; color: #524A3F; transition: transform 0.3s;
      flex-shrink: 0;
    }
    .faq-item.open .faq-q .material-icons-round { transform: rotate(180deg); color: #0062E6; }
    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height .34s cubic-bezier(.22,.68,.24,1), padding .34s cubic-bezier(.22,.68,.24,1);
      will-change: max-height;
      padding: 0 20px; font-size: 14px; color: #524A3F; line-height: 1.7;
      visibility: hidden;
    }
    .faq-item.open .faq-a { max-height: 200px; padding: 0 20px 18px; visibility: visible; }

    /* HAMBURGER MENU */
    .nav-hamburger {
      display: none; background: none; border: 1px solid rgba(45,36,24,0.12);
      border-radius: 8px; padding: 6px; cursor: pointer; line-height: 0;
    }
    .nav-hamburger .hamburger-close { display: none; }
    nav.menu-open .nav-hamburger .hamburger-open { display: none; }
    nav.menu-open .nav-hamburger .hamburger-close { display: inline-block; }
    .nav-mobile-menu { display: none; }
    @keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

    /* VITAMINS SECTION */
    .vitamins-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
      max-width: 900px; margin: 0 auto;
    }
    .vitamin-card {
      text-align: left; padding: 22px 18px;
      background: rgba(250,246,240,0.8); backdrop-filter: blur(10px);
      border: 1px solid rgba(234,226,216,0.6); border-radius: 16px;
      transition: transform 0.3s, border-color 0.2s;
      text-decoration: none; color: inherit; display: block;
    }
    .vitamin-card:hover { transform: translateY(-4px); border-color: rgba(45,36,24,0.12); }
    .vitamin-card-icon {
      width: 44px; height: 44px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 12px;
    }
    .vitamin-card-icon .material-icons-round { font-size: 22px; color: #fff; }
    .vitamin-card h3 { font-size: 15px; font-weight: 700; color: #2D2418; margin-bottom: 4px; }
    .vitamin-card p { font-size: 14px; color: #524A3F; line-height: 1.5; }

    /* ANIMATION */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes pulse {
      0%, 100% { opacity: 0.4; transform: scale(1); }
      50% { opacity: 1; transform: scale(1.02); }
    }
    .anim { opacity: 0; }
    .anim.visible { animation: fadeUp 0.5s ease-out forwards; }

    /* ACCESSIBILITY */
    .skip-link {
      position: absolute; top: -100%; left: 16px; z-index: 9999;
      padding: 12px 24px; background: #0062E6; color: #fff; font-weight: 700; font-size: 14px;
      border-radius: 0 0 8px 8px; text-decoration: none;
    }
    .skip-link:focus { top: 0; }
    a:focus-visible, button:focus-visible, .slider-nav-item:focus-visible {
      outline: 2px solid #0062E6; outline-offset: 2px; border-radius: 4px;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .hero-lineart-dog { display: none; }
      /* small + cornered so the heading stays the LCP element, not this image */
      .hero-lineart-cat { height: 30%; right: -8%; bottom: 0; top: auto; opacity: 0.06; }
      .section-art-bg {
        height: 60%; opacity: 0.04;
        left: 50% !important; right: auto !important;
        transform: translate(-50%, -50%);
      }
      nav { padding: 12px 20px; }
      .nav-links { display: none; }
      .nav-hamburger { display: block; }
      nav.menu-open .nav-mobile-menu {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(240,243,248,0.95); backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(45,36,24,0.08);
        padding: 12px 20px; animation: slideDown 0.2s ease-out;
      }
      .nav-mobile-menu a {
        display: block; padding: 12px 0; color: #2D2418; text-decoration: none;
        font-size: 15px; font-weight: 600;
        border-bottom: 1px solid rgba(45,36,24,0.06);
      }
      .nav-mobile-menu a:last-child { border-bottom: none; }
      .vitamins-grid { grid-template-columns: repeat(2, 1fr); }
      .container { padding: 0 20px; }
      section { padding: 60px 0; }
      .hero { min-height: auto; padding-top: 120px; padding-bottom: 40px; }
      .hero-content { max-width: 100%; }
      .hero-content h1 { font-size: 32px; letter-spacing: -1.5px; }
      .hero-sub { font-size: 16px; }
      .hero-sub br { display: none; }
      .ambient-orb { display: none; }
      .blob { display: none; }
      .hero-stats { gap: 16px; margin-bottom: 32px; }
      .hero-stat { font-size: 13px; }
      .hero-stat .material-icons-round { font-size: 18px; }
      .btn-primary { padding: 16px 32px; font-size: 16px; border-radius: 12px; }
      .btn-primary svg { width: 20px !important; height: 20px !important; }
      .scroll-arrow { display: none; }
      .how-steps { grid-template-columns: 1fr; gap: 24px; }
      .how-arrow { display: none; }
      .sec-title { font-size: 28px; }
      .pillar-detail, .pillar-detail.reverse { grid-template-columns: 1fr; gap: 32px; }
      .pillar-detail.reverse > .detail-visual { order: -1; }
      .phone-mock { width: 220px; height: 440px; border-radius: 28px; }
      .slider-phone { width: 240px; height: 480px; border-radius: 32px; }
      .slider-text { padding-top: 0; }
      .slider-section .pillar-detail > .detail-visual { order: -1; }
      .slider-nav-item { padding: 10px 12px; }
      .slider-nav-icon { width: 34px; height: 34px; border-radius: 8px; }
      .slider-nav-label { font-size: 13px; }
      .slider-nav-desc { font-size: 11px; }
      .about-stats { grid-template-columns: repeat(2,1fr) !important; }
      .community-points { grid-template-columns: 1fr; }
      .guides-grid { grid-template-columns: 1fr; }
      .foods-stats { gap: 24px; }
      .foods-cta-box { padding: 36px 24px; }
      .foods-cta-box h3 { font-size: 20px; }
      .news-grid { grid-template-columns: 1fr; }
      .download-box { display: none; }
      .app-banner { display: none !important; }
      .faq-q { font-size: 14px; padding: 16px; }
      .faq-item.open .faq-a { padding: 0 16px 16px; }
      footer a { display: inline-flex; align-items: center; min-height: 48px; padding: 8px 4px; margin: 0 4px; }
    }
    /* noscript fallback: show content when JS disabled */
    noscript + style { }
  
    .lang-switcher { position: relative; margin-left: 8px; }
    .lang-btn {
      background: none; border: 1px solid rgba(45,36,24,0.12);
      border-radius: 8px; padding: 6px 10px; font-size: 13px; font-weight: 600;
      color: #524A3F; cursor: pointer; line-height: 1;
    }
    .lang-btn:hover { background: rgba(45,36,24,0.04); }
    .lang-dropdown {
      display: none; position: absolute; top: 100%; right: 0;
      background: #FFFDF9; border: 1px solid rgba(45,36,24,0.08);
      border-radius: 12px; padding: 6px; margin-top: 6px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.08); min-width: 140px; z-index: 200;
    }
    .lang-switcher.open .lang-dropdown { display: block; }
    .lang-dropdown a {
      display: block; padding: 8px 12px; color: #2D2418; text-decoration: none;
      font-size: 13px; font-weight: 500; border-radius: 8px;
    }
    .lang-dropdown a:hover { background: rgba(45,36,24,0.04); }
    .lang-dropdown a.active { font-weight: 700; color: #0062E6; }
    .lang-links { margin-top: 12px; font-size: 12px; }
    .lang-links a { margin: 0 4px !important; }
    .lang-links a.active { font-weight: 700; color: #0062E6 !important; }

    /* Mobile app banner — shown only on iOS/Android */
    .app-banner {
      display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
      background: rgba(255,253,249,0.95); backdrop-filter: blur(20px);
      border-top: 1px solid rgba(45,36,24,0.1);
      padding: 12px 16px; align-items: center; gap: 12px;
    }
    .app-banner.show { display: flex; }
    .app-banner-icon { width: 44px; height: 44px; border-radius: 10px; background: linear-gradient(135deg, #0062E6, #1A6FE8); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .app-banner-icon svg { width: 26px; height: 26px; fill: #fff; }
    .app-banner-text { flex: 1; min-width: 0; }
    .app-banner-title { font-size: 14px; font-weight: 700; color: #2D2418; }
    .app-banner-sub { font-size: 12px; color: #524A3F; margin-top: 1px; }
    .app-banner-btn {
      background: linear-gradient(135deg, #0062E6, #0F65D8); color: #fff;
      padding: 8px 16px; border-radius: 18px; font-size: 13px; font-weight: 700;
      text-decoration: none; white-space: nowrap; flex-shrink: 0;
    }
    .app-banner-close {
      background: none; border: none; color: #524A3F; font-size: 20px;
      cursor: pointer; padding: 4px; line-height: 1; flex-shrink: 0;
    }
  
    .nav-explore { position: relative; }
    .nav-explore-btn {
      background: none; border: none; cursor: pointer; font-family: inherit;
      color: #524A3F; font-size: 14px; font-weight: 500; padding: 0;
      display: inline-flex; align-items: center; gap: 4px; transition: color 0.2s;
    }
    .nav-explore-btn:hover, .nav-explore-btn.active { color: #2D2418; }
    .nav-explore-btn.active { font-weight: 700; }
    .nav-explore-btn svg { transition: transform 0.15s; }
    .nav-explore.open .nav-explore-btn svg { transform: rotate(180deg); }
    .nav-explore-dropdown {
      display: none; position: absolute; top: 100%; left: -10px;
      background: #FFFDF9; border: 1px solid rgba(45,36,24,0.08);
      border-radius: 12px; padding: 6px; margin-top: 12px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.08); min-width: 150px; z-index: 200;
    }
    .nav-explore.open .nav-explore-dropdown { display: block; }
    .nav-explore-dropdown a {
      display: block !important; padding: 8px 12px !important; color: #2D2418 !important;
      font-size: 13px !important; font-weight: 500 !important; border-radius: 8px; text-decoration: none;
    }
    .nav-explore-dropdown a:hover { background: rgba(45,36,24,0.04); }
    .nav-explore-dropdown a.active { font-weight: 700 !important; color: #0062E6 !important; }

/* latin */ @font-face { font-family: 'Fraunces'; font-style: normal; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(/fonts/fraunces-latin-400-normal.woff2) format('woff2'); unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD; } /* latin-ext */ @font-face { font-family: 'Fraunces'; font-style: normal; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(/fonts/fraunces-latin-ext-400-normal.woff2) format('woff2'); unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF; } /* vietnamese */ @font-face { font-family: 'Fraunces'; font-style: normal; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(/fonts/fraunces-vietnamese-400-normal.woff2) format('woff2'); unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB; } /* latin */ @font-face { font-family: 'Fraunces'; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(/fonts/fraunces-latin-500-normal.woff2) format('woff2'); unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD; } /* latin-ext */ @font-face { font-family: 'Fraunces'; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(/fonts/fraunces-latin-ext-500-normal.woff2) format('woff2'); unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF; } /* vietnamese */ @font-face { font-family: 'Fraunces'; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(/fonts/fraunces-vietnamese-500-normal.woff2) format('woff2'); unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB; } /* latin */ @font-face { font-family: 'Fraunces'; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(/fonts/fraunces-latin-600-normal.woff2) format('woff2'); unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD; } /* latin-ext */ @font-face { font-family: 'Fraunces'; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(/fonts/fraunces-latin-ext-600-normal.woff2) format('woff2'); unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF; } /* vietnamese */ @font-face { font-family: 'Fraunces'; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(/fonts/fraunces-vietnamese-600-normal.woff2) format('woff2'); unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB; } /* latin */ @font-face { font-family: 'Fraunces'; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(/fonts/fraunces-latin-700-normal.woff2) format('woff2'); unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD; } /* latin-ext */ @font-face { font-family: 'Fraunces'; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(/fonts/fraunces-latin-ext-700-normal.woff2) format('woff2'); unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF; } /* vietnamese */ @font-face { font-family: 'Fraunces'; font-style: normal; font-weight: 700; font-stretch: 100%; font-display: swap; src: url(/fonts/fraunces-vietnamese-700-normal.woff2) format('woff2'); unicode-range: U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB; } /* latin */ @font-face { font-family: 'Instrument Sans'; font-style: normal; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(/fonts/instrument-sans-latin-400-normal.woff2) format('woff2'); unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD; } /* latin-ext */ @font-face { font-family: 'Instrument Sans'; font-style: normal; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(/fonts/instrument-sans-latin-ext-400-normal.woff2) format('woff2'); unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF; } /* latin */ @font-face { font-family: 'Instrument Sans'; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(/fonts/instrument-sans-latin-500-normal.woff2) format('woff2'); unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD; } /* latin-ext */ @font-face { font-family: 'Instrument Sans'; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(/fonts/instrument-sans-latin-ext-500-normal.woff2) format('woff2'); unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF; } /* latin */ @font-face { font-family: 'Instrument Sans'; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(/fonts/instrument-sans-latin-600-normal.woff2) format('woff2'); unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD; } /* latin-ext */ @font-face { font-family: 'Instrument Sans'; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(/fonts/instrument-sans-latin-ext-600-normal.woff2) format('woff2'); unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF; } /* latin */ @font-face { font-family: 'Geist'; font-style: normal; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(/fonts/geist-latin-400-normal.woff2) format('woff2'); unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD; } /* cyrillic */ @font-face { font-family: 'Geist'; font-style: normal; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(/fonts/geist-cyrillic-400-normal.woff2) format('woff2'); unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116; } /* latin-ext */ @font-face { font-family: 'Geist'; font-style: normal; font-weight: 400; font-stretch: 100%; font-display: swap; src: url(/fonts/geist-latin-ext-400-normal.woff2) format('woff2'); unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF; } /* latin */ @font-face { font-family: 'Geist'; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(/fonts/geist-latin-500-normal.woff2) format('woff2'); unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD; } /* cyrillic */ @font-face { font-family: 'Geist'; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(/fonts/geist-cyrillic-500-normal.woff2) format('woff2'); unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116; } /* latin-ext */ @font-face { font-family: 'Geist'; font-style: normal; font-weight: 500; font-stretch: 100%; font-display: swap; src: url(/fonts/geist-latin-ext-500-normal.woff2) format('woff2'); unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF; } /* latin */ @font-face { font-family: 'Geist'; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(/fonts/geist-latin-600-normal.woff2) format('woff2'); unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD; } /* cyrillic */ @font-face { font-family: 'Geist'; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(/fonts/geist-cyrillic-600-normal.woff2) format('woff2'); unicode-range: U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116; } /* latin-ext */ @font-face { font-family: 'Geist'; font-style: normal; font-weight: 600; font-stretch: 100%; font-display: swap; src: url(/fonts/geist-latin-ext-600-normal.woff2) format('woff2'); unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF; } /* latin */ @font-face { font-family: 'DM Serif Display'; font-style: normal; font-weight: 400; font-display: swap; src: url(/fonts/dm-serif-display-latin-400-normal.woff2) format('woff2'); unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD; } /* latin-ext */ @font-face { font-family: 'DM Serif Display'; font-style: normal; font-weight: 400; font-display: swap; src: url(/fonts/dm-serif-display-latin-ext-400-normal.woff2) format('woff2'); unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF; }

body, input, textarea, select, button {
      font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }
    h1, h2, h3, h4,
    .hero-title, .section-title, .nav-brand, .download-title,
    .how-step h3, .community-point h3, .news-card h3, .guide-card h3,
    .highlight h3 {
      font-family: 'Fraunces', Georgia, serif;
      font-weight: 500;
      letter-spacing: -0.015em;
    }
    .detail-point h3 {
      font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      font-weight: 700;
      letter-spacing: -0.01em;
    }
    .hero-stat, .stat-value, .badge-count {
      font-family: 'Geist', ui-monospace, SFMono-Regular, Menlo, monospace;
      font-variant-numeric: tabular-nums;
    }
    .hero-content h1 {
      font-size: clamp(44px, 7vw, 80px);
      line-height: 1.1;
      letter-spacing: -0.025em;
      margin-bottom: 28px;
    }
    .hero-content h1 br { line-height: 1.1; }
    @media (max-width: 720px) {
      .hero-content h1 { font-size: clamp(36px, 9vw, 56px); margin-bottom: 20px; }
    }
    .hero-walks-block {
      margin-top: 36px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 14px 20px 14px 16px;
      background: rgba(0,85,212,0.06);
      border: 1px solid rgba(0,85,212,0.2);
      border-radius: 999px;
      max-width: 100%;
    }
    .hero-walks-block .hwb-icon {
      width: 36px; height: 36px; border-radius: 18px;
      background: linear-gradient(135deg, #0062E6, #1A6FE8);
      display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .hero-walks-block .hwb-text {
      font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      font-size: 14px; color: #2D2418; line-height: 1.45; text-align: left;
    }
    .hero-walks-block .hwb-text strong {
      font-family: 'Fraunces', Georgia, serif; font-weight: 500; color: #0055D4;
    }
    .hero-walks-block .hwb-badge {
      font-family: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      display: inline-block; background: #10B981; color: #fff; font-size: 11px;
      font-weight: 700; padding: 2px 8px; border-radius: 999px; margin-left: 6px;
      vertical-align: middle; letter-spacing: 0.04em;
    }
    @media (max-width: 720px) {
      .hero-walks-block { padding: 12px 16px 12px 12px; margin-top: 24px; }
      .hero-walks-block .hwb-text { font-size: 13px; }
    }
    /* Readability: bump body copy to 15px minimum, raise contrast on muted text */
    .how-step p, .community-point p, .detail-point p,
    .guide-card p, .highlight-card p, .vitamin-card p {
      font-size: 15px; line-height: 1.55;
    }
    .how-step h3, .community-point h3, .detail-point h3,
    .guide-card h3, .vitamin-card h3 {
      font-size: 17px; line-height: 1.3;
    }
    .news-card-meta { font-size: 12px; }
    .news-card-title, .news-card h3 { font-size: 16px; line-height: 1.35; }
    .news-card-desc { font-size: 14px; line-height: 1.5; }
    .hero-sub { font-size: 20px; line-height: 1.55; }
    @media (max-width: 720px) { .hero-sub { font-size: 17px; } }
    .foods-stat-label, .download-sub, .slider-nav-desc { font-size: 13px; }
    .scroll-arrow a { color: #6B5F55; }
    .scroll-arrow a:hover { color: #2D2418; }
    footer p, footer a { color: #3F372E; }
    .nav-brand {
      font-family: 'DM Serif Display', Georgia, serif;
      font-weight: 400;
      font-size: 34px;
      letter-spacing: -0.015em;
      text-transform: lowercase;
      color: #2D2418;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .nav-brand-paw {
      width: 38px;
      height: 38px;
      flex-shrink: 0;
      display: inline-block;
    }
    .nav-brand-dot { color: #0062E6; }
    .nav-brand-pill {
      background: #0062E6;
      color: #fff;
      padding: 0 7px 1px;
      border-radius: 6px;
      margin-left: 1px;
      display: inline-block;
      line-height: 1;
    }

.anim { opacity: 1 !important; }

@media (max-width: 768px) {
  /* hero lineart hidden on mobile: a visible hero image becomes the LCP on slow 4G. Pet stays on desktop. */
  .hero-lineart, .section-art-bg, .ambient-orb, .blob, .scroll-arrow { display:none !important; }
  .hero { background:linear-gradient(160deg,#F4F0FF 0%,#EAF0FF 60%,#F0F7EE 100%); padding-top:96px; padding-bottom:52px; text-align:center; }
  .hero-content { max-width:100%; }
  .hero-content h1 { font-size:clamp(38px,11vw,52px); letter-spacing:-2px; line-height:1.08; }
  .grad { background:linear-gradient(135deg,#0062E6,#5855E0); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
  .hero-sub { font-size:16px; line-height:1.6; max-width:340px; margin:0 auto 24px; }
  .hero-sub br { display:none; }
  .hero-stats { justify-content:center; gap:8px; flex-wrap:wrap; margin-bottom:24px; }
  .hero-stat { background:#fff; border:1.5px solid #E0D8D0; border-radius:20px; padding:7px 13px; font-size:12px; font-weight:600; color:#3A3028; gap:5px; text-decoration:none; display:inline-flex; align-items:center; }
  .hero-stat .material-icons-round { font-size:16px; }
  .hero-cta { display:flex; justify-content:center; }
  .btn-primary { width:100%; max-width:300px; justify-content:center; padding:17px 24px; font-size:16px; border-radius:14px; }
  .hero-walks-block { max-width:320px; margin:20px auto 0; border-radius:14px; }
  section { padding:44px 0; }
  .sec-title { font-size:26px; letter-spacing:-0.5px; }
  .sec-sub { font-size:15px; }
  .slider-section { padding:44px 0; }
  .pillar-detail { grid-template-columns:1fr !important; }
  .detail-visual { display:none !important; }
  .slider-text { padding:0; }
  .slider-nav { display:flex; flex-direction:column; gap:0; border:1px solid #EAE2D8; border-radius:14px; overflow:hidden; background:#fff; }
  .slider-nav-item { padding:12px 14px !important; border-bottom:1px solid #EAE2D8; gap:10px; border-radius:0 !important; background:none !important; }
  .slider-nav-item.active { background:#F0F6FF !important; }
  .slider-nav-item:last-child { border-bottom:none; }
  .slider-nav-icon { width:34px !important; height:34px !important; border-radius:8px !important; flex-shrink:0; }
  .slider-nav-label { font-size:13px; font-weight:600; }
  .slider-nav-desc { font-size:11px; color:#6B6055; }
  .highlights-strip { grid-template-columns:repeat(2,1fr); gap:10px; }
  .highlight-card { padding:16px 14px; border-radius:12px; }
  .highlight-card h3 { font-size:14px; }
  .highlight-card p { font-size:12px; }
  #nutrition .pillar-detail, #smart-collar .pillar-detail { grid-template-columns:1fr !important; gap:0; }
  #nutrition .detail-visual, #smart-collar .detail-visual { display:none !important; }
  .detail-points { gap:12px; }
  .detail-point { gap:12px; padding:14px; background:#fff; border:1px solid #EAE2D8; border-radius:12px; }
  .detail-point-icon { width:38px; height:38px; border-radius:10px; flex-shrink:0; }
  .detail-point h3 { font-size:14px; }
  .detail-point p { font-size:12px; }
  .community-points { display:grid !important; grid-template-columns:repeat(2,1fr) !important; gap:10px !important; }
  .community-point { padding:16px 14px !important; border-radius:14px !important; }
  .community-point:hover { transform:none; }
  .community-point-icon { width:40px; height:40px; border-radius:10px; margin-bottom:10px; }
  .community-point-icon .material-icons-round { font-size:20px; }
  .community-point h3 { font-size:13px; font-weight:700; margin-bottom:4px; }
  .community-point p { font-size:12px; line-height:1.4; }
  .faq-q { font-size:14px; padding:14px 16px; }
  .download-box { display:flex !important; flex-direction:column; gap:20px; padding:32px 24px; border-radius:20px; }
  .download-box-text h2 { font-size:22px; }
  .download-box-text p { font-size:15px; }
  .download-qr { display:none; }
  .download-btns { flex-direction:column; gap:10px; }
  .download-btns .btn-primary { width:100%; justify-content:center; max-width:280px; }
  .about-stats { grid-template-columns:repeat(2,1fr) !important; gap:10px !important; }
  .stat-card { padding:16px 12px; border-radius:12px; }
  .stat-value { font-size:22px; }
}

@media(max-width:768px){.personal-promo{grid-template-columns:1fr!important;padding:30px!important;gap:26px;text-align:center}.personal-promo .sec-label{justify-content:center}.personal-promo p{margin-left:auto;margin-right:auto}}
    /*mnav-canon*/@media(max-width:768px){nav .nav-links{display:none !important}nav .nav-hamburger{display:block !important}}
    /*mmenu-canon*/.nav-hamburger{display:none;background:none;border:1px solid rgba(45,36,24,0.12);border-radius:8px;padding:6px;cursor:pointer;line-height:0}.nav-hamburger .hamburger-close{display:none}nav.menu-open .nav-hamburger .hamburger-open{display:none}nav.menu-open .nav-hamburger .hamburger-close{display:inline-block}.nav-mobile-menu{display:none}@media(max-width:768px){nav .nav-hamburger{display:inline-flex !important;align-items:center;justify-content:center}nav.menu-open .nav-mobile-menu{display:flex !important;flex-direction:column;position:absolute;top:100%;left:0;right:0;background:rgba(240,243,248,0.97);backdrop-filter:blur(20px);border-bottom:1px solid rgba(45,36,24,0.08);padding:12px 20px}.nav-mobile-menu a{display:block;padding:12px 0;color:#2D2418;text-decoration:none;font-size:15px;font-weight:600;border-bottom:1px solid rgba(45,36,24,0.06)}}
    /*nbspan2*/.nav-logo .nav-brand{display:inline-flex;align-items:center}.nav-logo .nav-brand>span{display:inline-block;line-height:1;vertical-align:middle}
/* ---- guides: list + article. Uses the palette and type already defined above. */
.guide-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:18px;padding:8px 0 40px}
.guide-card{display:flex;flex-direction:column;gap:8px;background:#fff;border:1px solid #EAE2D8;
  border-radius:18px;padding:24px;text-decoration:none;color:inherit;transition:border-color .18s,transform .18s,box-shadow .18s}
.guide-card:hover{border-color:#0062E6;transform:translateY(-2px);box-shadow:0 8px 24px rgba(45,36,24,.07)}
.guide-card h3{font-family:Fraunces,Georgia,serif;font-size:19px;font-weight:600;color:#2D2418;margin:0;line-height:1.25}
.guide-card p{font-size:14.5px;color:#524A3F;margin:0;line-height:1.5}
.guide-card-meta{font-size:12.5px;color:#8A8071;margin-top:auto;padding-top:6px}

.guide-article{padding:84px 0 24px}
.guide-head{position:relative;max-width:680px;margin:0 auto 36px;padding-bottom:26px;
  border-bottom:1px solid #EAE2D8}
/* breed silhouette: decorative only, so it is aria-hidden and sits out of flow.
   Left in the header rather than behind the prose so it never fights the text. */
.guide-head.has-art{padding-right:210px;min-height:172px}
.guide-art{position:absolute;right:-26px;top:50%;transform:translateY(-54%);
  width:236px;height:auto;opacity:.85;pointer-events:none;user-select:none}
@media(max-width:900px){
  .guide-head.has-art{padding-right:0;min-height:0}
  .guide-art{position:static;transform:none;display:block;width:150px;opacity:.9;
    margin:0 0 12px -6px}
}
.guide-back{font-size:14px;color:#0062E6;text-decoration:none;display:inline-block;margin-bottom:14px}
.guide-head h1{margin:0 0 14px}
.guide-body{max-width:44rem;margin:0 auto;font-size:20.5px;line-height:1.62;color:#2A2318;
  letter-spacing:-.003em;text-wrap:pretty;font-kerning:normal;
  font-variant-numeric:oldstyle-nums proportional-nums}
.guide-body h2{font-family:Fraunces,Georgia,serif;font-size:31px;font-weight:500;
  margin:60px 0 16px;line-height:1.18;letter-spacing:-.018em;text-wrap:balance;color:#221C12}
.guide-body h3{font-family:Fraunces,Georgia,serif;font-size:23px;font-weight:500;
  margin:40px 0 12px;line-height:1.25;letter-spacing:-.012em;text-wrap:balance;color:#221C12}
.guide-body p{margin:0 0 30px}
.guide-body ul,.guide-body ol{margin:0 0 30px;padding-left:26px}
.guide-body li{margin-bottom:13px;padding-left:4px}
.guide-body table{width:100%;border-collapse:collapse;margin:0 0 24px;font-size:15.5px}
.guide-body .table-scroll{overflow-x:auto;-webkit-overflow-scrolling:touch;margin:0 0 24px}
.guide-body .table-scroll table{margin:0}
.guide-body th,.guide-body td{padding:11px 13px;border-bottom:1px solid #F2EBE1;text-align:left;vertical-align:top}
.guide-body th{background:#FDF5EC;font-size:12px;text-transform:uppercase;letter-spacing:.08em;color:#8A8071}
.guide-body blockquote{margin:0 0 24px;padding:18px 22px;background:#F4F8FF;border:1px solid #DCE8FA;border-radius:14px;color:#0847A8}
.guide-body img{max-width:100%;height:auto;border-radius:12px}


/* ---- faq / terms / support, scoped under .legal-page ---- */
.legal-page @font-face { font-family: 'Material Icons Round';
      font-style: normal; font-weight: 400; font-display: swap;
      src: url(/material-icons-round.woff2) format('woff2'); }
.legal-page .material-icons-round { font-family: 'Material Icons Round';
      font-weight: normal; font-style: normal; font-size: 24px; line-height: 1;
      letter-spacing: normal; text-transform: none; display: inline-block;
      white-space: nowrap; word-wrap: normal; direction: ltr;
      -webkit-font-feature-settings: 'liga'; -webkit-font-smoothing: antialiased; }
.legal-page * { margin: 0; padding: 0; box-sizing: border-box; }
.legal-page .content { padding: 60px 20px 40px;
      max-width: 640px; width: 100%; }
.legal-page .back-link { display: inline-flex; align-items: center; gap: 4px;
      color: #0055D4; text-decoration: none; font-size: 14px; font-weight: 500;
      margin-bottom: 32px; }
.legal-page .back-link:hover { color: #0062E6; }
.legal-page h1 { font-size: 36px; font-weight: 800; letter-spacing: -1px;
      background: linear-gradient(135deg, #0062E6, #0F65D8);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      margin-bottom: 12px; }
.legal-page .intro { font-size: 16px; color: #524A3F; line-height: 1.6; margin-bottom: 40px; }
.legal-page .section-title { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
      color: #0055D4; margin-bottom: 16px; margin-top: 32px;
      display: flex; align-items: center; gap: 8px; }
.legal-page .section-title .material-icons-round { font-size: 20px; }
.legal-page .faq-item { background: rgba(45,36,24,0.03); border: 1px solid rgba(45,36,24,0.08);
      border-radius: 12px; padding: 20px; margin-bottom: 12px; }
.legal-page .faq-q { font-size: 15px; font-weight: 600; color: #2D2418; margin-bottom: 8px; }
.legal-page .faq-a { font-size: 14px; color: #524A3F; line-height: 1.7; }
.legal-page .faq-a a { color: #0055D4; text-decoration: none; }
.legal-page .faq-a a:hover { text-decoration: underline; color: #0062E6; }
@media (max-width: 640px) {
  .legal-page h1 { font-size: 28px; }
  .legal-page .faq-item { padding: 16px; }
}
.legal-page .lang-switcher { position: relative; margin-left: 8px; }
.legal-page .lang-btn { background: none; border: 1px solid rgba(45,36,24,0.12);
      border-radius: 8px; padding: 6px 10px; font-size: 13px; font-weight: 600;
      color: #524A3F; cursor: pointer; line-height: 1; }
.legal-page .lang-btn:hover { background: rgba(45,36,24,0.04); }
.legal-page .lang-dropdown { display: none; position: absolute; top: 100%; right: 0;
      background: #FFFDF9; border: 1px solid rgba(45,36,24,0.08);
      border-radius: 12px; padding: 6px; margin-top: 6px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.08); min-width: 140px; z-index: 200; }
.legal-page .lang-switcher.open .lang-dropdown { display: block; }
.legal-page .lang-dropdown a { display: block; padding: 8px 12px; color: #2D2418; text-decoration: none;
      font-size: 13px; font-weight: 500; border-radius: 8px; }
.legal-page .lang-dropdown a:hover { background: rgba(45,36,24,0.04); }
.legal-page .lang-dropdown a.active { font-weight: 700; color: #0062E6; }
.legal-page .lang-links { margin-top: 12px; font-size: 12px; }
.legal-page .lang-links a { margin: 0 4px !important; }
.legal-page .lang-links a.active { font-weight: 700; color: #0062E6 !important; }
.legal-page .nav-brand-paw { width: 38px;
      height: 38px;
      flex-shrink: 0;
      display: inline-block;
      vertical-align: middle;
      margin-right: 6px; }
.legal-page .nav-explore { position: relative; }
.legal-page .nav-explore-btn { background: none; border: none; cursor: pointer; font-family: inherit;
      color: #524A3F; font-size: 14px; font-weight: 500; padding: 0;
      display: inline-flex; align-items: center; gap: 4px; transition: color 0.2s; }
.legal-page .nav-explore-btn:hover, .legal-page .nav-explore-btn.active { color: #2D2418; }
.legal-page .nav-explore-btn.active { font-weight: 700; }
.legal-page .nav-explore-btn svg { transition: transform 0.15s; }
.legal-page .nav-explore.open .nav-explore-btn svg { transform: rotate(180deg); }
.legal-page .nav-explore-dropdown { display: none; position: absolute; top: 100%; left: -10px;
      background: #FFFDF9; border: 1px solid rgba(45,36,24,0.08);
      border-radius: 12px; padding: 6px; margin-top: 12px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.08); min-width: 150px; z-index: 200; }
.legal-page .nav-explore.open .nav-explore-dropdown { display: block; }
.legal-page .nav-explore-dropdown a { display: block !important; padding: 8px 12px !important; color: #2D2418 !important;
      font-size: 13px !important; font-weight: 500 !important; border-radius: 8px; text-decoration: none; }
.legal-page .nav-explore-dropdown a:hover { background: rgba(45,36,24,0.04); }
.legal-page .nav-explore-dropdown a.active { font-weight: 700 !important; color: #0062E6 !important; }
.legal-page h1, .legal-page h2, .legal-page h3, .legal-page h4, .legal-page .hero-title, .legal-page .section-title, .legal-page .nav-brand, .legal-page .download-title, .legal-page .how-step h3, .legal-page .community-point h3, .legal-page .news-card h3, .legal-page .guide-card h3, .legal-page .detail-point h3, .legal-page .highlight h3 { font-family: 'Fraunces', Georgia, serif;
      font-weight: 500;
      letter-spacing: -0.015em; }
.legal-page .hero-stat, .legal-page .stat-value, .legal-page .badge-count { font-family: 'Geist', ui-monospace, SFMono-Regular, Menlo, monospace;
      font-variant-numeric: tabular-nums; }
.legal-page /* Readability: bump body copy to 15px minimum, .legal-page raise contrast on muted text */
    .how-step p, .legal-page .community-point p, .legal-page .detail-point p, .legal-page .guide-card p, .legal-page .highlight-card p, .legal-page .vitamin-card p { font-size: 15px; line-height: 1.55; }
.legal-page .how-step h3, .legal-page .community-point h3, .legal-page .detail-point h3, .legal-page .guide-card h3, .legal-page .vitamin-card h3 { font-size: 17px; line-height: 1.3; }
.legal-page .news-card-meta { font-size: 12px; }
.legal-page .news-card-title, .legal-page .news-card h3 { font-size: 16px; line-height: 1.35; }
.legal-page .news-card-desc { font-size: 14px; line-height: 1.5; }
.legal-page .hero-sub { font-size: 20px; line-height: 1.55; }
@media (max-width: 720px) {
  .legal-page .hero-sub { font-size: 17px; }
}
.legal-page .foods-stat-label, .legal-page .download-sub, .legal-page .slider-nav-desc { font-size: 13px; }
.legal-page .scroll-arrow a { color: #6B5F55; }
.legal-page .scroll-arrow a:hover { color: #2D2418; }
.legal-page .nav-brand { font-family: 'DM Serif Display', Georgia, serif;
      font-weight: 400;
      font-size: 34px;
      letter-spacing: -0.015em;
      text-transform: lowercase;
      color: #2D2418;
      line-height: 1; }
.legal-page .nav-brand-dot { color: #0062E6; }
.legal-page .nav-brand-pill { background: #0062E6;
      color: #fff;
      padding: 0 7px 1px;
      border-radius: 6px;
      margin-left: 1px;
      display: inline-block;
      line-height: 1; }
.legal-page /*ft2*/footer p a { margin:0 10px;color:#524A3F;text-decoration:none }
.legal-page .lang-links { margin-top:12px;font-size:12px }
.legal-page .lang-links a { margin:0 4px !important }
.legal-page .lang-links a.active { font-weight:700;color:#0062E6 !important }
.legal-page h1 { font-size: 36px; font-weight: 800; letter-spacing: -1px;
      background: linear-gradient(135deg, #0062E6, #0F65D8);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      margin-bottom: 8px; }
.legal-page .updated { font-size: 13px; color: #6B6055; margin-bottom: 32px; }
.legal-page h2 { font-size: 20px; font-weight: 700; color: #2D2418;
      margin-top: 36px; margin-bottom: 12px;
      padding-top: 24px; border-top: 1px solid rgba(45,36,24,0.08); }
.legal-page h2:first-of-type { border-top: none; padding-top: 0; margin-top: 24px; }
.legal-page h3 { font-size: 16px; font-weight: 600; color: #4D4135; margin-top: 20px; margin-bottom: 8px; }
.legal-page p, .legal-page li { font-size: 14px; color: #6B6055; line-height: 1.8; margin-bottom: 12px; }
.legal-page ul { padding-left: 20px; margin-bottom: 12px; }
.legal-page li { margin-bottom: 6px; }
.legal-page a { color: #0055D4; text-decoration: none; }
.legal-page a:hover { text-decoration: underline; color: #0062E6; }
.legal-page .divider { height: 2px;
      background: linear-gradient(90deg, transparent, rgba(0,98,230,0.3), transparent);
      margin: 48px 0; }
@media (max-width: 640px) {
  .legal-page h1 { font-size: 28px; }
}
.legal-page .lang-btn { background: none; border: 1px solid rgba(45,36,24,0.12);
      border-radius: 8px; padding: 6px 10px; font-size: 13px; font-weight: 600;
      color: #6B6055; cursor: pointer; line-height: 1; }
.legal-page .intro { font-size: 16px; color: #6B6055; line-height: 1.6; margin-bottom: 40px; }
.legal-page .card { background: rgba(45,36,24,0.03); border: 1px solid rgba(45,36,24,0.08);
      border-radius: 16px; padding: 28px; margin-bottom: 20px; }
.legal-page .card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.legal-page .card-header .material-icons-round { font-size: 28px;
      background: linear-gradient(135deg, #0062E6, #0F65D8);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.legal-page .card-title { font-size: 18px; font-weight: 600; color: #2D2418; }
.legal-page .card-text { font-size: 14px; color: #6B6055; line-height: 1.7; }
.legal-page .card-text a { color: #0055D4; text-decoration: none; }
.legal-page .card-text a:hover { text-decoration: underline; color: #0062E6; }
@media (max-width: 640px) {
  .legal-page h1 { font-size: 28px; }
  .legal-page .card { padding: 20px; }
}

/* nav is position:fixed; the home page clears it via .hero padding-top, these
   pages need their own offset. */
.legal-page .content { padding-top: 118px; margin-left: auto; margin-right: auto; }
.legal-page { position: relative; z-index: 1; }

/* The home page runs an accordion on .faq-item/.faq-q/.faq-a and collapses
   answers with max-height:0. The standalone /faq page is a plain Q&A list of
   <p> elements that must always be visible — undo the accordion here. */
.legal-page .faq-a {
  max-height: none; overflow: visible; visibility: visible;
  padding: 0; transition: none;
}
.legal-page .faq-q {
  display: block; cursor: default; padding: 0;
}
.legal-page .faq-item { padding: 18px 20px; }

/* --- guides index: compact hero + search/facet controls --- */
/* the site hero is min-height:100vh, right for the home page's phone mockup but
   900px of nothing under a two-line guides title */
.hero.hero-compact{min-height:auto;padding-top:104px;padding-bottom:46px}

/* sits below the hero band, not lapped over it: .hero is position:relative and
   clips with overflow:hidden, so a negative margin here gets painted over no
   matter what z-index the card carries */
.guide-controls{margin:26px 0 34px;background:#fff;border:1px solid #EAE2D8;
  border-radius:20px;padding:14px 16px 16px;box-shadow:0 18px 42px -34px rgba(60,46,24,.4)}
.guide-search{display:flex;align-items:center;gap:11px;background:#FBF7F0;border:1px solid #EFE7DB;
  border-radius:13px;padding:0 15px;transition:border-color .15s,box-shadow .15s,background .15s}
.guide-search:focus-within{background:#fff;border-color:#0062E6;box-shadow:0 0 0 3px rgba(0,98,230,.1)}
.guide-search .material-icons-round{font-size:19px;color:#8A8071;flex-shrink:0}
.guide-search input{flex:1;border:0;outline:0;background:none;font-family:inherit;font-size:15.5px;
  color:#2D2418;padding:13px 0}
.guide-search input::placeholder{color:#6F6558}
.guide-search input::-webkit-search-cancel-button{cursor:pointer}

/* two groups of chips read as one long row unless each is labelled and boxed */
.guide-facets{display:flex;flex-wrap:wrap;align-items:center;gap:10px 12px;margin-top:14px}
.guide-facet{display:flex;flex-wrap:wrap;align-items:center;gap:6px;padding:4px 10px 4px 4px;
  background:#FBF7F0;border:1px solid #F0E8DC;border-radius:999px}
.guide-facet-label{font-family:Geist,ui-monospace,monospace;font-size:11.5px;font-weight:600;
  text-transform:uppercase;letter-spacing:.11em;color:#6F6558;padding:0 8px 0 10px}
.guide-chip{font-family:inherit;font-size:13.5px;font-weight:600;color:#524A3F;background:#fff;
  border:1px solid #EAE2D8;border-radius:999px;padding:6px 13px;cursor:pointer;
  transition:background .15s,border-color .15s,color .15s}
.guide-chip:hover{border-color:#C8A878;color:#2D2418}
.guide-chip.is-on{background:#2D2418;border-color:#2D2418;color:#fff}
.guide-count{margin:0 2px 0 auto;font-family:Geist,ui-monospace,monospace;font-size:12.5px;
  font-variant-numeric:tabular-nums;color:#6F6558;white-space:nowrap}

/* cards: equal heights, clamped text, so a 12-word title cannot triple a row */
.guide-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(290px,1fr));
  gap:16px;padding:0 0 44px;align-items:stretch}
.guide-card{gap:0;padding:22px}
/* .guide-card sets display:flex, which outranks the browser default
   [hidden]{display:none}. Without this the filter set the attribute on
   every non-matching card and none of them actually disappeared. */
.guide-card[hidden]{display:none}
.guide-card .gtags{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:13px}
.gtag{font-family:Geist,ui-monospace,monospace;font-size:11.5px;font-weight:600;
  text-transform:uppercase;letter-spacing:.08em;padding:4px 9px;border-radius:6px}
.gtag-nutrition{background:#EBF3FF;color:#0847A8}
.gtag-activity{background:#EAF6EE;color:#1B6B3A}
.gtag-breed{background:#FBF0E4;color:#8A5A12}
.gtag-health{background:#F3EEFB;color:#5B3FA8}
.gtag-pet{background:#F5F1EA;color:#6B6154}
.guide-card h3{font-size:18px;line-height:1.28;margin:0 0 9px;
  display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.guide-card p{font-size:14.5px;line-height:1.55;margin:0;
  display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.guide-card-meta{display:flex;align-items:center;justify-content:space-between;
  font-family:Geist,ui-monospace,monospace;font-size:11.5px;font-variant-numeric:tabular-nums;
  color:#6F6558;margin-top:auto;padding-top:16px}
.gcard-go{color:#0062E6;font-size:14px;transform:translateX(0);transition:transform .18s}
.guide-card:hover .gcard-go{transform:translateX(4px)}

.guide-more{display:flex;justify-content:center;margin:4px 0 52px}
.guide-more[hidden]{display:none}  /* display:flex outranks [hidden] */
.guide-more button{font-family:inherit;font-size:15px;font-weight:600;color:#2D2418;background:#fff;
  border:1px solid #E8DFD2;border-radius:999px;padding:14px 30px;cursor:pointer;
  transition:border-color .15s,background .15s}
.guide-more button:hover{border-color:#C8A878;background:#FBF7F0}
.guide-empty{margin:8px 0 48px;text-align:center;font-size:16px;color:#524A3F}
.guide-reset{font:inherit;color:#0062E6;font-weight:600;background:none;border:0;padding:0;
  cursor:pointer;text-decoration:underline}
@media(max-width:600px){
  .guide-controls{margin:-18px 0 26px;padding:12px}
  .guide-facets{gap:8px}
  .guide-count{margin:2px 0 0;width:100%}
}

/* home "Why Fudini": a real photograph between the promise and the proof, so
   the section is not three numbers on empty background */
.why-shot{margin:0 auto 44px;max-width:900px;border-radius:26px;overflow:hidden;line-height:0;
  box-shadow:0 30px 60px -44px rgba(60,46,24,.55)}
.why-shot img{width:100%;height:clamp(240px,34vw,400px);object-fit:cover;object-position:center 46%}
@media(max-width:640px){.why-shot{margin-bottom:32px;border-radius:20px}}

/* guides hero: a photograph behind the title, faded out at the bottom so it
   dissolves into the page rather than ending on a line (same treatment as the
   collar hero and the food plate) */
.gd-hero{position:relative;overflow:hidden}
.gd-hero-bg{position:absolute;inset:0;z-index:0;
  background:url(/bg-guides.webp) center 30%/cover no-repeat;opacity:.72;
  -webkit-mask:linear-gradient(#000 0,#000 46%,rgba(0,0,0,.4) 78%,transparent 100%);
  mask:linear-gradient(#000 0,#000 46%,rgba(0,0,0,.4) 78%,transparent 100%)}
.gd-hero::after{content:"";position:absolute;inset:0;z-index:1;pointer-events:none;
  background:radial-gradient(78% 72% at 50% 30%,rgba(251,247,240,.9) 0%,
    rgba(251,247,240,.62) 42%,rgba(251,247,240,.12) 76%,rgba(251,247,240,0) 100%)}
.gd-hero .container{position:relative;z-index:2}
@media(max-width:820px){.gd-hero-bg{opacity:.3}}

/* Hero background film: the dog being drawn. Decorative only — muted, looping,
   aria-hidden and untabbable. The poster is the finished drawing so the first
   paint is never blank, and a reduced-motion visitor keeps the poster instead
   of the film. */
.hero-video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  object-position:center 46%;z-index:0;opacity:.9;filter:saturate(1.06) contrast(1.04);pointer-events:none;
  -webkit-mask:linear-gradient(#000 0,#000 52%,rgba(0,0,0,.45) 80%,transparent 100%);
  mask:linear-gradient(#000 0,#000 52%,rgba(0,0,0,.45) 80%,transparent 100%)}
/* the drawing is the picture now; the flat line art would only fight it */
.hero .hero-lineart{display:none}
.hero .hero-bg{z-index:0}
.hero .hero-content{position:relative;z-index:2}
/* keeps the headline readable over the film */
.hero::after{content:"";position:absolute;inset:0;z-index:1;pointer-events:none;
  background:radial-gradient(88% 70% at 50% 33%,rgba(248,250,255,.9) 0%,
    rgba(248,250,255,.66) 42%,rgba(248,250,255,.22) 74%,rgba(248,250,255,0) 100%)}
@media (prefers-reduced-motion: reduce){
  .hero-video{display:none}
  .hero{background-image:url(/hero-play-poster.webp);background-size:cover;
    background-position:center 42%}
}
@media (max-width:768px){
  /* mobile never loads the film: the poster does the same job for 8% of the bytes */
  .hero-video{display:none}
  .hero{background-image:url(/hero-play-poster.webp);background-size:cover;
    background-position:center 46%}
}

/* Custom icon set. Masked rather than inlined so a single-colour SVG still
   inherits currentColor — the gradient icon tiles depend on that. */
.fi{display:inline-block;width:1.16em;height:1.16em;background:currentColor;vertical-align:-.2em;
  -webkit-mask:var(--fi) center/contain no-repeat;mask:var(--fi) center/contain no-repeat}

}

/* Legal pages are a wall of text; the drawing film gives /terms one warm beat
   before it starts. Decorative, so aria-hidden and untabbable, and it does not
   download until scrolled to. */
.legal-film{margin:0 auto 40px;max-width:760px;border-radius:20px;overflow:hidden;line-height:0;
  box-shadow:0 24px 50px -42px rgba(60,46,24,.5)}
.legal-film video{display:block;width:100%;height:clamp(180px,24vw,260px);object-fit:cover;
  object-position:center 44%}
@media (prefers-reduced-motion: reduce){
  .legal-film video{display:none}
  .legal-film{background:url(/hero-drawing-poster.webp) center 44%/cover no-repeat;
    height:clamp(180px,24vw,260px)}
}

/* Real app screens inside the phone frame. The crops come from the App Store
   captures, so the numbers on screen are the product's own, not invented. */
.phone-shot{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  object-position:top center;border-radius:inherit;display:block}

/* Slider slides now carry a real capture rather than hand-built markup. */
.slide-shot{width:100%;height:100%;object-fit:cover;object-position:top center;display:block}
.slider-track .slide{padding:0;overflow:hidden}

/* Guide reading experience. The measure, the rhythm and the first-line
   treatment are the three things that separate an article from a page of text. */
.guide-body>p:first-of-type{font-size:22.5px;line-height:1.55;color:#3A3226}
.guide-body strong{font-weight:650;color:#221C12}
.guide-body a{color:#0847A8;text-decoration:underline;text-decoration-thickness:1px;
  text-underline-offset:3px;text-decoration-color:rgba(8,71,168,.35)}
.guide-body a:hover{text-decoration-color:#0847A8}
.guide-body h2+p,.guide-body h3+p{margin-top:0}
.guide-body blockquote{font-size:19.5px;line-height:1.6}
/* a hairline between major sections, the way a long read breaks itself up */
.guide-body h2::before{content:"";display:block;width:44px;height:2px;
  background:#E0D5C4;margin:0 0 22px;border-radius:2px}
.guide-body>*:first-child{margin-top:0}
@media(max-width:720px){
  .guide-body{font-size:19px;line-height:1.6}
  .guide-body>p:first-of-type{font-size:20px}
  .guide-body h2{font-size:26px;margin:46px 0 14px}
  .guide-body h3{font-size:21px;margin:32px 0 10px}
  .guide-body p{margin:0 0 26px}
}
