:root {
      --bg: #FAFAF8;
      --surface: rgba(255, 255, 255, 0.78);
      --surface-solid: #ffffff;
      --text: #111111;
      --muted: #666666;
      --border: #E8E8E8;
      --accent: #B58A3A;
      --shadow: 0 22px 60px rgba(17, 17, 17, 0.08);
      --shadow-soft: 0 10px 30px rgba(17, 17, 17, 0.06);
      --font-headline: 'Playfair Display', Georgia, serif;
      --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      --radius-xl: 32px;
      --radius-lg: 24px;
      --radius-md: 18px;
      --radius-sm: 14px;
      --content-max: 1200px;
      --line: 1px solid var(--border);
      --space-1: 4px;
      --space-2: 8px;
      --space-3: 12px;
      --space-4: 16px;
      --space-5: 20px;
      --space-6: 24px;
      --space-8: 32px;
      --space-10: 40px;
      --space-12: 48px;
      --space-16: 64px;
      --space-20: 80px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: var(--font-body);
      background:
        radial-gradient(circle at top left, rgba(181, 138, 58, 0.12), transparent 28%),
        radial-gradient(circle at 85% 10%, rgba(17, 17, 17, 0.04), transparent 20%),
        var(--bg);
      color: var(--text);
      line-height: 1.6;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
    }

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

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

    button {
      font: inherit;
    }

    :focus-visible {
      outline: 3px solid rgba(181, 138, 58, 0.35);
      outline-offset: 3px;
    }

    .skip-link {
      position: absolute;
      left: -9999px;
      top: 12px;
      z-index: 9999;
      background: #fff;
      color: #111;
      padding: 12px 16px;
      border-radius: 999px;
      border: 1px solid var(--border);
    }

    .skip-link:focus {
      left: 16px;
    }

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

    .section {
      position: relative;
      padding: 72px 0;
    }

    .section:first-of-type {
      padding-top: 28px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.78);
      color: var(--muted);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
    }

    .eyebrow .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 4px rgba(181, 138, 58, 0.12);
    }

    .section-title {
      margin: 0;
      font-family: var(--font-headline);
      font-size: clamp(2rem, 5vw, 4.8rem);
      line-height: 0.98;
      letter-spacing: -0.03em;
    }

    .section-title.small {
      font-size: clamp(1.8rem, 4vw, 3.2rem);
      line-height: 1.05;
    }

    .section-copy {
      margin: 0;
      color: var(--muted);
      font-size: clamp(1rem, 1.5vw, 1.1rem);
      line-height: 1.8;
      max-width: 62ch;
    }

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

    .btn-group {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .btn {
      min-height: 44px;
      padding: 12px 20px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.01em;
      transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
      will-change: transform;
    }

    .btn-primary {
      background: #111111;
      color: #ffffff;
      box-shadow: var(--shadow-soft);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.7);
      color: var(--text);
      border-color: var(--border);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .btn:hover,
    .btn:focus-visible {
      transform: translateY(-2px);
    }

    .btn-primary:hover,
    .btn-primary:focus-visible {
      box-shadow: 0 18px 40px rgba(17, 17, 17, 0.18);
    }

    .btn-secondary:hover,
    .btn-secondary:focus-visible {
      border-color: rgba(181, 138, 58, 0.42);
      box-shadow: 0 18px 40px rgba(17, 17, 17, 0.06);
    }

    .glass {
      background: var(--surface);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border: 1px solid rgba(232, 232, 232, 0.9);
      box-shadow: 0 14px 40px rgba(17, 17, 17, 0.06);
    }

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

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .hero .reveal {
      opacity: 1;
      transform: none;
    }

    /* Header */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      padding: 12px 0;
      transition: transform 300ms ease, opacity 300ms ease;
      will-change: transform;
    }

    .site-header.nav-hidden {
      transform: translateY(-110%);
      opacity: 0;
      pointer-events: none;
    }

    .nav-shell {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 64px;
      padding: 12px 16px;
      border-radius: 999px;
    }

    .brand {
      display: inline-flex;
      align-items: baseline;
      gap: 10px;
      min-height: 44px;
    }

    .brand-mark {
      font-family: var(--font-headline);
      font-weight: 700;
      font-size: 1.35rem;
      letter-spacing: -0.03em;
    }

    .brand-tag {
      display: none;
      color: var(--muted);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .nav-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.72);
      color: var(--text);
      cursor: pointer;
    }

    .nav-links {
      display: none;
      gap: 24px;
      align-items: center;
    }

    .nav-links a {
      color: var(--muted);
      font-size: 14px;
      font-weight: 600;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 8px;
      width: 100%;
      height: 1px;
      background: currentColor;
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 200ms ease;
    }

    .nav-links a:hover::after,
    .nav-links a:focus-visible::after {
      transform: scaleX(1);
    }

    .nav-cta {
      display: none;
      min-height: 44px;
    }

    .mobile-panel {
      display: none;
      margin-top: 12px;
      padding: 16px;
      border-radius: 24px;
    }

    .mobile-panel.is-open {
      display: grid;
      gap: 10px;
    }

    .mobile-panel a {
      min-height: 44px;
      display: flex;
      align-items: center;
      padding: 0 8px;
      border-radius: 12px;
      color: var(--muted);
      font-weight: 600;
    }

    .mobile-panel .btn {
      width: 100%;
      margin-top: 6px;
    }

    /* Hero */
    .hero {
      padding-top: 32px;
    }

    .hero-grid {
      display: grid;
      gap: 28px;
      align-items: center;
    }

    .hero-copy {
      display: grid;
      gap: 20px;
    }

    .hero-title {
      margin: 0;
      font-family: var(--font-headline);
      font-size: clamp(3rem, 8vw, 6.5rem);
      line-height: 0.95;
      letter-spacing: -0.04em;
      max-width: 11ch;
    }

    .hero-title span {
      display: block;
    }

    .hero-presenter {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
      flex-wrap: wrap;
    }

    .presenter-brand {
      font-family: var(--font-headline);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent);
      padding: 4px 12px;
      border-radius: 999px;
      background: rgba(181, 138, 58, 0.12);
      border: 1px solid rgba(181, 138, 58, 0.22);
    }

    .hero-tagline {
      display: inline-flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px 12px;
      margin: 18px 0 20px;
      padding: 10px 18px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.85);
      border: 1px solid var(--border);
      box-shadow: 0 4px 14px rgba(17, 17, 17, 0.04);
      font-size: 14px;
      font-weight: 700;
      color: var(--text);
    }

    .hero-tagline .tagline-item {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .hero-tagline .tagline-item i {
      color: var(--accent);
      font-size: 13px;
    }

    .hero-tagline .tagline-dot {
      color: var(--accent);
      opacity: 0.6;
      font-size: 12px;
    }

    .hero-subtitle {
      max-width: 58ch;
      margin: 0;
      color: var(--muted);
      font-size: clamp(1.02rem, 2vw, 1.2rem);
      line-height: 1.85;
    }

    .hero-metrics {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 8px;
    }

    .metric {
      flex: 1 1 150px;
      min-height: 88px;
      padding: 18px;
      border-radius: 22px;
      border: 1px solid var(--border);
      background: rgba(255, 255, 255, 0.72);
    }

    .metric strong {
      display: block;
      font-family: var(--font-headline);
      font-size: 1.9rem;
      line-height: 1;
      margin-bottom: 8px;
    }

    .metric span {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.5;
    }

    .hero-image-wrapper {
      position: relative;
      border-radius: var(--radius-xl);
      overflow: hidden;
      background: var(--surface-solid);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
      width: 100%;
      max-width: 480px;
      margin: 0 auto;
    }

    .hero-image-wrapper:hover {
      transform: translateY(-6px);
      box-shadow: 0 32px 70px rgba(17, 17, 17, 0.14);
      border-color: rgba(181, 138, 58, 0.35);
    }

    .hero-img {
      width: 100%;
      height: auto;
      display: block;
      aspect-ratio: 1024 / 1536;
      object-fit: cover;
      object-position: top center;
    }

    /* Problem */
    .problem-grid {
      grid-template-columns: repeat(1, minmax(0, 1fr));
      margin-top: 34px;
    }

    .problem-card {
      padding: 24px;
      border-radius: 24px;
      background: var(--surface-solid);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
      transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
    }

    .problem-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
      border-color: rgba(181, 138, 58, 0.22);
    }

    .problem-card i {
      width: 48px;
      height: 48px;
      display: inline-grid;
      place-items: center;
      border-radius: 16px;
      background: rgba(181, 138, 58, 0.09);
      color: var(--accent);
      margin-bottom: 18px;
    }

    .problem-card h3,
    .feature-card h3,
    .why-card h3,
    .edition-card h3 {
      margin: 0 0 10px;
      font-family: var(--font-headline);
      font-size: 1.4rem;
      line-height: 1.1;
      letter-spacing: -0.03em;
    }

    .problem-card p,
    .feature-card p,
    .why-card p,
    .edition-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
    }

    .quote {
      margin: 34px auto 0;
      max-width: 900px;
      text-align: center;
      padding: 0 16px;
    }

    .quote blockquote {
      margin: 0;
      font-family: var(--font-headline);
      font-size: clamp(1.8rem, 4vw, 3.4rem);
      line-height: 1.15;
      letter-spacing: -0.03em;
    }

    .quote p {
      margin-top: 14px;
      color: var(--accent);
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.14em;
    }

    /* How it works */
    .timeline {
      margin-top: 34px;
      padding: 18px;
      border-radius: 28px;
      border: 1px solid var(--border);
      background: rgba(255, 255, 255, 0.7);
      box-shadow: var(--shadow-soft);
    }

    .timeline-steps {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 12px;
    }

    .timeline-step {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 14px;
      align-items: center;
      min-height: 72px;
      padding: 14px;
      border-radius: 20px;
      background: var(--surface-solid);
      border: 1px solid var(--border);
      transition: transform 220ms ease, border-color 220ms ease;
    }

    .timeline-step:hover {
      transform: translateX(4px);
      border-color: rgba(181, 138, 58, 0.28);
    }

    .step-index {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: inline-grid;
      place-items: center;
      background: #111111;
      color: #ffffff;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
    }

    .step-copy strong {
      display: block;
      font-size: 15px;
      margin-bottom: 4px;
    }

    .step-copy span {
      color: var(--muted);
      font-size: 13px;
    }

    .edition-list {
      margin-top: 22px;
      padding: 0;
      list-style: none;
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .edition-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      min-height: 44px;
      padding: 14px 16px;
      border: 1px solid var(--border);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.72);
      color: var(--text);
      font-weight: 600;
    }

    .edition-list i {
      color: var(--accent);
    }

    /* Section 3 Responsive Image Showcase */
    .section3-images {
      margin-top: 40px;
    }

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

    .section3-card {
      width: 100%;
      max-width: 100%;
      border-radius: var(--radius-md);
      background: var(--surface-solid);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
      transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
      display: flex;
      flex-direction: column;
    }

    .section3-card:nth-child(3) {
      grid-column: 1 / -1;
      max-width: calc(50% - 6px);
      justify-self: center;
    }

    .section3-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
      border-color: rgba(181, 138, 58, 0.35);
    }

    .section3-img-container {
      width: 100%;
      aspect-ratio: 1122 / 1402;
      background: rgba(17, 17, 17, 0.04);
      overflow: hidden;
      position: relative;
    }

    .section3-img-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 350ms ease;
    }

    .section3-card:hover .section3-img-container img {
      transform: scale(1.03);
    }

    /* Inside every edition */
    .feature-grid {
      margin-top: 34px;
      grid-template-columns: 1fr;
    }

    .feature-card {
      position: relative;
      padding: 24px;
      border-radius: 24px;
      background: var(--surface-solid);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
      transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
      overflow: hidden;
    }

    .feature-card::after {
      content: '';
      position: absolute;
      top: -40px;
      right: -32px;
      width: 112px;
      height: 112px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(181, 138, 58, 0.14), transparent 66%);
      pointer-events: none;
    }

    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
      border-color: rgba(181, 138, 58, 0.24);
    }

    .feature-icon {
      width: 52px;
      height: 52px;
      display: inline-grid;
      place-items: center;
      border-radius: 18px;
      background: linear-gradient(180deg, rgba(181, 138, 58, 0.14), rgba(181, 138, 58, 0.06));
      color: var(--accent);
      margin-bottom: 18px;
      font-size: 1.1rem;
    }

    /* Why different */
    .comparison {
      margin-top: 34px;
      border-radius: 28px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: var(--surface-solid);
      box-shadow: var(--shadow-soft);
    }

    .comparison-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
      padding: 18px;
      border-top: 1px solid var(--border);
    }

    .comparison-row:first-child {
      border-top: 0;
    }

    .comparison-head {
      padding: 18px;
      background: rgba(17, 17, 17, 0.02);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .comparison-label {
      font-weight: 700;
      color: var(--text);
    }

    .comparison-value {
      color: var(--muted);
      line-height: 1.65;
    }

    .statement {
      margin-top: 28px;
      text-align: center;
      font-family: var(--font-headline);
      font-size: clamp(2.1rem, 5vw, 4.6rem);
      line-height: 1.02;
      letter-spacing: -0.04em;
    }

    .statement span {
      color: var(--accent);
    }

    /* Final CTA */
    .final-cta {
      padding-bottom: 88px;
    }

    .cta-shell {
      padding: 32px 22px;
      border-radius: 34px;
      background:
        linear-gradient(180deg, rgba(17, 17, 17, 0.98), rgba(24, 24, 24, 0.96)),
        radial-gradient(circle at top right, rgba(181, 138, 58, 0.16), transparent 30%);
      color: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 32px 70px rgba(17, 17, 17, 0.18);
      text-align: center;
    }

    .cta-shell .eyebrow {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(255, 255, 255, 0.08);
      color: rgba(255, 255, 255, 0.8);
    }

    .cta-shell .section-title,
    .cta-shell .section-copy {
      color: #ffffff;
      max-width: 680px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-shell .section-copy {
      color: rgba(255, 255, 255, 0.76);
    }

    .benefits {
      margin: 24px auto 0;
      padding: 0;
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
    }

    .benefits li {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.06);
      color: rgba(255, 255, 255, 0.9);
      font-size: 14px;
      font-weight: 600;
    }

    .benefits i {
      color: var(--accent);
    }

    /* Footer */
    .site-footer {
      padding: 28px 0 42px;
      border-top: 1px solid var(--border);
    }

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

    .footer-brand {
      display: grid;
      gap: 10px;
    }

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

    .footer-links a,
    .social a {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      color: var(--muted);
      font-size: 14px;
      font-weight: 600;
    }

    .social {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .social a {
      width: 44px;
      justify-content: center;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.72);
    }

    .copyright {
      color: var(--muted);
      font-size: 13px;
      margin: 0;
    }

    /* Responsive layout */
    @media (min-width: 768px) {
      .container {
        width: min(calc(100% - 64px), var(--content-max));
      }

      .section {
        padding: 92px 0;
      }

      .hero-grid {
        grid-template-columns: 1.08fr 0.92fr;
        gap: 32px;
      }

      .problem-grid,
      .feature-grid,
      .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

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

      .edition-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .section3-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
      }

      .section3-card {
        border-radius: var(--radius-lg);
      }

      .section3-card:nth-child(3) {
        grid-column: auto;
        max-width: 100%;
        justify-self: stretch;
      }

      .comparison-row {
        grid-template-columns: 190px 1fr 1fr;
        align-items: center;
      }

      .comparison-row:first-child {
        display: none;
      }

      .comparison-head {
        display: block;
      }

      .brand-tag {
        display: inline-flex;
      }

      .footer-links {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
    }

    @media (min-width: 1024px) {
      .nav-shell {
        min-height: 72px;
        padding-inline: 22px;
      }

      .nav-toggle {
        display: none;
      }

      .nav-links,
      .nav-cta {
        display: inline-flex;
      }

      .hero {
        padding-top: 48px;
      }

      .hero-grid {
        gap: 48px;
      }

      .problem-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .timeline-steps {
        grid-template-columns: repeat(5, minmax(0, 1fr));
      }

      .timeline-step {
        grid-template-columns: 1fr;
        align-items: start;
        min-height: 180px;
      }

      .step-index {
        margin-bottom: 14px;
      }

      .comparison-row {
        grid-template-columns: 220px 1fr 1fr;
        padding: 22px 24px;
      }

      .cta-shell {
        padding: 72px 56px;
      }

      .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        align-items: start;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }

      .reveal {
        opacity: 1;
        transform: none;
      }
    }

    .section3-heading {
      font-family: var(--font-headline);
      font-size: clamp(1.2rem, 2.5vw, 1.6rem);
      font-weight: 600;
      color: var(--muted);
      letter-spacing: -0.02em;
      text-align: center;
      margin: 0 0 20px;
      opacity: 0.85;
    }

    /* =====================================================
       Giveaway page — extends the FOCUS design system above.
       Reuses existing tokens (--accent, --surface-solid, --border,
       --shadow*, --radius*, --space*, --font-headline/body).
       ===================================================== */

    :root {
      --warn: #A83232;
      --warn-bg: rgba(168, 50, 50, 0.06);
      --warn-border: rgba(168, 50, 50, 0.28);
      --win: #1E7A46;
      --win-bg: rgba(30, 122, 70, 0.07);
    }

    /* Quick-jump scan bar */
    .quickjump {
      position: sticky;
      top: 78px;
      z-index: 900;
      margin-bottom: var(--space-8);
      transition: top 300ms ease;
      width: 100%;
    }

    .quickjump.is-sticky-top {
      top: 12px;
    }

    .quickjump-track {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      max-width: 100%;
    }

    .quickjump-track::-webkit-scrollbar { display: none; }

    .quickjump-track a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 36px;
      padding: 0 14px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 700;
      color: var(--muted);
      white-space: nowrap;
      flex: 0 0 auto;
      transition: background 200ms ease, color 200ms ease;
    }

    .quickjump-track a:hover,
    .quickjump-track a:focus-visible,
    .quickjump-track a.active {
      background: rgba(181, 138, 58, 0.16);
      color: var(--text);
    }

    @media (max-width: 767px) {
      .quickjump {
        padding: 0 4px;
      }
      .quickjump-track {
        padding: 6px 8px;
        gap: 4px;
        border-radius: 20px;
      }
      .quickjump-track a {
        padding: 0 12px;
        font-size: 12.5px;
        min-height: 34px;
      }
    }

    /* Section heading — scannable pattern used across every section */
    .give-head {
      margin-bottom: var(--space-6);
    }

    .give-head .eyebrow {
      margin-bottom: 14px;
    }

    .section-title.highlighted {
      position: relative;
      padding-left: 20px;
      border-left: 4px solid var(--accent);
    }

    /* Hero */
    .give-hero {
      padding: 28px 0 12px;
    }

    .give-hero-inner {
      border-radius: var(--radius-xl);
      padding: 36px 22px;
      background:
        radial-gradient(circle at 15% 0%, rgba(181, 138, 58, 0.14), transparent 45%),
        var(--surface-solid);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      text-align: center;
    }

    .give-hero-inner .eyebrow { margin: 0 auto 18px; }

    .give-hero-title {
      margin: 0 auto;
      max-width: 16ch;
      font-family: var(--font-headline);
      font-size: clamp(2.1rem, 7vw, 4.2rem);
      line-height: 1.03;
      letter-spacing: -0.03em;
    }

    .give-hero-title span { color: var(--accent); }

    .give-hero-sub {
      max-width: 52ch;
      margin: 16px auto 0;
      color: var(--muted);
      font-size: clamp(1rem, 1.6vw, 1.15rem);
      line-height: 1.7;
    }

    .give-hero-stats {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 14px;
      margin-top: 28px;
    }

    /* Prize grid */
    .prize-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: var(--space-6);
    }

    .prize-item {
      display: flex;
      align-items: center;
      gap: 12px;
      min-height: 64px;
      padding: 14px 16px;
      border-radius: var(--radius-sm);
      background: var(--surface-solid);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
      font-weight: 700;
      font-size: 14px;
    }

    .prize-item i {
      width: 36px;
      height: 36px;
      flex: none;
      display: inline-grid;
      place-items: center;
      border-radius: 12px;
      background: rgba(181, 138, 58, 0.12);
      color: var(--accent);
    }

    .prize-item.wide { grid-column: 1 / -1; }

    /* Condition chips */
    .condition-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: var(--space-6);
    }

    .condition-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 40px;
      padding: 8px 16px;
      border-radius: 999px;
      background: var(--win-bg);
      border: 1px solid rgba(30, 122, 70, 0.22);
      color: #0F4D2A;
      font-size: 13px;
      font-weight: 700;
    }

    .condition-chip i { color: var(--win); }

    /* Generic content card (story / about / delivery) */
    .give-card {
      margin-top: var(--space-6);
      padding: 24px;
      border-radius: var(--radius-lg);
      background: var(--surface-solid);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
    }

    .give-card p {
      margin: 0 0 12px;
      color: var(--muted);
      line-height: 1.75;
    }

    .give-card p:last-child { margin-bottom: 0; }

    .give-card strong { color: var(--text); }

    /* Trust cards — Selection / Transparency / Delivery */
    .trust-card {
      margin-top: var(--space-6);
      padding: 24px;
      border-radius: var(--radius-lg);
      background: rgba(181, 138, 58, 0.05);
      border: 1px solid rgba(181, 138, 58, 0.28);
      box-shadow: var(--shadow-soft);
    }

    .trust-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      border-radius: 999px;
      background: rgba(181, 138, 58, 0.14);
      color: #7A5A22;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .trust-list {
      list-style: none;
      margin: 16px 0 0;
      padding: 0;
      display: grid;
      gap: 10px;
    }

    .trust-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: var(--text);
      font-size: 14px;
      line-height: 1.6;
    }

    .trust-list i {
      color: var(--accent);
      margin-top: 3px;
      flex: none;
    }

    /* Rules list */
    .rules-list {
      list-style: none;
      margin: var(--space-6) 0 0;
      padding: 0;
      display: grid;
      gap: 10px;
    }

    .rules-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      min-height: 44px;
      padding: 12px 16px;
      border-radius: var(--radius-sm);
      background: var(--surface-solid);
      border: 1px solid var(--border);
      font-weight: 600;
      font-size: 14px;
      line-height: 1.6;
    }

    .rules-list i { color: var(--accent); margin-top: 2px; flex: none; }

    /* Scam warning — visually distinct danger card */
    .warning-card {
      margin-top: var(--space-6);
      padding: 24px;
      border-radius: var(--radius-lg);
      background: var(--warn-bg);
      border: 1.5px solid var(--warn-border);
      box-shadow: var(--shadow-soft);
    }

    .warning-card .trust-badge {
      background: rgba(168, 50, 50, 0.14);
      color: var(--warn);
    }

    .warning-card .trust-list i { color: var(--warn); }

    .warning-card h3 {
      margin: 0 0 6px;
      font-family: var(--font-headline);
      font-size: 1.3rem;
      color: var(--warn);
    }

    /* Thank you band */
    .give-thanks {
      text-align: center;
    }

    .give-thanks .heart { color: var(--accent); }

    /* Responsive */
    @media (min-width: 768px) {
      .prize-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .prize-item.wide { grid-column: span 1; }
      .give-hero-inner { padding: 56px 48px; }
    }

    @media (min-width: 1024px) {
      .prize-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    }

    /* Highlighted Giveaway Nav Link */
    .nav-links a.nav-giveaway-item,
    #mobile-menu a.nav-giveaway-item {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(181, 138, 58, 0.18), rgba(181, 138, 58, 0.08));
      border: 1px solid rgba(181, 138, 58, 0.35);
      color: var(--text);
      font-weight: 700;
      transition: all 240ms ease;
      box-shadow: 0 4px 12px rgba(181, 138, 58, 0.12);
    }
    .nav-links a.nav-giveaway-item:hover,
    #mobile-menu a.nav-giveaway-item:hover {
      background: linear-gradient(135deg, rgba(181, 138, 58, 0.28), rgba(181, 138, 58, 0.14));
      transform: translateY(-1px);
      border-color: rgba(181, 138, 58, 0.5);
      box-shadow: 0 6px 16px rgba(181, 138, 58, 0.2);
    }
    .nav-links a.nav-giveaway-item i,
    #mobile-menu a.nav-giveaway-item i {
      color: var(--accent);
      font-size: 0.9em;
    }
    .nav-giveaway-badge {
      display: inline-block;
      padding: 2px 7px;
      border-radius: 999px;
      background: var(--accent);
      color: #ffffff;
      font-size: 10.5px;
      font-weight: 800;
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }

    /* Post-Hero Giveaway Banner Section */
    .giveaway-hero-section {
      padding-top: 10px;
      padding-bottom: 50px;
    }
    .giveaway-banner-card {
      display: grid;
      grid-template-columns: 1fr;
      gap: 28px;
      padding: 32px 24px;
      border-radius: 28px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(251, 248, 243, 0.98));
      border: 1.5px solid rgba(181, 138, 58, 0.35);
      box-shadow: 0 20px 48px rgba(17, 17, 17, 0.06), 0 0 30px rgba(181, 138, 58, 0.08);
      position: relative;
      overflow: hidden;
      align-items: center;
    }
    @media (min-width: 900px) {
      .giveaway-banner-card {
        grid-template-columns: 1.15fr 0.85fr;
        padding: 44px 48px;
        gap: 40px;
      }
    }
    .giveaway-banner-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      border-radius: 999px;
      background: rgba(181, 138, 58, 0.14);
      border: 1px solid rgba(181, 138, 58, 0.28);
      color: var(--accent);
      font-weight: 700;
      font-size: 13px;
      margin-bottom: 14px;
    }
    .giveaway-banner-title {
      font-family: var(--font-headline);
      font-size: clamp(1.75rem, 3.5vw, 2.4rem);
      font-weight: 800;
      line-height: 1.18;
      letter-spacing: -0.03em;
      margin: 0 0 14px;
      color: var(--text);
    }
    .giveaway-banner-title span {
      color: var(--accent);
    }
    .giveaway-banner-desc {
      font-size: clamp(0.98rem, 1.4vw, 1.08rem);
      color: var(--muted);
      line-height: 1.7;
      margin: 0 0 20px;
    }
    .giveaway-banner-highlights {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 24px;
    }
    .giveaway-banner-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 14px;
      border-radius: 14px;
      background: var(--surface-solid);
      border: 1px solid var(--border);
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    }
    .giveaway-banner-pill i {
      color: var(--accent);
    }
    .giveaway-banner-img-box {
      position: relative;
      width: 100%;
      max-width: 380px;
      margin: 0 auto;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
      background: #0f1115;
    }
    .giveaway-banner-img-box img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      display: block;
      transition: transform 350ms ease;
    }
    .giveaway-banner-img-box:hover img {
      transform: scale(1.04);
    }
    .giveaway-banner-img-tag {
      position: absolute;
      top: 14px;
      right: 14px;
      background: rgba(17, 17, 17, 0.85);
      color: #ffffff;
      backdrop-filter: blur(8px);
      padding: 6px 12px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
      border: 1px solid rgba(255, 255, 255, 0.18);
    }

    /* 10-Second Timed Giveaway Popup Modal / Toast */
    .giveaway-popup-card {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 9995;
      width: calc(100% - 32px);
      max-width: 420px;
      padding: 24px;
      border-radius: 24px;
      background: var(--surface-solid);
      border: 1.5px solid rgba(181, 138, 58, 0.38);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18), 0 0 30px rgba(181, 138, 58, 0.15);
      transform: translateY(40px) scale(0.95);
      opacity: 0;
      visibility: hidden;
      transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1), opacity 350ms ease, visibility 350ms ease;
    }
    @media (max-width: 480px) {
      .giveaway-popup-card {
        bottom: 16px;
        right: 16px;
        left: 16px;
        width: auto;
        padding: 20px;
      }
    }
    .giveaway-popup-card.is-visible {
      transform: translateY(0) scale(1);
      opacity: 1;
      visibility: visible;
    }
    .popup-close-btn {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(17, 17, 17, 0.06);
      border: 1px solid var(--border);
      color: var(--muted);
      font-size: 16px;
      cursor: pointer;
      display: inline-grid;
      place-items: center;
      transition: all 200ms ease;
    }
    .popup-close-btn:hover {
      background: rgba(17, 17, 17, 0.14);
      color: var(--text);
    }
    .popup-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 12px;
      border-radius: 999px;
      background: rgba(181, 138, 58, 0.14);
      border: 1px solid rgba(181, 138, 58, 0.28);
      color: var(--accent);
      font-weight: 700;
      font-size: 12px;
      margin-bottom: 10px;
    }
    .popup-title {
      font-family: var(--font-headline);
      font-size: 1.25rem;
      font-weight: 800;
      margin: 0 0 8px;
      color: var(--text);
      padding-right: 24px;
    }
    .popup-body {
      font-size: 0.92rem;
      color: var(--muted);
      line-height: 1.6;
      margin: 0 0 16px;
    }
    .popup-actions {
      display: flex;
      gap: 10px;
      align-items: center;
    }
    .popup-actions .btn {
      flex: 1;
      justify-content: center;
      font-size: 13.5px;
      padding: 10px 16px;
    }

    /* Shared page-level helpers */
    .page-hero {
      padding-top: 32px;
      padding-bottom: 32px;
    }

    .page-hero .page-intro {
      max-width: 760px;
    }

    .page-hero .section-title {
      margin-top: 14px;
      margin-bottom: 12px;
    }

    .page-hero .section-copy {
      font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    }

    .page-body-shell {
      padding-top: 0;
      padding-bottom: 80px;
    }

    .page-content {
      max-width: 900px;
    }

    .brand-tag.inline {
      display: inline-flex;
      margin-top: 6px;
    }

    .center-actions {
      justify-content: center;
    }

    .section-spacer-top {
      padding-top: 0;
    }

    .section-spacer-small {
      padding-top: 10px;
      padding-bottom: 80px;
    }

    .legal-page .content-card {
      padding: 32px;
      border-radius: 24px;
      background: var(--surface-solid);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
      margin-top: 16px;
    }

    .legal-page .content-card h2 {
      margin: 0 0 16px;
      font-family: var(--font-headline);
      font-size: 1.55rem;
      letter-spacing: -0.02em;
      color: var(--text);
    }

    .legal-page .content-card p {
      margin: 0 0 14px;
      color: var(--muted);
      line-height: 1.8;
      font-size: 1rem;
    }

    .legal-page .content-card p:last-child {
      margin-bottom: 0;
    }

    .legal-page .content-card strong {
      color: var(--text);
    }

    .legal-page .content-card ul {
      margin: 14px 0;
      padding-left: 20px;
      color: var(--muted);
      line-height: 1.8;
    }

    .legal-page .content-card li {
      margin-bottom: 8px;
    }

    .legal-page .accent-card {
      background: rgba(181, 138, 58, 0.05);
      border-color: rgba(181, 138, 58, 0.25);
    }

    .legal-page .callout-box {
      padding: 20px 24px;
      border-radius: 16px;
      background: rgba(181, 138, 58, 0.07);
      border: 1px solid rgba(181, 138, 58, 0.25);
      margin: 18px 0;
    }

    .legal-page .callout-box.danger {
      background: rgba(168, 50, 50, 0.06);
      border-color: rgba(168, 50, 50, 0.28);
    }

    .legal-page .callout-box h4 {
      margin: 0 0 8px;
      font-family: var(--font-headline);
      font-size: 1.1rem;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .legal-page .callout-box.danger h4 {
      color: #A83232;
    }

    .legal-page .callout-box p {
      margin: 0;
      font-size: 0.96rem;
      color: var(--text);
    }

    .about-page .story-card {
      padding: 36px 28px;
      border-radius: 28px;
      background: var(--surface-solid);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
      margin-top: 24px;
    }

    .about-page .story-card h2 {
      font-family: var(--font-headline);
      font-size: clamp(1.6rem, 3.5vw, 2.4rem);
      margin: 0 0 16px;
      letter-spacing: -0.03em;
    }

    .about-page .story-card p {
      color: var(--muted);
      font-size: clamp(1rem, 1.5vw, 1.1rem);
      line-height: 1.85;
      margin: 0 0 16px;
    }

    .about-page .story-card p:last-child {
      margin-bottom: 0;
    }

    .about-page .story-card strong {
      color: var(--text);
    }

    .about-page .founder-badge,
    .contact-page .detail-badge,
    .thankyou-page .status-badge {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 10px 18px;
      border-radius: 999px;
      background: rgba(181, 138, 58, 0.1);
      border: 1px solid rgba(181, 138, 58, 0.22);
      color: var(--text);
      font-weight: 700;
      font-size: 14px;
      margin-bottom: 20px;
    }

    .about-page .founder-badge i,
    .contact-page .detail-badge i,
    .thankyou-page .status-badge i {
      color: var(--accent);
    }

    .about-page .values-grid {
      display: grid;
      grid-template-columns: repeat(1, minmax(0, 1fr));
      gap: 24px;
      margin-top: 32px;
    }

    .about-page .value-card,
    .contact-page .contact-card,
    .thankyou-page .info-card,
    .thankyou-page .flow-card,
    .thankyou-page .whatsapp-card {
      padding: 28px;
      border-radius: 24px;
      background: var(--surface-solid);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
      transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
    }

    .about-page .value-card:hover,
    .contact-page .contact-card:hover,
    .thankyou-page .info-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
      border-color: rgba(181, 138, 58, 0.28);
    }

    .about-page .value-icon,
    .contact-page .contact-card-icon,
    .thankyou-page .info-card-icon {
      width: 48px;
      height: 48px;
      display: inline-grid;
      place-items: center;
      border-radius: 16px;
      background: linear-gradient(180deg, rgba(181, 138, 58, 0.14), rgba(181, 138, 58, 0.06));
      color: var(--accent);
      margin-bottom: 18px;
      font-size: 1.1rem;
    }

    .about-page .value-card h3,
    .contact-page .contact-card h3 {
      margin: 0 0 10px;
      font-family: var(--font-headline);
      font-size: 1.35rem;
      letter-spacing: -0.02em;
    }

    .about-page .value-card p,
    .contact-page .contact-card .section-copy {
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
      font-size: 0.96rem;
    }

    .about-page .stats-banner,
    .thankyou-page .details-grid,
    .thankyou-page .steps-flow-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 36px;
    }

    .about-page .stat-pill {
      flex: 1 1 200px;
      padding: 20px 24px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.8);
      border: 1px solid var(--border);
      text-align: center;
    }

    .about-page .stat-pill strong {
      display: block;
      font-family: var(--font-headline);
      font-size: 2rem;
      color: var(--text);
      line-height: 1;
      margin-bottom: 6px;
    }

    .about-page .stat-pill span {
      color: var(--muted);
      font-size: 13px;
      font-weight: 600;
    }

    .contact-page .contact-grid {
      display: grid;
      grid-template-columns: repeat(1, minmax(0, 1fr));
      gap: 24px;
      margin-top: 36px;
    }

    .contact-page .info-list,
    .contact-page .hours-list,
    .contact-page .links-grid,
    .thankyou-page .info-card-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 16px;
    }

    .contact-page .info-item,
    .thankyou-page .info-card-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .contact-page .info-icon {
      width: 36px;
      height: 36px;
      flex: none;
      display: inline-grid;
      place-items: center;
      border-radius: 10px;
      background: rgba(181, 138, 58, 0.08);
      color: var(--accent);
      font-size: 13px;
    }

    .contact-page .info-content label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--muted);
      margin-bottom: 2px;
    }

    .contact-page .info-content span,
    .contact-page .info-content a {
      color: var(--text);
      font-weight: 600;
      font-size: 14.5px;
      line-height: 1.5;
    }

    .contact-page .info-content a:hover {
      color: var(--accent);
      text-decoration: underline;
    }

    .contact-page .hours-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 14px;
      border-radius: 14px;
      background: rgba(17, 17, 17, 0.02);
      border: 1px solid var(--border);
      font-size: 13.5px;
    }

    .contact-page .hours-item strong {
      color: var(--text);
      font-weight: 600;
    }

    .contact-page .hours-item span {
      color: var(--muted);
      font-weight: 500;
    }

    .contact-page .hours-item.closed span {
      color: #A83232;
      font-weight: 700;
    }

    .contact-page .links-grid {
      gap: 16px;
      margin-top: 24px;
    }

    .contact-page .link-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 20px;
      border-radius: 20px;
      background: var(--surface-solid);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
      transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    }

    .contact-page .link-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow);
      border-color: rgba(181, 138, 58, 0.35);
    }

    .contact-page .link-card-left {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 700;
      font-size: 15px;
      color: var(--text);
    }

    .contact-page .link-card-left i {
      color: var(--accent);
      font-size: 16px;
    }

    .contact-page .link-card-arrow {
      color: var(--muted);
      transition: transform 200ms ease, color 200ms ease;
    }

    .contact-page .link-card:hover .link-card-arrow {
      transform: translateX(4px);
      color: var(--text);
    }

    .thankyou-page .whatsapp-card {
      text-align: center;
      padding: 36px 28px;
      margin-bottom: 40px;
      background: linear-gradient(135deg, rgba(37, 211, 102, 0.08), rgba(255, 255, 255, 0.95));
      border: 1.5px solid rgba(37, 211, 102, 0.35);
    }

    .thankyou-page .whatsapp-card .whatsapp-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      border-radius: 999px;
      background: rgba(37, 211, 102, 0.16);
      border: 1px solid rgba(37, 211, 102, 0.3);
      color: #16a34a;
      font-weight: 700;
      font-size: 13px;
      margin-bottom: 14px;
    }

    .thankyou-page .whatsapp-title {
      font-family: var(--font-headline);
      font-size: clamp(1.4rem, 2.5vw, 1.85rem);
      font-weight: 800;
      margin: 0 0 12px;
      color: var(--text);
    }

    .thankyou-page .whatsapp-desc {
      font-size: 1rem;
      color: var(--muted);
      max-width: 640px;
      margin: 0 auto 24px;
      line-height: 1.7;
    }

    .thankyou-page .btn-whatsapp {
      background: #25D366;
      color: #ffffff;
      font-weight: 700;
      font-size: 1.05rem;
      padding: 16px 32px;
      border-radius: 999px;
      border: none;
      box-shadow: 0 12px 28px rgba(37, 211, 102, 0.3);
      display: inline-flex;
      align-items: center;
      gap: 12px;
      transition: all 240ms ease;
    }

    .thankyou-page .btn-whatsapp:hover {
      background: #20bd5a;
      transform: translateY(-2px);
      box-shadow: 0 16px 36px rgba(37, 211, 102, 0.4);
      color: #ffffff;
    }

    .thankyou-page .success-card {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(251, 248, 243, 0.98));
      border: 1.5px solid rgba(181, 138, 58, 0.35);
      border-radius: 32px;
      padding: 44px 28px;
      text-align: center;
      box-shadow: 0 24px 60px rgba(17, 17, 17, 0.08), 0 0 40px rgba(181, 138, 58, 0.1);
      position: relative;
      overflow: hidden;
      margin-bottom: 40px;
    }

    .thankyou-page .success-card .status-badge {
      width: 80px;
      height: 80px;
      margin: 0 auto 24px;
      padding: 0;
      justify-content: center;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
      border: 2px solid rgba(34, 197, 94, 0.3);
      color: #16a34a;
      font-size: 2.2rem;
      box-shadow: 0 12px 30px rgba(34, 197, 94, 0.18);
      animation: pulseGlow 2.5s infinite ease-in-out;
    }

    .thankyou-page .success-title {
      font-family: var(--font-headline);
      font-size: clamp(2rem, 4.5vw, 3.2rem);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.03em;
      color: var(--text);
      margin: 0 0 16px;
    }

    .thankyou-page .success-title span {
      color: var(--accent);
    }

    .thankyou-page .success-subtitle {
      font-size: clamp(1.05rem, 1.8vw, 1.25rem);
      color: var(--muted);
      max-width: 680px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .thankyou-page .steps-flow-card {
      background: var(--surface-solid);
      border: 1px solid var(--border);
      border-radius: 28px;
      padding: 36px 28px;
      box-shadow: var(--shadow-soft);
      margin-bottom: 40px;
      flex: 1 1 100%;
    }

    .thankyou-page .steps-flow-title {
      font-family: var(--font-headline);
      font-size: 1.4rem;
      font-weight: 700;
      margin: 0 0 24px;
      text-align: center;
    }

    .thankyou-page .flow-step-item {
      padding: 20px 18px;
      border-radius: 20px;
      background: var(--bg);
      border: 1px solid var(--border);
      flex: 1 1 0;
      min-width: 180px;
    }

    .thankyou-page .flow-step-num {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--accent);
      color: #ffffff;
      font-weight: 800;
      font-size: 14px;
      display: inline-grid;
      place-items: center;
      margin-bottom: 12px;
    }

    .thankyou-page .flow-step-item h4 {
      font-family: var(--font-headline);
      font-size: 1.05rem;
      font-weight: 700;
      margin: 0 0 6px;
    }

    .thankyou-page .flow-step-item p {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.5;
      margin: 0;
    }

    .thankyou-page .thankyou-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: center;
      align-items: center;
    }

    .thankyou-page .thankyou-actions .btn {
      padding: 14px 28px;
      font-size: 1rem;
    }

    .video-lazy-shell {
      position: relative;
      width: 100%;
      border-radius: var(--radius-md);
      overflow: hidden;
      background:
        radial-gradient(circle at 20% 20%, rgba(181, 138, 58, 0.16), transparent 32%),
        linear-gradient(135deg, #111111, #1d1f24 55%, #0f1115);
      aspect-ratio: 9 / 16;
      min-height: 320px;
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .video-lazy-shell.is-loaded {
      background: #000000;
    }

    .video-lazy-trigger {
      width: 100%;
      height: 100%;
      border: 0;
      padding: 0;
      background: transparent;
      color: #ffffff;
      cursor: pointer;
      position: relative;
      display: grid;
      place-items: center;
      text-align: center;
    }

    .video-lazy-trigger:focus-visible {
      outline-color: rgba(255, 255, 255, 0.5);
    }

    .video-lazy-trigger::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(17, 17, 17, 0.12), rgba(17, 17, 17, 0.58));
    }

    .video-lazy-trigger-content {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 12px;
      justify-items: center;
      padding: 24px;
      max-width: 280px;
    }

    .video-lazy-play {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      display: inline-grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.92);
      color: var(--text);
      font-size: 1.2rem;
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
    }

    .video-lazy-title {
      font-family: var(--font-headline);
      font-size: 1.2rem;
      line-height: 1.15;
      margin: 0;
    }

    .video-lazy-copy {
      margin: 0;
      color: rgba(255, 255, 255, 0.78);
      font-size: 0.92rem;
      line-height: 1.6;
    }

    .video-lazy-frame {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    @media (min-width: 768px) {
      .page-hero {
        padding-top: 32px;
        padding-bottom: 40px;
      }

      .about-page .values-grid,
      .contact-page .contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .thankyou-page .details-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .thankyou-page .whatsapp-card,
      .thankyou-page .success-card {
        padding: 60px 48px;
      }
    }

    @media (min-width: 1024px) {
      .about-page .values-grid,
      .contact-page .contact-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .contact-page .links-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }

      .thankyou-page .steps-flow-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
    }

    /* Giveaway gallery and related cards */
    .terms-note {
      margin: 14px 0 0;
      color: rgb(190, 190, 190);
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      text-align: right;
    }

    .privacy-section,
    .terms-section,
    .refund-section {
      margin-top: var(--space-6);
    }

    .privacy-card,
    .terms-card,
    .refund-card {
      background: var(--surface-solid);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-soft);
      padding: 24px;
      color: var(--muted);
    }

    .privacy-card h2,
    .terms-card h2,
    .refund-card h2 {
      margin: 0 0 12px;
      font-family: var(--font-headline);
      color: var(--text);
      font-size: clamp(1.15rem, 2vw, 1.45rem);
      line-height: 1.2;
    }

    .privacy-card h3,
    .terms-card h3,
    .refund-card h3,
    .privacy-card h4,
    .terms-card h4,
    .refund-card h4 {
      margin: 18px 0 10px;
      font-family: var(--font-headline);
      color: var(--text);
      line-height: 1.25;
    }

    .privacy-card p,
    .terms-card p,
    .refund-card p,
    .privacy-card li,
    .terms-card li,
    .refund-card li {
      color: var(--muted);
      line-height: 1.7;
    }

    .privacy-card ul,
    .terms-card ul,
    .refund-card ul {
      margin: 12px 0 0;
      padding-left: 20px;
    }

    .privacy-card li + li,
    .terms-card li + li,
    .refund-card li + li {
      margin-top: 8px;
    }

    .shield-box,
    .highlight-box,
    .alert-box {
      margin-top: 16px;
      padding: 18px 20px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      background: rgba(181, 138, 58, 0.06);
    }

    .shield-box h4,
    .highlight-box h4,
    .alert-box h4 {
      margin-top: 0;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1rem;
    }

    .highlight-box.danger,
    .alert-box {
      background: rgba(239, 68, 68, 0.06);
      border-color: rgba(239, 68, 68, 0.22);
    }

    .highlight-box p,
    .alert-box p,
    .shield-box p {
      margin-bottom: 0;
    }

    .privacy-section + .privacy-section,
    .terms-section + .terms-section,
    .refund-section + .refund-section {
      margin-top: 18px;
    }

    .giveaway-summary-banner {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      line-height: 1.5;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .kannan-profile-info {
      flex: 1;
      min-width: 0;
    }

    .market-value-header {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 18px;
    }

    .mac-gallery-wrapper {
      background: var(--surface-solid);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 24px;
      box-shadow: var(--shadow-soft);
      margin-top: var(--space-8);
    }

    .mac-gallery-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      flex-wrap: wrap;
      gap: 12px;
    }

    .mac-gallery-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      background: rgba(181, 138, 58, 0.12);
      color: var(--accent);
      font-weight: 600;
      font-size: 0.85rem;
      border-radius: 99px;
      border: 1px solid rgba(181, 138, 58, 0.25);
    }

    .mac-carousel-container {
      position: relative;
      display: flex;
      align-items: center;
      width: 100%;
    }

    .mac-carousel-track-wrapper {
      overflow: hidden;
      width: 100%;
      border-radius: var(--radius-lg);
      background: #0f1115;
      box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.5);
    }

    .mac-carousel-track {
      display: flex;
      width: 100%;
      transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
      will-change: transform;
      touch-action: pan-y pinch-zoom;
    }

    .mac-carousel-slide {
      flex: 0 0 100%;
      min-width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 16px;
      user-select: none;
    }

    .mac-img-container {
      position: relative;
      width: 100%;
      height: 440px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      overflow: hidden;
      border-radius: var(--radius-md);
    }

    .mac-img-container img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      transition: transform 0.35s ease, filter 0.35s ease;
      border-radius: var(--radius-sm);
    }

    .mac-img-container:hover img {
      transform: scale(1.03);
      filter: brightness(1.05);
    }

    .mac-img-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.25s ease;
      border-radius: var(--radius-md);
    }

    .mac-img-container:hover .mac-img-overlay {
      opacity: 1;
    }

    .mac-zoom-btn {
      background: rgba(255, 255, 255, 0.92);
      color: #111;
      font-weight: 600;
      font-size: 0.88rem;
      padding: 10px 18px;
      border-radius: 99px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: center;
      gap: 8px;
      backdrop-filter: blur(8px);
      transform: translateY(10px);
      transition: transform 0.25s ease;
    }

    .mac-img-container:hover .mac-zoom-btn {
      transform: translateY(0);
    }

    .mac-caption {
      margin-top: 12px;
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.75);
      font-weight: 500;
      letter-spacing: 0.3px;
    }

    .mac-carousel-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.92);
      color: var(--text);
      border: 1px solid rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
      transition: all 0.2s ease;
    }

    .mac-carousel-arrow:hover {
      background: #ffffff;
      transform: translateY(-50%) scale(1.1);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    }

    .mac-carousel-arrow.prev {
      left: 12px;
    }

    .mac-carousel-arrow.next {
      right: 12px;
    }

    .mac-carousel-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 16px;
      padding: 0 4px;
    }

    .mac-carousel-dots {
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .mac-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--border);
      border: none;
      cursor: pointer;
      transition: all 0.25s ease;
      padding: 0;
    }

    .mac-dot.active {
      background: var(--accent);
      width: 28px;
      border-radius: 99px;
    }

    .mac-carousel-counter {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--muted);
      background: var(--bg);
      padding: 4px 12px;
      border-radius: 99px;
      border: 1px solid var(--border);
    }

    .mac-lightbox-modal {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .mac-lightbox-modal.is-active {
      opacity: 1;
      visibility: visible;
    }

    .mac-lightbox-overlay {
      position: absolute;
      inset: 0;
      background: rgba(10, 12, 16, 0.88);
      backdrop-filter: blur(16px) saturate(160%);
      -webkit-backdrop-filter: blur(16px) saturate(160%);
    }

    .mac-lightbox-content {
      position: relative;
      z-index: 10000;
      width: 96%;
      max-width: 1200px;
      height: 92vh;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      pointer-events: auto;
    }

    .mac-lightbox-topbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 16px;
      color: #ffffff;
    }

    .mac-lightbox-info {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .mac-lightbox-count {
      background: rgba(255, 255, 255, 0.15);
      padding: 3px 10px;
      border-radius: 99px;
      font-size: 0.8rem;
      font-weight: 500;
    }

    .mac-lightbox-close {
      background: rgba(255, 255, 255, 0.15);
      border: none;
      color: #ffffff;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      font-size: 1.2rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s ease;
    }

    .mac-lightbox-close:hover {
      background: rgba(255, 255, 255, 0.3);
      transform: scale(1.1);
    }

    .mac-lightbox-body {
      position: relative;
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding: 10px 60px;
    }

    .mac-lightbox-img-wrapper {
      max-width: 100%;
      max-height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mac-lightbox-img-wrapper img {
      max-width: 100%;
      max-height: 75vh;
      object-fit: contain;
      border-radius: 12px;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
      transition: transform 0.25s ease;
    }

    .mac-lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10001;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.18);
      color: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      backdrop-filter: blur(8px);
      transition: all 0.2s ease;
    }

    .mac-lightbox-nav:hover {
      background: rgba(255, 255, 255, 0.35);
      transform: translateY(-50%) scale(1.1);
    }

    .mac-lightbox-nav.prev {
      left: 16px;
    }

    .mac-lightbox-nav.next {
      right: 16px;
    }

    .mac-lightbox-instructions {
      text-align: center;
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.82rem;
      padding-bottom: 12px;
    }

    body.mac-modal-open {
      overflow: hidden !important;
    }

    .mac-video-wrapper {
      background: var(--surface-solid);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 28px;
      box-shadow: var(--shadow-soft);
      margin-top: var(--space-8);
    }

    .mac-video-header {
      margin-bottom: 24px;
    }

    .mac-video-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      align-items: start;
    }

    .mac-video-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 360px;
      width: 100%;
      margin: 0 auto;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    }

    .mac-video-frame {
      width: 100%;
      border-radius: var(--radius-md);
      overflow: hidden;
      background: #000000;
      box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
    }

    .mac-video-info {
      margin-top: 14px;
      width: 100%;
      text-align: left;
    }

    .mac-video-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 4px;
    }

    .mac-video-title {
      font-family: var(--font-headline);
      font-size: 1.15rem;
      font-weight: 700;
      margin: 0 0 6px 0;
      color: var(--text);
    }

    .mac-video-subtext {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.5;
      margin: 0;
    }

    .selection-flow-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: var(--space-6);
    }

    .selection-step-card {
      background: var(--surface-solid);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 22px 18px;
      box-shadow: var(--shadow-soft);
      position: relative;
      display: flex;
      flex-direction: column;
      transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .selection-step-card:hover {
      transform: translateY(-4px);
      border-color: rgba(181, 138, 58, 0.4);
      box-shadow: 0 16px 36px rgba(17, 17, 17, 0.08);
    }

    .selection-step-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 14px;
    }

    .selection-step-num {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--text);
      color: #ffffff;
      font-weight: 800;
      font-size: 0.95rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .selection-step-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: rgba(181, 138, 58, 0.12);
      color: var(--accent);
      font-size: 1.15rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .selection-step-title {
      font-family: var(--font-headline);
      font-size: 1.08rem;
      font-weight: 700;
      margin: 0 0 8px 0;
      color: var(--text);
      line-height: 1.3;
    }

    .selection-step-desc {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.55;
      margin: 0;
    }

    .humble-request-card {
      background: rgba(239, 68, 68, 0.04);
      border: 1px solid rgba(239, 68, 68, 0.28);
      border-radius: var(--radius-lg);
      padding: 24px 28px;
      box-shadow: 0 10px 30px rgba(239, 68, 68, 0.05);
      margin-top: var(--space-6);
    }

    .humble-request-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      background: rgba(239, 68, 68, 0.12);
      color: #dc2626;
      font-weight: 700;
      font-size: 0.85rem;
      border-radius: 99px;
      border: 1px solid rgba(239, 68, 68, 0.3);
      margin-bottom: 12px;
    }

    .humble-request-title {
      font-family: var(--font-headline);
      font-size: 1.25rem;
      font-weight: 700;
      color: #b91c1c;
      margin: 0 0 10px 0;
    }

    .humble-request-card p {
      font-size: 0.94rem;
      color: #7f1d1d;
      line-height: 1.6;
      margin: 0 0 10px 0;
    }

    .humble-request-card p:last-child {
      margin-bottom: 0;
    }

    .humble-request-card strong {
      color: #991b1b;
      font-weight: 700;
    }

    .market-value-card {
      background: var(--surface-solid);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 26px 28px;
      box-shadow: var(--shadow-soft);
    }

    .market-value-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin: 20px 0;
      padding: 16px;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
    }

    .market-stat-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .market-stat-val {
      font-size: 1.45rem;
      font-weight: 800;
      color: var(--accent);
      line-height: 1.2;
    }

    .market-stat-lbl {
      font-size: 0.82rem;
      color: var(--muted);
      font-weight: 500;
      margin-top: 2px;
    }

    .market-value-content p {
      font-size: 0.95rem;
      color: var(--text);
      line-height: 1.65;
      margin: 0 0 10px 0;
    }

    .market-value-content p:last-child {
      margin-bottom: 0;
    }

    .market-value-content strong {
      color: var(--text);
      font-weight: 700;
    }

    .perspective-callout-card {
      background: linear-gradient(135deg, rgba(181, 138, 58, 0.1), rgba(255, 255, 255, 0.95));
      border: 1px solid rgba(181, 138, 58, 0.35);
      border-left: 5px solid var(--accent);
      border-radius: var(--radius-lg);
      padding: 22px 26px;
      box-shadow: 0 10px 30px rgba(181, 138, 58, 0.08);
      position: relative;
      overflow: hidden;
    }

    .perspective-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 5px 14px;
      background: rgba(181, 138, 58, 0.16);
      color: var(--accent);
      font-weight: 700;
      font-size: 0.82rem;
      border-radius: 99px;
      letter-spacing: 0.3px;
      margin-bottom: 12px;
    }

    .perspective-quote {
      margin: 0;
      font-family: var(--font-headline);
      font-size: clamp(1.05rem, 2vw, 1.25rem);
      font-style: italic;
      color: var(--text);
      line-height: 1.55;
    }

    .perspective-quote strong {
      font-style: normal;
      color: #8f6a27;
      background: rgba(181, 138, 58, 0.12);
      padding: 2px 6px;
      border-radius: 6px;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: var(--space-6);
    }

    .faq-item {
      background: var(--surface-solid);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      transition: border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .faq-item:hover {
      border-color: rgba(181, 138, 58, 0.4);
      box-shadow: 0 12px 32px rgba(17, 17, 17, 0.08);
    }

    .faq-item[open] {
      border-color: var(--accent);
    }

    .faq-question {
      padding: 20px 24px;
      font-family: var(--font-headline);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      user-select: none;
      list-style: none;
    }

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

    .faq-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(181, 138, 58, 0.12);
      color: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      flex-shrink: 0;
      transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
    }

    .faq-item[open] .faq-icon {
      transform: rotate(180deg);
      background: var(--accent);
      color: #ffffff;
    }

    .faq-answer {
      padding: 0 24px 22px 24px;
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.65;
      border-top: 1px solid rgba(0, 0, 0, 0.04);
      margin-top: 4px;
      padding-top: 16px;
    }

    .kannan-profile-box {
      display: flex;
      align-items: center;
      gap: 24px;
      padding: 22px 26px;
      background: rgba(181, 138, 58, 0.06);
      border: 1px solid rgba(181, 138, 58, 0.22);
      border-radius: var(--radius-lg);
      margin-bottom: 24px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    }

    .kannan-avatar-wrapper {
      width: 96px;
      height: 96px;
      border-radius: 50%;
      overflow: hidden;
      border: 2px solid rgba(181, 138, 58, 0.35);
      flex: none;
      background: #ffffff;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .kannan-avatar-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .kannan-name {
      margin: 0 0 6px;
      font-family: var(--font-headline);
      font-size: 1.45rem;
      line-height: 1.1;
    }

    .kannan-role {
      margin: 0 0 12px;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .kannan-trust-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      border-radius: 999px;
      background: rgba(181, 138, 58, 0.12);
      border: 1px solid rgba(181, 138, 58, 0.24);
      color: var(--text);
      font-weight: 700;
      font-size: 0.82rem;
    }

    @media (min-width: 768px) {
      .mac-video-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .selection-flow-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .market-value-stats {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 768px) {
      .mac-img-container {
        height: 280px;
      }

      .mac-gallery-wrapper {
        padding: 16px;
        border-radius: var(--radius-lg);
      }

      .mac-video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .mac-video-wrapper {
        padding: 18px;
      }

      .kannan-profile-box {
        flex-direction: column;
        text-align: center;
      }

      .selection-flow-grid,
      .market-value-stats {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 600px) {
      .mac-carousel-arrow {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
      }

      .mac-carousel-arrow.prev {
        left: 6px;
      }

      .mac-carousel-arrow.next {
        right: 6px;
      }

      .mac-lightbox-body {
        padding: 10px 10px;
      }

      .mac-lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
      }

      .mac-lightbox-nav.prev {
        left: 8px;
      }

      .mac-lightbox-nav.next {
        right: 8px;
      }
    }
