:root {
      --bg: #f2eadf;
      --paper: rgba(255, 250, 243, 0.82);
      --ink: #111111;
      --muted: #5f5a52;
      --line: rgba(17, 17, 17, 0.1);
      --accent: #bb4d22;
      --accent-deep: #8e3414;
      --panel: rgba(255, 255, 255, 0.56);
      --shadow: 0 28px 80px rgba(36, 28, 20, 0.14);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      color: var(--ink);
      background:
        radial-gradient(circle at 10% 10%, rgba(255, 216, 173, 0.78), transparent 28%),
        radial-gradient(circle at 90% 18%, rgba(176, 214, 205, 0.62), transparent 24%),
        linear-gradient(135deg, #f5ecdf 0%, #ebddca 38%, #e9ddcf 100%);
      font-family: "Trebuchet MS", "Segoe UI", sans-serif;
      position: relative;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(to right, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(17, 17, 17, 0.035) 1px, transparent 1px);
      background-size: 28px 28px;
      pointer-events: none;
      mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
    }

    .shell {
      width: min(1160px, calc(100% - 32px));
      margin: 24px auto;
      border: 1px solid var(--line);
      border-radius: 28px;
      background: var(--paper);
      backdrop-filter: blur(10px);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 18px 22px;
      border-bottom: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.38);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .brand-mark {
      width: 14px;
      height: 14px;
      border-radius: 999px;
      background: linear-gradient(135deg, #db6d3d, #823014);
      box-shadow: 0 0 0 7px rgba(187, 77, 34, 0.12);
      flex: none;
    }

    .brand-copy {
      min-width: 0;
    }

    .brand-copy strong {
      display: block;
      font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
      font-size: 20px;
      letter-spacing: 0.02em;
      font-weight: 700;
    }

    .brand-copy span,
    .badge,
    .eyebrow,
    .mini-label {
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 12px;
    }

    .brand-copy span {
      color: var(--muted);
    }

    .status {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.54);
      font-size: 13px;
      color: var(--muted);
    }

    .status::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #1d8f57;
      box-shadow: 0 0 0 6px rgba(29, 143, 87, 0.14);
    }

    .hero {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 24px;
      padding: 34px 22px 18px;
    }

    .hero-copy {
      padding: 10px 6px 10px 2px;
    }

    .eyebrow {
      display: inline-block;
      margin-bottom: 16px;
      color: var(--accent-deep);
      font-weight: 700;
    }

    h1 {
      margin: 0;
      max-width: 10ch;
      font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
      font-size: clamp(52px, 10vw, 104px);
      line-height: 0.92;
      letter-spacing: -0.04em;
      font-weight: 700;
    }

    .hero-copy p {
      max-width: 42rem;
      margin: 24px 0 0;
      font-size: 18px;
      line-height: 1.85;
      color: var(--muted);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 12px 18px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.76);
      color: var(--ink);
      text-decoration: none;
      transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
    }

    .button:hover {
      transform: translateY(-1px);
      border-color: rgba(17, 17, 17, 0.26);
      background: rgba(255, 255, 255, 0.92);
    }

    .button.primary {
      background: linear-gradient(135deg, var(--accent), var(--accent-deep));
      color: #fff8f1;
      border-color: transparent;
    }

    .hero-panel {
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 18px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.34)),
        linear-gradient(135deg, rgba(255, 236, 216, 0.9), rgba(242, 247, 244, 0.76));
      position: relative;
      overflow: hidden;
    }

    .hero-panel::after {
      content: "";
      position: absolute;
      right: -30px;
      bottom: -28px;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(187, 77, 34, 0.18), rgba(187, 77, 34, 0));
    }

    .terminal {
      display: grid;
      gap: 10px;
      border: 1px solid rgba(17, 17, 17, 0.1);
      border-radius: 18px;
      padding: 16px;
      background: rgba(20, 20, 20, 0.95);
      color: #f4efe8;
      font-family: Consolas, "SFMono-Regular", monospace;
      font-size: 14px;
      min-height: 220px;
      position: relative;
      z-index: 1;
    }

    .terminal .dots {
      display: flex;
      gap: 8px;
    }

    .terminal .dots span {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.2);
    }

    .terminal .dots span:nth-child(1) { background: #ff8b62; }
    .terminal .dots span:nth-child(2) { background: #ffd05a; }
    .terminal .dots span:nth-child(3) { background: #67d18c; }

    .line {
      color: #cfd8cf;
      line-height: 1.6;
    }

    .line b {
      color: #fef6dc;
      font-weight: 700;
    }

    .line .ok {
      color: #6be4a4;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      padding: 0 22px 22px;
    }

    .card {
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: 20px;
      background: var(--panel);
      min-height: 220px;
    }

    .mini-label {
      color: var(--accent-deep);
      font-weight: 700;
    }

    .card h2 {
      margin: 10px 0 14px;
      font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
      font-size: 28px;
      line-height: 1.1;
    }

    .card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.75;
      font-size: 16px;
    }

    .pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 16px;
    }

    .pill {
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.7);
      color: var(--muted);
      font-size: 13px;
    }

    .timeline {
      padding: 0 22px 22px;
    }

    .timeline-box {
      display: grid;
      grid-template-columns: 240px 1fr;
      gap: 16px;
      border: 1px solid var(--line);
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.46);
      overflow: hidden;
    }

    .timeline-title {
      padding: 22px;
      background: rgba(255, 255, 255, 0.34);
      border-right: 1px solid var(--line);
    }

    .timeline-title h3 {
      margin: 10px 0 0;
      font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
      font-size: 34px;
      line-height: 1;
    }

    .timeline-list {
      display: grid;
      gap: 0;
    }

    .timeline-item {
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 16px;
      padding: 18px 22px;
      border-bottom: 1px solid var(--line);
    }

    .timeline-item:last-child {
      border-bottom: 0;
    }

    .timeline-item strong {
      font-size: 13px;
      color: var(--accent-deep);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .timeline-item span {
      color: var(--muted);
      line-height: 1.7;
    }

    footer {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 12px;
      padding: 18px 22px 24px;
      color: var(--muted);
      font-size: 14px;
    }

    footer a {
      color: inherit;
      text-decoration: none;
      border-bottom: 1px solid rgba(17, 17, 17, 0.18);
    }

    @media (max-width: 900px) {
      .hero,
      .grid,
      .timeline-box,
      .timeline-item {
        grid-template-columns: 1fr;
      }

      .timeline-title {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      h1 {
        max-width: none;
      }
    }

    @media (max-width: 640px) {
      .shell {
        width: min(100% - 12px, 100%);
        margin: 6px auto;
        border-radius: 20px;
      }

      .topbar,
      .hero,
      .grid,
      .timeline,
      footer {
        padding-left: 16px;
        padding-right: 16px;
      }

      .topbar {
        align-items: flex-start;
        flex-direction: column;
      }
    }
