   :root {
      --bg: #f6f1ea;
      --text: #241f24;
      --muted: #6f6872;
      --purple: #6c3ca5;
      --purple-soft: rgba(108, 60, 165, 0.1);
      --line: rgba(36, 31, 36, 0.1);
      --card: rgba(255, 255, 255, 0.58);
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      min-height: 100vh;
      background:
        radial-gradient(circle at top left, rgba(108, 60, 165, 0.12), transparent 30%),
        radial-gradient(circle at bottom right, rgba(108, 60, 165, 0.08), transparent 28%),
        var(--bg);
      color: var(--text);
      font-family: Inter, sans-serif;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding: 104px 28px 28px;
    }

    .header-shell {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 20px 52px 18px;
      border-bottom: 1px solid var(--line);
      background: rgba(246, 241, 234, 0.94);
      backdrop-filter: blur(18px);
      box-shadow: 0 14px 40px rgba(36,31,36,0.06);
    }

    .header-cluster {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .header-name {
      font-weight: 800;
      letter-spacing: -0.04em;
      white-space: nowrap;
    }

    .header-name span {
      color: var(--purple);
    }

    .header-status {
      /*color: var(--purple);
      text-transform: uppercase;*/
      letter-spacing: 0.14em;
      font-size: 0.68rem;
      font-weight: 800;
      opacity: 60%;
      white-space: nowrap;
    }

    .page {
      width: min(1120px, 100%);
      min-height: auto;
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      align-items: start;
      gap: 56px;
    }

    .copy {
      margin-top: 0;
      padding-top: 40px;
    }

    .eyebrow {
      display: inline-block;
      color: var(--purple);
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-size: 0.72rem;
      font-weight: 800;
      margin-bottom: 22px;
    }

    h1 {
      margin: 0 0 28px;
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 0.88;
      letter-spacing: 0.01em;
      font-weight: 600;
      max-width: 820px;
    }

    .intro {
      margin: 0 0 36px;
      max-width: 680px;
      color: var(--muted);
      line-height: 1.9;
      font-size: 1.08rem;
    }

    .actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      padding: 14px 20px;
      font-weight: 700;
      text-decoration: none;
      transition: 0.2s ease;
    }

    .btn-primary {
      background: var(--purple);
      color: #fff;
      box-shadow: 0 18px 40px rgba(108, 60, 165, 0.2);
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .visual {
      position: relative;
      min-height: 860px;
    }

    .shape {
      position: absolute;
      border: 1px solid var(--line);
      background: var(--card);
      backdrop-filter: blur(14px);
      box-shadow: 0 30px 80px rgba(36,31,36,0.08);
      display: flex;
      flex-direction: column;
      justify-content: center;
      overflow: hidden;
    }

    .shape-main {
      width: 420px;
      height: 460px;
      border-radius: 42% 58% 61% 39% / 44% 37% 63% 56%;
      top: 40px;
      right: 30px;
      padding: 64px;
      z-index: 1;
    }

    .shape-main h2 {
      margin: 0 0 18px;
      font-family: "Cormorant Garamond", serif;
      font-size: 2.5rem;
      line-height: 0.94;
      letter-spacing: -0.06em;
      font-weight: 600;
    }

    .shape-main p {
      margin: 0;
      color: var(--muted);
      line-height: 1.58;
      font-size: 0.94rem;
    }

    .shape-small {
      width: 260px;
      height: 260px;
      border-radius: 63% 37% 54% 46% / 49% 59% 41% 51%;
      left: -20px;
      bottom: 140px;
      padding: 36px;
      text-align: center;
      background: linear-gradient(135deg, rgba(108,60,165,0.14), rgba(255,255,255,0.34));
      z-index: 2;
    }

    .shape-small h3 {
      margin: 0 0 10px;
      font-family: "Cormorant Garamond", serif;
      font-size: 1.35rem;
      line-height: 1;
      letter-spacing: -0.04em;
    }

    .shape-small p {
      margin: 0;
      color: var(--muted);
      font-size: 0.78rem;
      line-height: 1.45;
    }

    .pill {
      position: absolute;
      left: 140px;
      top: 560px;
      padding: 16px 20px;
      border-radius: 999px;
      background: rgba(255,255,255,0.68);
      border: 1px solid var(--line);
      color: var(--purple);
      font-weight: 800;
      box-shadow: 0 20px 50px rgba(36,31,36,0.06);
    }

    .site-footer {
      position: relative;
      z-index: 30;
      width: min(1120px, 100%);
      margin-top: -90px;
      padding: 28px 0 10px;
      border-top: 1px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      color: var(--muted);
      font-size: 0.88rem;
    }

    .footer-left {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .footer-name {
      font-weight: 700;
      color: var(--text);
      letter-spacing: -0.03em;
    }

    .footer-divider {
      width: 4px;
      height: 4px;
      border-radius: 999px;
      background: rgba(36,31,36,0.2);
    }

    .footer-right {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .footer-link {
      position: relative;
      z-index: 31;
      display: inline-block;
      color: var(--muted);
      text-decoration: underline;
      text-underline-offset: 3px;
      cursor: pointer;
      transition: 0.2s ease;
    }

    .footer-link:hover {
      color: var(--purple);
    }

    @media (max-width: 920px) {
      body {
        align-items: center;
        padding-top: 96px;
      }

      .page {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .copy {
        padding-top: 12px;
      }

      .visual {
        width: 100%;
        min-height: 650px;
      }

      .shape-main {
        top: 0;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
      }

      .shape-small {
        top: 390px;
        bottom: auto;
        left: 6%;
      }
    }

    @media (max-width: 620px) {
      body {
        padding: 88px 22px 22px;
      }

      .header-shell {
        width: 100%;
        top: 0;
        padding: 14px 16px;
        gap: 12px;
      }

      .header-cluster {
        gap: 8px;
      }

      .header-name {
        font-size: 0.92rem;
      }

      .header-status {
        font-size: 0.54rem;
        letter-spacing: 0.09em;
      }

      .header-shell .btn {
        padding: 10px 13px;
        font-size: 0.8rem;
      }

      h1 {
        font-size: clamp(2rem, 10vw, 3rem);
        line-height: 0.96;
      }

      .intro {
        font-size: 1rem;
        line-height: 1.75;
        margin-bottom: 26px;
      }

      .copy {
        padding-top: 10px;
      }

      .visual {
        min-height: 610px;
      }

      .shape-main {
        width: min(335px, 92vw);
        height: 410px;
        top: 0;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        padding: 44px;
      }

      .shape-main h2 {
        font-size: 1.95rem;
        line-height: 0.98;
        margin-bottom: 14px;
      }

      .shape-small {
        width: 245px;
        height: 245px;
        top: 350px;
        bottom: auto;
        left: 4px;
        padding: 34px;
      }

      .shape-small h3 {
        font-size: 1.25rem;
      }

      .shape-small p {
        font-size: 0.74rem;
        line-height: 1.42;
      }

      .pill {
        left: 120px;
        top: 520px;
      }

      .site-footer {
        margin-top: 32px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
      }

      .footer-right {
        gap: 14px;
      }
    }

/* Mobile shape correction */
@media (max-width: 768px) {
  .visual {
    min-height: 560px !important;
    margin-top: 10px;
  }

  .shape-main {
    width: min(320px, 90vw) !important;
    height: 340px !important;
    top: 0 !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translateX(-50%) !important;
    padding: 34px !important;
  }

  .shape-main h2 {
    margin: 0 0 12px;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem !important;
    line-height: 0.96;
    letter-spacing: -0.04em;
    font-weight: 600;
  }

  .shape-main p {
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
    font-size: 0.82rem !important;
  }
  
  .shape-small {
    width: 230px !important;
    height: 230px !important;
    top: 330px !important;
    left: 18px !important;
    right: auto !important;
    bottom: auto !important;
    padding: 30px !important;
  }

  .shape-small h3 {
    font-size: 1.18rem !important;
  }

  .shape-small p {
    font-size: 0.72rem !important;
    line-height: 1.4 !important;
  }
}

