*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --black: #0a0a08;
    --white: #f5f2ec;
    --cream: #ede8de;
    --gold: #c8a84b;
    --gold-light: #e2c97e;
    --rust: #b84c2b;
    --green: #2a4a35;
    --green-mid: #3d6b4f;
    --muted: #7a7669;
    --fs-hero: clamp(4rem, 10vw, 9.5rem);
    --fs-xl: clamp(2.5rem, 5vw, 4.5rem);
    --fs-lg: clamp(1.4rem, 3vw, 2.2rem);
    --fs-md: clamp(1rem, 1.5vw, 1.15rem);
  }

  html { scroll-behavior: smooth; }
  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
    cursor: none;
  }

  /* CURSOR */
  .cursor { position: fixed; width: 10px; height: 10px; background: var(--gold); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: transform 0.1s; }
  .cursor-ring { position: fixed; width: 36px; height: 36px; border: 1px solid var(--gold); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: all 0.25s ease; opacity: 0.6; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.4rem 3rem;
  }
  .nav-bg { position: absolute; inset: 0; background: rgba(245,242,236,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(10,10,8,0.06); pointer-events: none; }
  .logo { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 0.15em; color: var(--black); text-decoration: none; position: relative; z-index: 1; }
  .logo span { color: var(--gold); }
  nav ul { display: flex; gap: 2.5rem; list-style: none; position: relative; z-index: 1; }
  nav ul a { color: var(--black); text-decoration: none; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.55; transition: opacity 0.2s; }
  nav ul a:hover, nav ul a.active { opacity: 1; }
  .nav-cta { font-size: 0.75rem !important; font-weight: 500 !important; letter-spacing: 0.12em !important; text-transform: uppercase !important; padding: 0.6rem 1.5rem !important; border: 1px solid var(--black) !important; color: var(--black) !important; border-radius: 2px; opacity: 1 !important; transition: background 0.2s, color 0.2s !important; }
  .nav-cta:hover { background: var(--black) !important; color: var(--white) !important; }

  /* HERO */
  .hero {
    min-height: 100vh;
    background: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 3rem 5rem;
    position: relative;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 50% 60% at 85% 20%, rgba(42,74,53,0.5) 0%, transparent 65%),
      radial-gradient(ellipse 35% 40% at 10% 80%, rgba(200,168,75,0.1) 0%, transparent 60%),
      #0a0a08;
  }
  .hero-bg::after {
    content: ''; position: absolute; inset: -50%; width: 200%; height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.03; animation: grain 0.8s steps(1) infinite;
  }
  @keyframes grain { 0%,100%{transform:translate(0,0)} 10%{transform:translate(-2%,-3%)} 20%{transform:translate(3%,2%)} 30%{transform:translate(-1%,4%)} 40%{transform:translate(4%,-1%)} 50%{transform:translate(-3%,3%)} 60%{transform:translate(2%,-4%)} 70%{transform:translate(-4%,1%)} 80%{transform:translate(1%,-2%)} 90%{transform:translate(3%,4%)} }

  /* Large decorative letter */
  .hero-deco {
    position: absolute; right: -2rem; bottom: -4rem;
    font-family: 'Bebas Neue', sans-serif; font-size: 40vw;
    line-height: 0.85; color: rgba(245,242,236,0.025);
    pointer-events: none; user-select: none; z-index: 1;
    letter-spacing: -0.05em;
  }

  .hero-content { position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; width: 100%; }
  .hero-eyebrow {
    font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold); font-weight: 500; margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 1rem;
    opacity: 0; animation: fadeUp 0.7s 0.3s forwards;
  }
  .hero-eyebrow::before { content:''; display:block; width:30px; height:1px; background:var(--gold); }
  h1.hero-title {
    font-family: 'Bebas Neue', sans-serif; font-size: var(--fs-hero);
    line-height: 0.9; letter-spacing: 0.02em; color: var(--white);
    opacity: 0; animation: fadeUp 0.9s 0.5s forwards;
  }
  h1.hero-title em {
    font-style: italic; font-family: 'DM Serif Display', serif;
    color: var(--gold-light); display: block; font-size: 0.88em;
  }

  .hero-bottom {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-top: 4rem; gap: 3rem; flex-wrap: wrap;
    opacity: 0; animation: fadeUp 0.8s 0.9s forwards;
  }
  .hero-manifesto {
    max-width: 460px; font-size: 1.05rem; line-height: 1.75;
    color: rgba(245,242,236,0.6); font-weight: 300;
    border-left: 2px solid var(--gold); padding-left: 1.5rem;
  }
  .hero-scroll {
    display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
    color: var(--muted); font-size: 0.68rem; letter-spacing: 0.18em;
    text-transform: uppercase; font-weight: 500;
    animation: bounce 2s ease infinite;
  }
  .scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--gold), transparent); }
  @keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }
  @keyframes fadeUp { to { opacity:1; transform:translateY(0); } }

  /* SECTION BASE */
  section { position: relative; }
  .section-pad { padding: 8rem 3rem; }
  .max-w { max-width: 1400px; margin: 0 auto; }
  .section-label {
    font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
    font-weight: 500; margin-bottom: 2rem;
    display: flex; align-items: center; gap: 1rem;
  }
  .section-label::before { content:''; display:block; width:30px; height:1px; background:currentColor; }
  .reveal { opacity:0; transform:translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity:1; transform:translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* WHY SECTION — editorial layout */
  .why-section { background: var(--white); overflow: hidden; }
  .why-inner {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 8rem; align-items: start;
  }
  .why-left { position: sticky; top: 8rem; }
  .why-heading {
    font-family: 'Bebas Neue', sans-serif; font-size: var(--fs-xl);
    line-height: 0.9; color: var(--black); margin-bottom: 2rem;
  }
  .why-heading em { font-style: italic; font-family: 'DM Serif Display', serif; color: var(--green); display: block; }
  .why-pull-quote {
    font-family: 'DM Serif Display', serif; font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    line-height: 1.45; color: var(--black); font-style: italic;
    border-left: 3px solid var(--gold); padding-left: 1.8rem;
    margin-bottom: 2.5rem;
  }
  .why-body { font-size: 1rem; line-height: 1.85; color: rgba(10,10,8,0.65); font-weight: 300; }
  .why-right { padding-top: 2rem; }
  .why-stat-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 4rem;
  }
  .why-stat {
    background: var(--cream); border-radius: 4px; padding: 2rem 1.8rem;
    border-bottom: 3px solid transparent; transition: border-color 0.3s, transform 0.3s;
  }
  .why-stat:hover { border-color: var(--gold); transform: translateY(-3px); }
  .why-stat-num {
    font-family: 'Bebas Neue', sans-serif; font-size: 3rem; letter-spacing: 0.05em;
    color: var(--black); line-height: 1; margin-bottom: 0.4rem;
  }
  .why-stat-num span { color: var(--gold); }
  .why-stat-label { font-size: 0.78rem; color: var(--muted); font-weight: 400; line-height: 1.5; }
  .why-problem {
    background: var(--black); border-radius: 6px; padding: 3rem;
    color: var(--white);
  }
  .why-problem-title {
    font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; letter-spacing: 0.05em;
    color: var(--gold); margin-bottom: 1.5rem;
  }
  .problem-items { display: flex; flex-direction: column; gap: 1.2rem; }
  .problem-item { display: flex; gap: 1rem; align-items: flex-start; }
  .problem-num {
    font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: rgba(245,242,236,0.2);
    line-height: 1.2; flex-shrink: 0; width: 2rem;
  }
  .problem-text { font-size: 0.9rem; line-height: 1.65; color: rgba(245,242,236,0.65); font-weight: 300; }
  .problem-text strong { color: var(--white); font-weight: 500; }

  /* VALUES / HOW SECTION */
  .values-section { background: var(--black); overflow: hidden; }
  .values-heading {
    font-family: 'Bebas Neue', sans-serif; font-size: var(--fs-xl);
    line-height: 0.9; color: var(--white); margin-bottom: 5rem; max-width: 800px;
  }
  .values-heading em { font-style: italic; font-family: 'DM Serif Display', serif; color: var(--gold); }
  .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
  .value-item {
    padding: 3rem 2.5rem; border-right: 1px solid rgba(245,242,236,0.07);
    border-bottom: 1px solid rgba(245,242,236,0.07);
    transition: background 0.3s;
  }
  .value-item:hover { background: rgba(245,242,236,0.03); }
  .value-item:nth-child(3n) { border-right: none; }
  .value-item:nth-last-child(-n+3) { border-bottom: none; }
  .value-num {
    font-family: 'Bebas Neue', sans-serif; font-size: 4rem;
    color: rgba(245,242,236,0.06); line-height: 1; margin-bottom: 1.5rem;
  }
  .value-icon { font-size: 1.6rem; margin-bottom: 1rem; }
  .value-title { font-family: 'DM Serif Display', serif; font-size: 1.3rem; color: var(--white); margin-bottom: 0.8rem; }
  .value-body { font-size: 0.88rem; line-height: 1.7; color: rgba(245,242,236,0.5); font-weight: 300; }

  /* STORY TIMELINE */
  .story-section { background: var(--cream); }
  .story-heading {
    font-family: 'Bebas Neue', sans-serif; font-size: var(--fs-xl);
    line-height: 0.9; color: var(--black); margin-bottom: 5rem;
  }
  .story-heading em { font-style: italic; font-family: 'DM Serif Display', serif; color: var(--rust); }
  .timeline { display: flex; flex-direction: column; gap: 0; }
  .timeline-item {
    display: grid; grid-template-columns: 180px 1fr; gap: 4rem;
    padding: 3rem 0; border-bottom: 1px solid rgba(10,10,8,0.1);
    align-items: start;
  }
  .timeline-item:first-child { border-top: 1px solid rgba(10,10,8,0.1); }
  .timeline-year {
    font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem;
    color: rgba(10,10,8,0.12); line-height: 1; letter-spacing: 0.05em;
    transition: color 0.3s;
  }
  .timeline-item:hover .timeline-year { color: var(--gold); }
  .timeline-content { padding-top: 0.4rem; }
  .timeline-tag {
    font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--rust); font-weight: 500; margin-bottom: 0.6rem;
  }
  .timeline-title {
    font-family: 'DM Serif Display', serif; font-size: 1.6rem;
    color: var(--black); margin-bottom: 0.8rem; line-height: 1.2;
  }
  .timeline-body { font-size: 0.95rem; line-height: 1.75; color: rgba(10,10,8,0.6); font-weight: 300; max-width: 600px; }

  /* TEAM / TWO HEROES SECTION */
  .heroes-section { background: var(--white); }
  .heroes-heading {
    font-family: 'Bebas Neue', sans-serif; font-size: var(--fs-xl);
    line-height: 0.9; color: var(--black); margin-bottom: 1rem;
  }
  .heroes-heading em { font-style: italic; font-family: 'DM Serif Display', serif; color: var(--green); }
  .heroes-sub { font-size: 1rem; color: var(--muted); font-weight: 300; line-height: 1.7; max-width: 520px; margin-bottom: 4rem; }
  .heroes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-card {
    border-radius: 6px; padding: 3.5rem; position: relative; overflow: hidden;
    transition: transform 0.3s;
  }
  .hero-card:hover { transform: translateY(-4px); }
  .hero-card.owner { background: var(--green); color: var(--white); }
  .hero-card.renter { background: var(--black); color: var(--white); }
  .hero-card-deco {
    position: absolute; right: -1.5rem; bottom: -2rem;
    font-family: 'Bebas Neue', sans-serif; font-size: 12rem;
    opacity: 0.05; line-height: 0.9; pointer-events: none; user-select: none;
  }
  .hero-card-label {
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    font-weight: 500; margin-bottom: 1.5rem; opacity: 0.6;
  }
  .owner .hero-card-label { color: var(--gold); }
  .renter .hero-card-label { color: var(--gold-light); }
  .hero-card-title {
    font-family: 'DM Serif Display', serif; font-size: clamp(1.6rem, 3vw, 2.5rem);
    line-height: 1.15; margin-bottom: 1rem; color: var(--white);
  }
  .hero-card-problem {
    font-size: 0.88rem; line-height: 1.7; font-weight: 300; margin-bottom: 1.5rem;
    opacity: 0.6;
  }
  .hero-card-transform {
    display: flex; align-items: center; gap: 1rem;
    font-size: 0.82rem; font-weight: 500;
    border-top: 1px solid rgba(245,242,236,0.12); padding-top: 1.5rem;
  }
  .transform-from { opacity: 0.45; text-decoration: line-through; }
  .transform-arrow { color: var(--gold); font-size: 1.2rem; }
  .transform-to { color: var(--gold-light); }

  /* MANIFESTO BAND */
  .manifesto-band {
    background: var(--gold); padding: 5rem 3rem; text-align: center; overflow: hidden;
    position: relative;
  }
  .manifesto-band::before {
    content: '"'; position: absolute; left: 2rem; top: -2rem;
    font-family: 'DM Serif Display', serif; font-size: 20rem; color: rgba(10,10,8,0.06);
    line-height: 1; pointer-events: none;
  }
  .manifesto-text {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4.5vw, 4rem);
    line-height: 1.3; color: var(--black);
    max-width: 900px; margin: 0 auto;
    position: relative; z-index: 1;
    font-style: italic;
  }
  .manifesto-attr {
    margin-top: 2rem; font-size: 0.75rem; letter-spacing: 0.18em;
    text-transform: uppercase; color: rgba(10,10,8,0.5); font-weight: 500;
    position: relative; z-index: 1;
  }

  /* TECH ARCHITECTURE SECTION */
  .tech-section { background: var(--black); overflow: hidden; }
  .tech-heading {
    font-family: 'Bebas Neue', sans-serif; font-size: var(--fs-xl);
    line-height: 0.9; color: var(--white); margin-bottom: 1rem;
  }
  .tech-heading em { font-style: italic; font-family: 'DM Serif Display', serif; color: var(--gold); }
  .tech-sub { font-size: 1rem; color: var(--muted); font-weight: 300; line-height: 1.7; max-width: 500px; margin-bottom: 4rem; }
  .tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(245,242,236,0.06); }
  .tech-block {
    background: var(--black); padding: 2.5rem 2rem;
    transition: background 0.3s;
  }
  .tech-block:hover { background: rgba(245,242,236,0.03); }
  .tech-block-icon {
    width: 44px; height: 44px; border: 1px solid rgba(200,168,75,0.25);
    border-radius: 4px; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; margin-bottom: 1.5rem;
    transition: border-color 0.3s, background 0.3s;
  }
  .tech-block:hover .tech-block-icon { border-color: var(--gold); background: rgba(200,168,75,0.1); }
  .tech-block-title { font-weight: 500; font-size: 0.88rem; color: var(--white); margin-bottom: 0.5rem; }
  .tech-block-body { font-size: 0.78rem; line-height: 1.65; color: rgba(245,242,236,0.4); font-weight: 300; }
  .tech-tag {
    display: inline-block; font-size: 0.58rem; letter-spacing: 0.12em;
    text-transform: uppercase; background: rgba(200,168,75,0.12);
    color: var(--gold); border-radius: 20px; padding: 0.2rem 0.6rem;
    font-weight: 500; margin-top: 0.8rem;
  }

  /* CTA FINAL */
  .about-cta { background: var(--green); padding: 7rem 3rem; }
  .about-cta-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .about-cta-heading {
    font-family: 'Bebas Neue', sans-serif; font-size: var(--fs-xl);
    line-height: 0.9; color: var(--white); margin-bottom: 1.5rem;
  }
  .about-cta-heading em { font-style: italic; font-family: 'DM Serif Display', serif; color: var(--gold-light); }
  .about-cta-body { font-size: 1rem; color: rgba(245,242,236,0.6); line-height: 1.75; font-weight: 300; margin-bottom: 2.5rem; }
  .about-cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-gold { padding: 1rem 2.2rem; background: var(--gold); color: var(--black); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; border-radius: 2px; display: inline-block; transition: background 0.2s, transform 0.2s; }
  .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-ghost { padding: 1rem 2.2rem; border: 1px solid rgba(245,242,236,0.3); color: var(--white); font-weight: 500; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; border-radius: 2px; display: inline-block; transition: border-color 0.2s, transform 0.2s; }
  .btn-ghost:hover { border-color: var(--white); transform: translateY(-2px); }
  .about-cta-right { display: flex; flex-direction: column; gap: 1rem; }
  .cta-fact {
    background: rgba(245,242,236,0.06); border: 1px solid rgba(245,242,236,0.1);
    border-radius: 4px; padding: 1.5rem 2rem;
    display: flex; gap: 1.5rem; align-items: center;
    transition: background 0.3s, border-color 0.3s;
  }
  .cta-fact:hover { background: rgba(245,242,236,0.1); border-color: rgba(200,168,75,0.3); }
  .cta-fact-num {
    font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem;
    color: var(--gold); letter-spacing: 0.05em; line-height: 1; flex-shrink: 0;
  }
  .cta-fact-label { font-size: 0.85rem; color: rgba(245,242,236,0.65); font-weight: 300; line-height: 1.5; }

  /* FOOTER */
  footer { background: var(--black); border-top: 1px solid rgba(245,242,236,0.08); padding: 4rem 3rem 2.5rem; }
  .footer-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
  .footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; letter-spacing: 0.15em; color: var(--white); margin-bottom: 1rem; display: block; text-decoration: none; }
  .footer-logo span { color: var(--gold); }
  .footer-tagline { font-size: 0.85rem; color: var(--muted); line-height: 1.6; font-weight: 300; max-width: 260px; margin-bottom: 1.5rem; }
  .footer-social { display: flex; gap: 0.75rem; }
  .footer-social a { width: 34px; height: 34px; border: 1px solid rgba(245,242,236,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--muted); text-decoration: none; font-size: 0.75rem; transition: border-color 0.2s, color 0.2s; }
  .footer-social a:hover { border-color: var(--gold); color: var(--gold); }
  .footer-col-title { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin-bottom: 1.3rem; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
  .footer-col ul a { font-size: 0.85rem; color: rgba(245,242,236,0.55); text-decoration: none; font-weight: 300; transition: color 0.2s; }
  .footer-col ul a:hover { color: var(--white); }
  .footer-bottom { max-width: 1400px; margin: 0 auto; border-top: 1px solid rgba(245,242,236,0.08); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; }
  .footer-copy { font-size: 0.75rem; color: rgba(245,242,236,0.3); font-weight: 300; }
  .footer-legal { display: flex; gap: 2rem; }
  .footer-legal a { font-size: 0.75rem; color: rgba(245,242,236,0.3); text-decoration: none; transition: color 0.2s; }
  .footer-legal a:hover { color: var(--white); }

  @media (max-width: 900px) {
    nav ul { display: none; } nav { padding: 1.2rem 1.5rem; }
    .why-inner, .heroes-grid, .tech-grid, .about-cta-inner, .footer-inner { grid-template-columns: 1fr; }
    .why-left { position: static; }
    .tech-grid { grid-template-columns: 1fr 1fr; }
    .hero { padding: 0 1.5rem 4rem; min-height: 90vh; }
    .section-pad { padding: 5rem 1.5rem; }
    .timeline-item { grid-template-columns: 100px 1fr; gap: 2rem; }
    .values-grid { grid-template-columns: 1fr 1fr; }
  }
