/* =========================================================
   4SomeFun — Shared Site Theme
   Static CSS only. Reuse this file across all site pages.
   ========================================================= */

   :root {
    --ink: #111418;
    --ink-soft: #30363d;
    --night: #10151b;
    --night-2: #18212a;
    --paper: #f5f1e9;
    --paper-2: #ebe4d8;
    --white: #ffffff;
    --gold: #d6aa52;
    --gold-light: #f1d28d;
    --line: rgba(17,20,24,.14);
    --line-dark: rgba(255,255,255,.14);
    --muted: #6e747b;
    --max: 1180px;
    --radius: 6px;
    --shadow: 0 24px 70px rgba(12,15,18,.14);
  }
  
  * {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Helvetica Neue", Arial, sans-serif;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  
  a {
    color: inherit;
  }
  
  img {
    max-width: 100%;
  }
  
  .container {
    width: min(calc(100% - 40px), var(--max));
    margin: 0 auto;
  }
  
  .site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(16,21,27,.96);
    border-bottom: 1px solid var(--line-dark);
  }
  
  .nav-wrap {
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 34px;
  }
  
  .brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-right: auto;
  }
  
  .brand-mark {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    font-size: 23px;
    line-height: 1;
  }
  
  .brand-text {
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.02em;
  }
  
  .brand-text span {
    color: var(--gold);
  }
  
  .main-nav {
    display: flex;
    gap: 28px;
  }
  
  .main-nav a,
  .footer-links a {
    color: rgba(255,255,255,.72);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
  }
  
  .main-nav a:hover,
  .footer-links a:hover {
    color: var(--white);
  }
  
  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 25px;
    background: var(--gold);
    color: var(--ink);
    border: 1px solid var(--gold);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: .01em;
    transition: transform .15s ease, background .15s ease;
  }
  
  .button:hover {
    transform: translateY(-2px);
    background: var(--gold-light);
  }
  
  .button-small {
    min-height: 40px;
    padding: 0 18px;
    font-size: 13px;
  }
  
  .button-full {
    width: 100%;
  }
  
  .hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
      radial-gradient(circle at 80% 15%, rgba(214,170,82,.18), transparent 28%),
      linear-gradient(135deg, #0b1015 0%, #121a22 55%, #1a222a 100%);
    padding: 100px 0 92px;
  }
  
  .hero::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -260px;
    bottom: -300px;
    border: 1px solid rgba(214,170,82,.18);
    border-radius: 50%;
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 70px;
    align-items: center;
  }
  
  .eyebrow {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
  }
  
  h1, h2, h3 {
    margin-top: 0;
  }
  
  h1, h2 {
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: -.035em;
  }
  
  h1 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: clamp(52px, 7vw, 86px);
    line-height: .98;
    font-weight: 500;
  }
  
  h2 {
    margin-bottom: 20px;
    font-size: clamp(36px, 4.4vw, 58px);
    line-height: 1.06;
    font-weight: 500;
  }
  
  h3 {
    font-size: 21px;
    line-height: 1.25;
  }
  
  .hero-lead {
    max-width: 720px;
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: 20px;
    line-height: 1.65;
  }
  
  .hero-actions {
    margin-top: 34px;
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .text-link {
    color: var(--ink);
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1px solid rgba(17,20,24,.28);
    padding-bottom: 3px;
  }
  
  .hero .text-link {
    color: var(--white);
    border-color: rgba(255,255,255,.35);
  }
  
  .text-link span {
    color: var(--gold);
  }
  
  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 52px;
    padding-top: 26px;
    border-top: 1px solid var(--line-dark);
  }
  
  .hero-proof strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    color: var(--gold-light);
    font-size: 28px;
    line-height: 1;
  }
  
  .hero-proof span {
    display: block;
    margin-top: 7px;
    color: rgba(255,255,255,.58);
    font-size: 12px;
    line-height: 1.35;
  }
  
  .hero-card {
    position: relative;
    padding: 42px;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 30px 80px rgba(0,0,0,.24);
    backdrop-filter: blur(4px);
  }
  
  .card-kicker {
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .18em;
  }
  
  .hero-card h2 {
    margin: 10px 0 30px;
    font-size: 34px;
  }
  
  .goal-stack {
    display: grid;
    gap: 22px;
  }
  
  .goal {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--line-dark);
  }
  
  .goal-number {
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
  }
  
  .goal strong {
    font-size: 16px;
  }
  
  .goal p {
    margin: 5px 0 0;
    color: rgba(255,255,255,.62);
    font-size: 14px;
  }
  
  .trust-strip {
    background: var(--gold);
    color: var(--ink);
  }
  
  .trust-grid {
    min-height: 54px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    gap: 20px;
  }
  
  .trust-grid span {
    text-align: center;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .13em;
  }
  
  .section {
    padding: 100px 0;
  }
  
  .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 85px;
    align-items: start;
  }
  
  .body-copy,
  .section-note,
  .section-heading > p,
  .membership-grid > div > p {
    color: var(--ink-soft);
    font-size: 18px;
  }
  
  .body-copy p:first-child {
    margin-top: 0;
  }
  
  .section-heading {
    max-width: 800px;
    margin-bottom: 48px;
  }
  
  .section-heading.narrow {
    max-width: 650px;
  }
  
  .section-heading > p {
    max-width: 680px;
  }
  
  .roadmap-section {
    background: var(--paper-2);
  }
  
  .roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  
  .year-card {
    min-height: 520px;
    padding: 34px;
    background: rgba(255,255,255,.5);
    border: 1px solid var(--line);
  }
  
  .year-card.featured {
    background: var(--night);
    color: var(--white);
    border-color: var(--night);
    box-shadow: var(--shadow);
   
  
  }
  
  .year-top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
  }
  
  .year-card.featured .year-top {
    border-color: var(--line-dark);
  }
  
  .year-top span {
    color: var(--gold);
  }
  
  .year-card h3 {
    margin: 30px 0 15px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    font-weight: 500;
  }
  
  .year-card > p {
    color: var(--ink-soft);
  }
  
  .year-card.featured > p {
    color: rgba(255,255,255,.67);
  }
  
  .check-list {
    list-style: none;
    margin: 26px 0 0;
    padding: 0;
  }
  
  .check-list li {
    position: relative;
    margin: 14px 0;
    padding-left: 25px;
    font-size: 14px;
    font-weight: 700;
  }
  
  .check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 900;
  }
  
  .business-models {
    background: var(--paper);
  }
  
  .model-list {
    display: grid;
    gap: 16px;
  }
  
  .model {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    padding: 26px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.34);
  }
  
  .model-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    background: var(--night);
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
  }
  
  .model h3 {
    margin-bottom: 8px;
  }
  
  .model p {
    margin: 0;
    color: var(--ink-soft);
  }
  
  .lifestyle {
    color: var(--white);
    background:
      linear-gradient(120deg, rgba(10,14,19,.97), rgba(20,30,39,.92)),
      radial-gradient(circle at 80% 50%, rgba(214,170,82,.25), transparent 25%);
  }
  
  .lifestyle-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
  }
  
  .lifestyle-panel {
    padding: 42px;
    border: 1px solid var(--line-dark);
    background: rgba(255,255,255,.04);
  }
  
  .lifestyle-panel h2 {
    font-size: 44px;
  }
  
  .lifestyle-panel > p,
  .lifestyle-copy p {
    color: rgba(255,255,255,.67);
  }
  
  .location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
  }
  
  .location-tags span {
    padding: 7px 10px;
    border: 1px solid rgba(214,170,82,.38);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 800;
  }
  
  .lifestyle-copy {
    align-self: center;
  }
  
  .lifestyle-copy h3 {
    max-width: 520px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 36px;
    font-weight: 500;
  }
  
  .light-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--white);
    border-color: rgba(255,255,255,.3);
  }
  
  .guarantee {
    background: var(--white);
  }
  
  .guarantee-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 70px;
    align-items: center;
  }
  
  .guarantee-number {
    min-height: 280px;
    display: grid;
    place-items: center;
    align-content: center;
    background: var(--gold);
    color: var(--ink);
  }
  
  .guarantee-number span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 115px;
    line-height: .85;
  }
  
  .guarantee-number small {
    margin-top: 16px;
    font-weight: 900;
    letter-spacing: .16em;
  }
  
  .guarantee-copy p {
    max-width: 760px;
    font-size: 17px;
    color: var(--ink-soft);
  }
  
  .guarantee-copy .fine-print {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    font-size: 12px;
    color: var(--muted);
  }
  
  .membership {
    background: var(--paper-2);
  }
  
  .membership-grid {
    display: grid;
    grid-template-columns: 1fr .78fr;
    gap: 90px;
    align-items: center;
  }
  
  .price-card {
    padding: 38px;
    background: var(--night);
    color: var(--white);
    box-shadow: var(--shadow);
  }
  
  .price-line {
    display: flex;
    align-items: flex-end;
    line-height: 1;
  }
  
  .price-line .currency {
    align-self: flex-start;
    margin-top: 16px;
    color: var(--gold);
    font-size: 28px;
    font-weight: 900;
  }
  
  .price-line strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 88px;
    font-weight: 500;
  }
  
  .price-line .term {
    padding-bottom: 12px;
    color: rgba(255,255,255,.6);
    font-size: 16px;
    font-weight: 700;
  }
  
  .price-note,
  .microcopy {
    color: rgba(255,255,255,.55);
    font-size: 13px;
  }
  
  .price-card .check-list {
    margin: 28px 0 32px;
    padding: 24px 0;
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
  }
  
  .price-card .check-list li {
    color: rgba(255,255,255,.82);
  }
  
  .microcopy {
    margin-bottom: 0;
    text-align: center;
  }
  
  .audience {
    background: var(--paper);
  }
  
  .audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  
  .audience-grid > div {
    padding: 30px 28px;
    border-top: 3px solid var(--gold);
    background: rgba(255,255,255,.38);
  }
  
  .audience-grid strong {
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
  }
  
  .audience-grid h3 {
    margin: 14px 0 8px;
  }
  
  .audience-grid p {
    margin: 0;
    color: var(--ink-soft);
  }
  
  .final-cta {
    padding: 90px 0;
    color: var(--white);
    background: var(--night);
  }
  
  .final-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 70px;
    align-items: end;
  }
  
  .final-grid h2 {
    max-width: 780px;
    margin-bottom: 0;
  }
  
  .final-action p {
    margin-top: 0;
    color: rgba(255,255,255,.62);
    font-size: 17px;
  }
  
  .site-footer {
    padding: 58px 0 44px;
    color: var(--white);
    background: #090c10;
    border-top: 1px solid var(--line-dark);
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr .5fr 1.1fr;
    gap: 60px;
  }
  
  .footer-brand {
    margin-bottom: 18px;
  }
  
  .site-footer p {
    color: rgba(255,255,255,.48);
    font-size: 12px;
  }
  
  .footer-links {
    display: grid;
    align-content: start;
    gap: 9px;
  }
  
  .footer-legal {
    border-left: 1px solid var(--line-dark);
    padding-left: 28px;
  }
  
  /* Placeholder pages can reuse this theme */
  .page-hero {
    padding: 86px 0 70px;
    color: var(--white);
    background: var(--night);
  }
  
  .content-shell {
    max-width: 840px;
    padding: 80px 0;
  }
  
  .content-shell h2 {
    margin-top: 55px;
    font-size: 34px;
  }
  
  @media (max-width: 900px) {
    .main-nav {
      display: none;
    }
  
    .hero {
      padding-top: 74px;
    }
  
    .hero-grid,
    .split,
    .lifestyle-grid,
    .guarantee-grid,
    .membership-grid,
    .final-grid,
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 42px;
    }
  
    .roadmap-grid,
    .audience-grid {
      grid-template-columns: 1fr;
    }
  
    .year-card,
    .year-card.featured {
      min-height: auto;
      transform: none;
    }
  
    .trust-grid {
      grid-template-columns: 1fr 1fr;
      padding: 15px 0;
    }
  
    .trust-grid span:last-child {
      grid-column: 1 / -1;
    }
  
    .guarantee-number {
      min-height: 210px;
    }
  
    .footer-legal {
      border-left: 0;
      padding-left: 0;
      border-top: 1px solid var(--line-dark);
      padding-top: 24px;
    }
  }
  
  @media (max-width: 600px) {
    .container {
      width: min(calc(100% - 28px), var(--max));
    }
  
    .site-header .button-small {
      display: none;
    }
  
    .nav-wrap {
      min-height: 64px;
    }
  
    .section {
      padding: 72px 0;
    }
  
    h1 {
      font-size: 48px;
    }
  
    h2 {
      font-size: 38px;
    }
  
    .hero-lead {
      font-size: 17px;
    }
  
    .hero-card,
    .lifestyle-panel,
    .price-card {
      padding: 28px;
    }
  
    .hero-proof {
      grid-template-columns: 1fr;
    }
  
    .trust-grid {
      grid-template-columns: 1fr;
    }
  
    .trust-grid span:last-child {
      grid-column: auto;
    }
  
    .model {
      grid-template-columns: 1fr;
    }
  
    .price-line strong {
      font-size: 72px;
    }
  }
  
  /* Guarantee page */
  .guarantee-hero{padding:105px 0 85px;background:radial-gradient(circle at 82% 30%,rgba(214,170,82,.17),transparent 26%),var(--night)}
  .guarantee-hero-lead{max-width:780px;color:rgba(255,255,255,.72);font-size:21px;line-height:1.65}
  .guarantee-summary-band{background:var(--gold)}
  .guarantee-formula{min-height:120px;display:grid;grid-template-columns:1fr auto 1fr auto 1fr;gap:25px;align-items:center}
  .guarantee-formula>div{text-align:center}.guarantee-formula strong{display:block;font-family:Georgia,"Times New Roman",serif;font-size:34px}.guarantee-formula span{display:block;margin-top:8px;font-size:11px;font-weight:900;letter-spacing:.05em;text-transform:uppercase}.guarantee-formula b{font-size:27px}
  .guarantee-readable{max-width:880px}.guarantee-readable>h2{margin-top:68px;margin-bottom:18px;font-size:39px}.guarantee-readable>h3{margin-top:42px;margin-bottom:12px;font-size:24px}.guarantee-readable>p{color:var(--ink-soft);font-size:17px;line-height:1.78}
  .plain-callout{margin:42px 0;padding:28px 30px;border-left:5px solid var(--gold);background:var(--paper-2)}.plain-callout strong{display:block;font-family:Georgia,"Times New Roman",serif;font-size:25px}.plain-callout p{margin:8px 0 0;color:var(--ink-soft)}
  .guarantee-list{columns:2;column-gap:45px;margin:25px 0 35px}.guarantee-list li{break-inside:avoid}
  .threshold-card{margin:42px 0;padding:38px;text-align:center;background:var(--night);color:var(--white)}.threshold-card>span{display:block;color:var(--gold);font-size:11px;font-weight:900;letter-spacing:.16em}.threshold-card>strong{display:block;margin-top:7px;font-family:Georgia,"Times New Roman",serif;font-size:48px;font-weight:500}.threshold-card p{margin-bottom:0;color:rgba(255,255,255,.62)}
  .number-list{margin:25px 0;padding-left:26px}.number-list li{margin:13px 0;padding-left:7px;color:var(--ink-soft);font-size:17px}
  .experience-grid,.no-loop-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:30px 0}.experience-grid>div,.no-loop-grid>div{padding:24px;border:1px solid var(--line);background:rgba(255,255,255,.38)}.experience-grid strong,.no-loop-grid strong{display:block;color:var(--gold);font-family:Georgia,"Times New Roman",serif;font-size:25px}.experience-grid span,.no-loop-grid span{display:block;margin-top:5px;color:var(--ink-soft);font-size:14px}
  .final-guarantee-box{margin-top:70px;padding:48px;color:var(--white);background:var(--night)}.final-guarantee-box h2{color:var(--white)}.final-guarantee-box>p:not(.eyebrow){color:rgba(255,255,255,.68);font-size:17px}.big-line{display:block;margin-top:30px;color:var(--gold-light);font-family:Georgia,"Times New Roman",serif;font-size:42px;font-weight:500}
  .earnings-disclosure{margin-top:55px;padding-top:30px;border-top:1px solid var(--line)}.earnings-disclosure h3{font-size:18px}.earnings-disclosure p{color:var(--muted);font-size:13px;line-height:1.7}
  .home-guarantee-link{display:inline-block;margin-top:10px;color:var(--ink);font-weight:900;text-decoration:none;border-bottom:2px solid var(--gold);padding-bottom:3px}
  @media(max-width:700px){.guarantee-formula{grid-template-columns:1fr;gap:12px;padding:28px 0}.guarantee-list{columns:1}.experience-grid,.no-loop-grid{grid-template-columns:1fr}.guarantee-readable>h2{font-size:34px}.final-guarantee-box{padding:30px}}
  