    :root {
      --bg-deep: #14110f;
      --bg-mid: #2a231f;
      --surface: rgba(255, 252, 248, 0.78);
      --surface-solid: #fffcf8;
      --text: #1c1714;
      --muted: #5a524c;
      --muted-2: #8a817a;
      --accent: #e07a5f;
      --accent-deep: #c45d42;
      --leaf: #3d6b52;
      --ring: rgba(28, 23, 20, 0.08);
      --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
      --font-display: "Fraunces", Georgia, serif;
      --radius-lg: 22px;
      --radius-md: 14px;
      --shadow-soft: 0 24px 60px rgba(20, 17, 15, 0.12);
      --shadow-card: 0 4px 24px rgba(20, 17, 15, 0.06);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: var(--font-sans);
      color: var(--text);
      line-height: 1.65;
      min-height: 100vh;
      background:
        radial-gradient(120% 80% at 85% -10%, rgba(224, 122, 95, 0.22) 0%, transparent 55%),
        radial-gradient(90% 60% at 0% 20%, rgba(61, 107, 82, 0.12) 0%, transparent 45%),
        radial-gradient(100% 100% at 50% 100%, rgba(255, 235, 220, 0.5) 0%, transparent 50%),
        linear-gradient(165deg, #faf6f1 0%, #f3ebe3 40%, #efe8df 100%);
      -webkit-font-smoothing: antialiased;
    }

    a:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
    }

    .wrap {
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 1.25rem 4rem;
    }

    /* Top bar */
    .topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem 0 0.5rem;
      gap: 1rem;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      color: inherit;
    }
    .brand img {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      box-shadow: 0 8px 28px rgba(20, 17, 15, 0.1);
      object-fit: contain;
    }
    .brand span {
      font-weight: 700;
      font-size: 1.05rem;
      letter-spacing: -0.03em;
    }
    .pill {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent-deep);
      background: rgba(224, 122, 95, 0.12);
      border: 1px solid rgba(224, 122, 95, 0.2);
      padding: 0.45rem 0.75rem;
      border-radius: 999px;
    }

    /* Hero */
    .hero {
      padding: 2.5rem 0 3.5rem;
      display: grid;
      gap: 2rem;
      align-items: center;
    }
    @media (min-width: 880px) {
      .hero {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        padding: 3rem 0 4rem;
      }
    }

    .hero-copy {
      order: 2;
    }
    @media (min-width: 880px) {
      .hero-copy { order: 0; }
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--muted);
      margin: 0 0 1rem;
    }
    .eyebrow::before {
      content: "";
      width: 28px;
      height: 2px;
      border-radius: 2px;
      background: linear-gradient(90deg, var(--accent), var(--leaf));
    }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 5vw, 2.85rem);
      font-weight: 650;
      font-optical-sizing: auto;
      line-height: 1.12;
      letter-spacing: -0.03em;
      margin: 0 0 1.25rem;
      color: var(--text);
    }
    .hero h1 em {
      font-style: italic;
      color: var(--accent-deep);
    }

    .hero-lead {
      font-size: 1.0625rem;
      color: var(--muted);
      max-width: 34rem;
      margin: 0;
    }

    /* Visual panel */
    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      order: 1;
    }
    @media (min-width: 880px) {
      .hero-visual { order: 1; }
    }

    .blob {
      position: absolute;
      width: min(420px, 90vw);
      height: min(420px, 90vw);
      border-radius: 50%;
      background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.85) 0%, transparent 55%),
        radial-gradient(circle at 70% 60%, rgba(224, 122, 95, 0.2) 0%, transparent 50%),
        conic-gradient(from 210deg at 50% 50%, rgba(224, 122, 95, 0.15), rgba(61, 107, 82, 0.12), rgba(255, 245, 236, 0.8), rgba(224, 122, 95, 0.15));
      filter: blur(0);
      z-index: 0;
    }

    .hero-logo {
      position: relative;
      z-index: 1;
      width: min(320px, 78vw);
      height: auto;
      filter: drop-shadow(0 28px 48px rgba(20, 17, 15, 0.14));
    }

    .float-card {
      position: absolute;
      z-index: 2;
      background: var(--surface);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.6);
      border-radius: var(--radius-md);
      padding: 0.65rem 0.85rem;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--text);
      box-shadow: var(--shadow-soft);
      max-width: 180px;
    }
    .float-card small {
      display: block;
      font-weight: 500;
      color: var(--muted);
      font-size: 0.6875rem;
      margin-top: 0.2rem;
    }
    .float-a {
      top: 6%;
      right: 4%;
      animation: float 5s ease-in-out infinite;
    }
    .float-b {
      bottom: 10%;
      left: 0;
      animation: float 6s ease-in-out infinite 0.5s;
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }
    @media (max-width: 520px) {
      .float-card { display: none; }
    }

    /* Bento features */
    section.features {
      margin-top: 0.5rem;
    }
    .section-head {
      max-width: 36rem;
      margin-bottom: 1.75rem;
    }
    .section-head h2 {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 3vw, 1.85rem);
      font-weight: 650;
      letter-spacing: -0.02em;
      margin: 0 0 0.5rem;
    }
    .section-head p {
      margin: 0;
      color: var(--muted);
      font-size: 1rem;
    }

    .bento {
      display: grid;
      gap: 1rem;
      grid-template-columns: 1fr;
    }
    /* Tablet: two rows of four — core row includes Pinterest, link, photo, AI */
    @media (min-width: 768px) and (max-width: 959px) {
      .bento {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: minmax(80px, auto);
      }
    }
    @media (min-width: 960px) {
      .bento {
        grid-template-columns: repeat(12, 1fr);
        grid-auto-rows: minmax(100px, auto);
      }
    }

    .feat {
      background: var(--surface-solid);
      border-radius: var(--radius-lg);
      padding: 1.35rem 1.35rem 1.45rem;
      border: 1px solid var(--ring);
      box-shadow: var(--shadow-card);
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }
    .feat:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-soft);
      border-color: rgba(224, 122, 95, 0.18);
    }
    .feat .icon {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.35rem;
      margin-bottom: 1rem;
      background: linear-gradient(145deg, rgba(224, 122, 95, 0.12), rgba(61, 107, 82, 0.08));
    }
    .feat h3 {
      font-size: 1.0625rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin: 0 0 0.5rem;
      color: var(--text);
    }
    .feat p {
      margin: 0;
      font-size: 0.9375rem;
      color: var(--muted);
      line-height: 1.6;
    }
    .feat p + p {
      margin-top: 0.85rem;
    }

    .feat-pin,
    .feat-link,
    .feat-scan,
    .feat-ai {
      position: relative;
      overflow: hidden;
    }
    /* Row 1: four core pillars (import methods + AI). Row 2: plan & organize toolkit */
    @media (min-width: 960px) {
      .bento article:nth-child(1) {
        grid-column: 1 / span 3;
        grid-row: 1;
      }
      .bento article:nth-child(2) {
        grid-column: 4 / span 3;
        grid-row: 1;
      }
      .bento article:nth-child(3) {
        grid-column: 7 / span 3;
        grid-row: 1;
      }
      .bento article:nth-child(4) {
        grid-column: 10 / span 3;
        grid-row: 1;
      }
      .bento article:nth-child(5) {
        grid-column: 1 / span 3;
        grid-row: 2;
      }
      .bento article:nth-child(6) {
        grid-column: 4 / span 3;
        grid-row: 2;
      }
      .bento article:nth-child(7) {
        grid-column: 7 / span 3;
        grid-row: 2;
      }
      .bento article:nth-child(8) {
        grid-column: 10 / span 3;
        grid-row: 2;
      }
      .bento article:nth-child(-n + 4) {
        min-height: 100%;
        display: flex;
        flex-direction: column;
      }
    }
    .feat-ai::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(125deg, rgba(224, 122, 95, 0.09) 0%, rgba(61, 107, 82, 0.07) 45%, transparent 70%);
      pointer-events: none;
    }
    .feat-ai .icon {
      background: linear-gradient(145deg, rgba(61, 107, 82, 0.2), rgba(224, 122, 95, 0.12));
    }
    .feat-ai > * {
      position: relative;
      z-index: 1;
    }
    .feat-pin::after {
      content: "";
      position: absolute;
      inset: -40% -20% auto auto;
      width: 240px;
      height: 240px;
      background: radial-gradient(circle, rgba(224, 122, 95, 0.2) 0%, transparent 70%);
      pointer-events: none;
    }
    .feat-link::after {
      content: "";
      position: absolute;
      inset: -40% auto auto -20%;
      width: 240px;
      height: 240px;
      background: radial-gradient(circle, rgba(61, 107, 82, 0.16) 0%, transparent 70%);
      pointer-events: none;
    }
    .feat-scan::after {
      content: "";
      position: absolute;
      inset: auto -15% -35% -15%;
      height: 140px;
      background: radial-gradient(ellipse 80% 100% at 50% 100%, rgba(224, 122, 95, 0.14) 0%, transparent 65%);
      pointer-events: none;
    }
    .feat-pin .icon {
      background: linear-gradient(145deg, rgba(224, 122, 95, 0.22), rgba(196, 93, 66, 0.12));
    }
    .feat-link .icon {
      background: linear-gradient(145deg, rgba(61, 107, 82, 0.2), rgba(224, 122, 95, 0.1));
    }
    .feat-scan .icon {
      background: linear-gradient(145deg, rgba(224, 122, 95, 0.2), rgba(141, 110, 90, 0.12));
    }
    .feat-scan > * {
      position: relative;
      z-index: 1;
    }
    .feat-ai::after {
      content: "";
      position: absolute;
      inset: -30% -25% auto auto;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(196, 93, 66, 0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .feat-pin .tag,
    .feat-link .tag,
    .feat-scan .tag,
    .feat-ai .tag {
      display: inline-block;
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--accent-deep);
      background: rgba(224, 122, 95, 0.12);
      padding: 0.35rem 0.55rem;
      border-radius: 8px;
      margin-bottom: 0.75rem;
    }
    .feat-link .tag {
      color: var(--leaf);
      background: rgba(61, 107, 82, 0.1);
    }
    .feat-ai .tag {
      color: #7c4a2a;
      background: linear-gradient(135deg, rgba(255, 220, 180, 0.5), rgba(224, 122, 95, 0.14));
    }
    @media (min-width: 960px) {
      .feat-pin h3,
      .feat-link h3,
      .feat-scan h3,
      .feat-ai h3 {
        font-size: 1.1rem;
        max-width: none;
        line-height: 1.25;
      }
      .feat-pin p,
      .feat-link p,
      .feat-scan p,
      .feat-ai p {
        font-size: 0.9375rem;
        max-width: none;
      }
    }

    footer {
      margin-top: 4rem;
      padding: 2rem 0 2.5rem;
      border-top: 1px solid rgba(28, 23, 20, 0.08);
      text-align: center;
    }
    footer nav {
      margin-bottom: 1rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.35rem 1.1rem;
    }
    footer a {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.15s ease;
    }
    footer a:hover { color: var(--accent-deep); }
    footer .copy {
      font-size: 0.8125rem;
      color: var(--muted-2);
      margin: 0;
    }
    footer .current {
      color: var(--text);
      font-weight: 600;
      font-size: 0.875rem;
    }
    footer .footer-home {
      margin: 0 0 0.65rem;
    }
    footer .footer-home a {
      font-size: 0.8125rem;
      font-weight: 500;
      color: var(--muted);
      text-decoration: none;
    }
    footer .footer-home a:hover {
      color: var(--accent-deep);
    }

    /* Legal / policy pages */
    .wrap--legal {
      padding-bottom: 2rem;
    }
    main.legal {
      max-width: 42rem;
      margin: 0 auto;
      padding: 0.5rem 0 0;
      width: 100%;
    }
    main.legal h1 {
      font-family: var(--font-display);
      font-size: clamp(1.75rem, 4vw, 2.25rem);
      font-weight: 650;
      line-height: 1.2;
      letter-spacing: -0.02em;
      color: var(--accent-deep);
      margin: 0 0 0.5rem;
      text-align: center;
    }
    main.legal .last-updated {
      color: var(--muted);
      font-style: italic;
      font-size: 0.9375rem;
      margin: 0 0 1.25rem;
      text-align: center;
    }
    .doc {
      background: var(--surface-solid);
      border-radius: var(--radius-lg);
      padding: 1.5rem 1.35rem;
      border: 1px solid var(--ring);
      box-shadow: var(--shadow-card);
      text-align: left;
    }
    .doc h2 {
      font-family: var(--font-sans);
      font-size: 1.0625rem;
      font-weight: 700;
      color: var(--accent-deep);
      margin: 1.35rem 0 0.5rem;
    }
    .doc h2:first-of-type {
      margin-top: 0;
    }
    .doc p,
    .doc li {
      color: var(--muted);
      font-size: 0.9375rem;
      line-height: 1.6;
    }
    .doc p {
      margin: 0.5rem 0 0;
    }
    .doc ul {
      margin: 0.5rem 0 0;
      padding-left: 1.25rem;
    }
    .doc li {
      margin-bottom: 0.35rem;
    }
    .doc strong {
      color: var(--text);
    }
    .doc a {
      color: var(--accent-deep);
      font-weight: 500;
      text-decoration: none;
    }
    .doc a:hover {
      text-decoration: underline;
    }
