    :root {
      --sky: #16c2f3;
      --blue: #1677ff;
      --navy: #133b6c;
      --teal: #1ecfd0;
      --gold: #ffb703;
      --orange: #ff7a00;
      --cream: #fff7e8;
      --card: rgba(255,255,255,.84);
      --shadow: 0 18px 40px rgba(19, 59, 108, 0.14);
      --border: rgba(19, 59, 108, 0.12);
      --text: #133b6c;
      --muted: #4e6a8d;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(30, 207, 208, 0.20), transparent 28%),
        radial-gradient(circle at top right, rgba(255, 183, 3, 0.22), transparent 24%),
        linear-gradient(180deg, #effcff 0%, #f7fbff 48%, #fffaf1 100%);
      min-height: 100vh;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(1160px, calc(100% - 32px));
      margin: 0 auto;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(10px);
      background: rgba(255,255,255,.76);
      border-bottom: 1px solid rgba(19, 59, 108, 0.08);
    }

    .topbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 12px 0;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .brand-mark {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      background: linear-gradient(135deg, #fff 0%, #f4fbff 100%);
      box-shadow: var(--shadow);
      border: 1px solid rgba(19, 59, 108, .08);
      padding: 4px;
      object-fit: contain;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }

    .brand-title {
      font-size: 1.35rem;
      font-weight: 800;
      letter-spacing: -0.03em;
    }

    .brand-title .wander { color: var(--sky); }
    .brand-title .button { color: var(--orange); }

    .brand-sub {
      color: var(--muted);
      font-size: 0.8rem;
      margin-top: 4px;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    nav a {
      padding: 10px 14px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--navy);
      transition: .2s ease;
    }

    nav a:hover {
      background: rgba(22, 119, 255, 0.08);
      transform: translateY(-1px);
    }

    .hero {
      padding: 34px 0 22px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.12fr .88fr;
      gap: 26px;
      align-items: center;
    }

    .hero-copy {
      position: relative;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,.8);
      border: 1px solid rgba(19, 59, 108, .08);
      box-shadow: 0 10px 24px rgba(19,59,108,.07);
      color: var(--navy);
      font-weight: 800;
      font-size: 0.9rem;
    }

    h1 {
      font-size: clamp(2.5rem, 6vw, 4.7rem);
      line-height: 0.95;
      letter-spacing: -0.05em;
      margin: 18px 0 18px;
      max-width: 9.5ch;
    }

    .headline-wander { color: var(--sky); }
    .headline-fun { color: var(--orange); }

    .hero p {
      font-size: 1.08rem;
      line-height: 1.6;
      color: var(--muted);
      max-width: 58ch;
      margin: 0 0 24px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
    }

    .cta-button,
    .ghost-button {
      border: 0;
      cursor: pointer;
      font-weight: 800;
      font-size: 1rem;
      border-radius: 999px;
      transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
    }

    .cta-button {
      padding: 18px 28px;
      color: white;
      background: linear-gradient(135deg, var(--sky) 0%, var(--blue) 42%, var(--orange) 100%);
      box-shadow: 0 16px 34px rgba(22, 119, 255, 0.26);
    }

    .cta-button:hover,
    .ghost-button:hover,
    .category-card:hover,
    .trend-card:hover,
    .feed-card:hover {
      transform: translateY(-2px);
    }

    .ghost-button {
      padding: 16px 22px;
      background: rgba(255,255,255,.84);
      color: var(--navy);
      border: 1px solid rgba(19,59,108,.10);
      box-shadow: 0 10px 24px rgba(19,59,108,.08);
    }

    .hero-notes {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 18px;
    }

    .hero-notes span {
      background: rgba(255,255,255,.72);
      color: var(--navy);
      padding: 10px 12px;
      border-radius: 999px;
      font-size: 0.92rem;
      font-weight: 700;
      border: 1px solid rgba(19,59,108,.08);
    }

    .hero-panel {
      background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.72));
      border: 1px solid rgba(19,59,108,.08);
      border-radius: 30px;
      padding: 22px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .logo-wrap {
      border-radius: 28px;
      background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(236,250,255,.92));
      border: 1px solid rgba(19,59,108,.08);
      padding: 22px;
      min-height: 380px;
      display: grid;
      place-items: center;
      position: relative;
    }

    .logo-wrap::before,
    .logo-wrap::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(5px);
      opacity: .55;
    }

    .logo-wrap::before {
      width: 180px;
      height: 180px;
      background: rgba(22,194,243,.16);
      top: -24px;
      right: -14px;
    }

    .logo-wrap::after {
      width: 160px;
      height: 160px;
      background: rgba(255,183,3,.18);
      left: -18px;
      bottom: -20px;
    }

    .hero-logo {
      width: min(100%, 420px);
      position: relative;
      z-index: 1;
      border-radius: 18px;
    }

    .panel-caption {
      margin-top: 14px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .mini-stat {
      background: rgba(255,255,255,.84);
      border: 1px solid rgba(19,59,108,.08);
      border-radius: 20px;
      padding: 12px;
      text-align: center;
    }

    .mini-stat strong {
      display: block;
      font-size: 1.1rem;
      color: var(--navy);
      margin-bottom: 4px;
    }

    .mini-stat span {
      font-size: .86rem;
      color: var(--muted);
      font-weight: 700;
    }

    .section {
      padding: 16px 0 24px;
    }

    .section-title-row {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 16px;
      margin-bottom: 16px;
    }

    .section-title-row h2 {
      margin: 0;
      font-size: clamp(1.55rem, 3.4vw, 2.4rem);
      letter-spacing: -0.04em;
    }

    .section-title-row p {
      margin: 0;
      color: var(--muted);
      max-width: 56ch;
      line-height: 1.55;
    }

    .result-shell {
      display: grid;
      grid-template-columns: 1fr 280px;
      gap: 18px;
      align-items: stretch;
    }

    .result-card {
      background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,249,239,.92));
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      border-radius: 30px;
      padding: 26px;
      min-height: 260px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
    }

    .result-card::after {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      right: -40px;
      bottom: -40px;
      border-radius: 50%;
      background: rgba(22,194,243,.14);
    }

    .result-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      padding: 10px 14px;
      border-radius: 999px;
      font-weight: 800;
      background: rgba(22,119,255,.08);
      color: var(--navy);
      border: 1px solid rgba(22,119,255,.12);
    }

    .result-title {
      font-size: clamp(1.6rem, 4vw, 2.5rem);
      letter-spacing: -0.04em;
      margin: 16px 0 10px;
      max-width: 18ch;
      position: relative;
      z-index: 1;
    }

    .result-body {
      color: var(--muted);
      font-size: 1.08rem;
      line-height: 1.7;
      max-width: 58ch;
      position: relative;
      z-index: 1;
    }

    .result-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 18px;
      position: relative;
      z-index: 1;
    }

    .side-panel {
      background: rgba(255,255,255,.82);
      border: 1px solid var(--border);
      border-radius: 28px;
      box-shadow: var(--shadow);
      padding: 20px;
    }

    .side-panel h3 {
      margin: 0 0 12px;
      font-size: 1.05rem;
    }

    .quick-links {
      display: grid;
      gap: 10px;
    }

    .quick-links button,
    .quick-links a {
      display: block;
      width: 100%;
      text-align: left;
      background: linear-gradient(180deg, #fff, #f7fbff);
      border: 1px solid rgba(19,59,108,.10);
      border-radius: 18px;
      padding: 13px 14px;
      color: var(--navy);
      font-weight: 800;
      cursor: pointer;
      box-shadow: 0 8px 18px rgba(19,59,108,.06);
    }

    .trend-grid,
    .category-grid,
    .feed-grid,
    .daily-grid {
      display: grid;
      gap: 16px;
    }

    .trend-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    .category-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    .daily-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .feed-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .trend-card,
    .category-card,
    .feed-card,
    .daily-card {
      background: rgba(255,255,255,.84);
      border: 1px solid var(--border);
      border-radius: 26px;
      padding: 18px;
      box-shadow: var(--shadow);
      transition: transform .18s ease, box-shadow .18s ease;
    }

    .trend-card strong,
    .category-card strong,
    .feed-card strong,
    .daily-card strong {
      display: block;
      font-size: 1.05rem;
      margin-bottom: 8px;
      color: var(--navy);
      letter-spacing: -0.02em;
    }

    .trend-card p,
    .category-card p,
    .feed-card p,
    .daily-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.55;
      font-size: 0.96rem;
    }

    .pill {
      display: inline-block;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,183,3,.16);
      color: var(--navy);
      font-size: .82rem;
      font-weight: 800;
      margin-bottom: 10px;
    }

    .category-card {
      background: linear-gradient(180deg, rgba(255,255,255,.90), rgba(247,251,255,.88));
    }

    .category-card:nth-child(2) .pill { background: rgba(22,194,243,.18); }
    .category-card:nth-child(3) .pill { background: rgba(255,122,0,.16); }
    .category-card:nth-child(4) .pill { background: rgba(22,119,255,.12); }

    .daily-card {
      background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,247,232,.92));
    }

    .about-blurb {
      background: rgba(255,255,255,.8);
      border: 1px solid var(--border);
      border-radius: 28px;
      padding: 24px;
      box-shadow: var(--shadow);
      color: var(--muted);
      line-height: 1.7;
    }

    footer {
      padding: 20px 0 50px;
    }

    .footer-shell {
      background: rgba(255,255,255,.76);
      border: 1px solid var(--border);
      border-radius: 28px;
      box-shadow: var(--shadow);
      padding: 18px 20px;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      align-items: center;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      color: var(--muted);
      font-weight: 700;
    }

    .footer-note {
      color: var(--muted);
      font-size: .94rem;
      line-height: 1.5;
    }

    .skip-link {
      position: absolute;
      left: -9999px;
      top: auto;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }

    .skip-link:focus {
      left: 12px;
      top: 12px;
      width: auto;
      height: auto;
      z-index: 999;
      background: #fff;
      padding: 10px 14px;
      border-radius: 10px;
    }

    @media (max-width: 1080px) {
      .hero-grid,
      .result-shell,
      .trend-grid,
      .category-grid,
      .daily-grid,
      .feed-grid {
        grid-template-columns: 1fr 1fr;
      }

      .hero-grid,
      .result-shell {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 760px) {
      .topbar-inner,
      .section-title-row,
      .footer-shell {
        flex-direction: column;
        align-items: stretch;
      }

      nav {
        justify-content: flex-start;
      }

      .trend-grid,
      .category-grid,
      .daily-grid,
      .feed-grid,
      .panel-caption {
        grid-template-columns: 1fr;
      }

      .hero {
        padding-top: 20px;
      }

      .logo-wrap {
        min-height: 240px;
      }

      .result-card,
      .side-panel,
      .trend-card,
      .category-card,
      .feed-card,
      .daily-card,
      .about-blurb,
      .hero-panel {
        border-radius: 22px;
      }

      .container {
        width: min(100% - 20px, 1160px);
      }
    }
