@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&family=Unbounded:wght@500;700&display=swap");

    :root {
      color-scheme: light;
      --text: #143427;
      --text-soft: #65786f;
      --green: #35634d;
      --green-deep: #17372b;
      --green-dark: #0d2219;
      --line: rgba(20, 52, 39, 0.1);
      --surface: rgba(255, 255, 255, 0.94);
      --surface-soft: rgba(255, 255, 255, 0.88);
      --shadow: 0 24px 60px rgba(18, 38, 29, 0.14);
      --radius-xl: 34px;
      --radius-lg: 26px;
      --radius-md: 20px;
    }

    * {
      box-sizing: border-box;
      -webkit-tap-highlight-color: transparent;
    }

    [hidden] {
      display: none !important;
    }

    html {
      -webkit-text-size-adjust: 100%;
      text-size-adjust: 100%;
    }

    body {
      margin: 0;
      min-height: 100vh;
      font-family: "Manrope", "Segoe UI", sans-serif;
      color: #fff;
      background: linear-gradient(180deg, #c8d2c8 0%, #6f8f7d 54%, #eaf0e7 100%);
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background:
        radial-gradient(circle at 50% 112%, rgba(255,255,255,0.94), transparent 28%),
        radial-gradient(circle at 100% 0%, rgba(255,255,255,0.22), transparent 24%);
      pointer-events: none;
    }

    h1, h2, h3, p {
      margin: 0;
    }

    button, input, textarea {
      font: inherit;
    }

    .page {
      position: relative;
      min-height: 100vh;
      width: min(100%, 920px);
      margin: 0 auto;
      padding:
        max(18px, env(safe-area-inset-top))
        16px
        max(18px, env(safe-area-inset-bottom))
        16px;
    }

    .page-main {
      min-height: calc(100vh - max(18px, env(safe-area-inset-top)) - max(18px, env(safe-area-inset-bottom)) - 36px);
      display: flex;
      flex-direction: column;
    }

    .page-back {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      align-self: flex-start;
      height: 46px;
      min-height: 46px;
      padding: 0 18px 0 14px;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 999px;
      color: #fff;
      background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.08));
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.22),
        0 10px 24px rgba(11, 24, 18, 0.12);
      font-size: 15px;
      font-weight: 800;
      letter-spacing: -0.02em;
      backdrop-filter: blur(18px) saturate(130%);
      cursor: pointer;
    }

    .page-back::before {
      content: "";
      width: 18px;
      height: 18px;
      display: block;
      background-color: currentColor;
      -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M15 5l-7 7 7 7M9 12h10' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
      mask: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M15 5l-7 7 7 7M9 12h10' fill='none' stroke='black' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E\") center / contain no-repeat;
    }

    .page-back.is-icon-only {
      width: 46px;
      min-width: 46px;
      height: 46px;
      padding: 0;
      justify-content: center;
      gap: 0;
      font-size: 0;
    }

    .empty-state {
      flex: 0 0 auto;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      padding: 12px 22px 22px;
      gap: 14px;
    }

    .empty-state h1 {
      max-width: 680px;
      font-size: clamp(34px, 5.5vw, 54px);
      line-height: 0.98;
      font-weight: 800;
      letter-spacing: -0.06em;
    }

    .empty-state p {
      max-width: 560px;
      font-size: clamp(16px, 2.1vw, 21px);
      line-height: 1.34;
      color: rgba(255,255,255,0.84);
    }

    .empty-state__button,
    .wizard-button,
    .option-card,
    .month-chip,
    .day-card,
    .time-card {
      border: 0;
      cursor: pointer;
    }

    .empty-state__button {
      min-height: 82px;
      padding: 0 30px;
      border-radius: 30px;
      align-self: flex-start;
      color: var(--green);
      background: rgba(255,255,255,0.96);
      box-shadow: var(--shadow);
      font-size: clamp(22px, 3vw, 29px);
      font-weight: 800;
      letter-spacing: -0.04em;
    }

    .wizard {
      display: none;
      gap: 14px;
      padding-top: 4px;
      color: var(--text);
      position: relative;
    }

    .wizard.is-open {
      display: grid;
      align-content: start;
    }

    .wizard-hero,
    .wizard-panel,
    .empty-card {
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
    }

    .wizard-hero {
      padding: 22px;
      color: #fff;
      background: linear-gradient(135deg, rgba(61, 118, 91, 0.96), rgba(25, 53, 41, 0.98));
    }

    .wizard-hero__top {
      display: flex;
      align-items: center;
      gap: 14px;
      justify-content: space-between;
    }

    .wizard-hero__title {
      min-width: 0;
      flex: 1 1 auto;
      display: grid;
      gap: 6px;
    }

    .wizard-close {
      position: absolute;
      top: calc(env(safe-area-inset-top) + 18px);
      right: calc(env(safe-area-inset-right) + 18px);
      display: block;
      margin: 0;
      width: 46px;
      min-width: 46px;
      height: 46px;
      padding: 0;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 999px;
      color: #fff;
      background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.08));
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.22),
        0 10px 24px rgba(11, 24, 18, 0.12);
      font-size: 0;
      line-height: 1;
      font-weight: 600;
      backdrop-filter: blur(18px) saturate(130%);
      cursor: pointer;
      touch-action: manipulation;
      -webkit-appearance: none;
      z-index: 40;
    }

    .wizard-close::before {
      content: "";
      width: 18px;
      height: 18px;
      display: block;
      margin: 0 auto;
      background-color: currentColor;
      -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 7l10 10M17 7L7 17' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
      mask: url(\"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 7l10 10M17 7L7 17' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E\") center / contain no-repeat;
    }

    .wizard-eyebrow {
      display: block;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.72);
    }

    .wizard-hero h2 {
      margin-top: 10px;
      font-family: "Unbounded", "Manrope", sans-serif;
      font-size: clamp(32px, 5.2vw, 54px);
      line-height: 0.98;
      letter-spacing: -0.06em;
    }

    .wizard-hero p {
      margin-top: 16px;
      max-width: 660px;
      color: rgba(255,255,255,0.82);
      font-size: 16px;
      line-height: 1.5;
    }

    .wizard-panel {
      display: none;
      gap: 18px;
      padding: 22px;
      background: var(--surface);
      border: 1px solid rgba(255,255,255,0.64);
      backdrop-filter: blur(16px);
    }

    .wizard-panel.is-active {
      display: grid;
    }

    .status-card {
      display: grid;
      gap: 12px;
      padding: 18px;
      border-radius: 24px;
      border: 1px solid rgba(19,49,38,0.08);
      background: rgba(240, 246, 242, 0.95);
    }

    .status-card.is-success {
      background: rgba(229, 246, 236, 0.98);
    }

    .status-card.is-warning {
      background: rgba(251, 244, 223, 0.98);
    }

    .status-card.is-danger {
      background: rgba(251, 233, 233, 0.98);
    }

    .status-card.is-muted {
      background: rgba(236, 240, 237, 0.98);
    }

    .status-card h3 {
      font-family: "Unbounded", "Manrope", sans-serif;
      font-size: clamp(22px, 4vw, 34px);
      line-height: 1.02;
      letter-spacing: -0.04em;
      color: var(--text);
    }

    .status-card p,
    .status-card li {
      color: var(--text-soft);
      font-size: 15px;
      line-height: 1.5;
    }

    .status-meta {
      display: grid;
      gap: 10px;
      padding: 16px;
      border-radius: 20px;
      border: 1px solid rgba(19,49,38,0.08);
      background: rgba(255,255,255,0.74);
    }

    .panel-head {
      display: grid;
      gap: 8px;
    }

    .panel-head h3 {
      font-family: "Unbounded", "Manrope", sans-serif;
      font-size: clamp(26px, 4.4vw, 42px);
      line-height: 0.98;
      letter-spacing: -0.05em;
      color: var(--text);
    }

    .panel-head p,
    .panel-note,
    .empty-card p {
      color: var(--text-soft);
      font-size: 15px;
      line-height: 1.5;
    }

    .option-grid,
    .month-grid,
    .day-grid,
    .time-grid {
      display: grid;
      gap: 12px;
    }

    .option-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .month-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .day-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .time-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .option-card,
    .month-chip,
    .day-card,
    .time-card {
      color: var(--text);
      background: rgba(255,255,255,0.98);
      border: 1px solid var(--line);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
    }

    .option-card:hover,
    .month-chip:hover,
    .day-card:hover,
    .time-card:hover,
    .wizard-button:hover {
      transform: translateY(-1px);
    }

    .option-card {
      min-height: 156px;
      padding: 18px;
      border-radius: 26px;
      display: grid;
      align-content: space-between;
      text-align: left;
    }

    .option-card__title {
      font-family: "Unbounded", "Manrope", sans-serif;
      font-size: clamp(28px, 4vw, 40px);
      line-height: 0.94;
      letter-spacing: -0.05em;
    }

    .option-card__meta {
      display: grid;
      gap: 6px;
    }

    .option-card__price {
      font-size: 34px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: -0.04em;
    }

    .option-card__hint {
      color: var(--text-soft);
      font-size: 14px;
      line-height: 1.4;
      font-weight: 700;
    }

    .month-chip {
      min-height: 68px;
      padding: 0 22px;
      border-radius: 22px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: 800;
      text-transform: capitalize;
    }
