  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --ink: #0f0e0d;
    --paper: #edeff5;
    --cream: #ede9e2;
    --accent: #2a3ac8;
    --accent-light: #f0ded6;
    --gold: #493ab8;
    --muted: #69697a;
    --border: #cbcad8;
    --card: #faf8f5;
    --serif: 'Instrument Serif', Georgia, serif;
    --sans: 'DM Sans', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NOISE TEXTURE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.6;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 4rem;
    background: rgba(245, 242, 237, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }

  .logo {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.02em;
  }
  .logo span { color: var(--accent); }

  nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
  }
  nav ul a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 0.2s;
  }
  nav ul a:hover { color: var(--ink); }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.6rem;
    border-radius: 2px;
    font-family: var(--sans);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    letter-spacing: 0.01em;
  }
  .btn-primary {
    background: var(--accent);
    color: white;
  }
  .btn-primary:hover {
    background: #351ea8;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(71, 42, 200, 0.35);
  }
  .btn-outline {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--border);
  }
  .btn-outline:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--paper);
  }
  .btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border-radius: 2px;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 7rem 4rem 4rem;
    gap: 4rem;
    position: relative;
    overflow: hidden;
  }

  /* Decorative background lines */
  .hero::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 60%;
    height: 100%;
    background:
      repeating-linear-gradient(
        90deg,
        transparent,
        transparent 79px,
        var(--border) 79px,
        var(--border) 80px
      );
    opacity: 0.4;
    pointer-events: none;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    animation: fadeUp 0.9s ease both;
  }

  .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-light);
    color: var(--accent);
    border: 1px solid rgba(200,80,42,0.2);
    padding: 0.35rem 1rem;
    border-radius: 2px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
  }
  .badge-dot {
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  h1 {
    font-family: var(--serif);
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 1.5rem;
  }
  h1 em {
    font-style: italic;
    color: var(--accent);
  }

  .hero-sub {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 300;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
  }

  .hero-note {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  .hero-note svg { flex-shrink: 0; }

  /* HERO VISUAL */
  .hero-visual {
    position: relative;
    z-index: 2;
    animation: fadeUp 0.9s 0.15s ease both;
  }

  .mockup-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(15,14,13,0.12), 0 4px 16px rgba(15,14,13,0.06);
    transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
    transition: transform 0.6s ease;
  }
  .mockup-card:hover {
    transform: perspective(1000px) rotateY(-1deg) rotateX(0deg);
  }

  .mockup-header {
    background: var(--ink);
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .mockup-dots { display: flex; gap: 6px; }
  .mockup-dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
  }
  .mockup-dots span:first-child { background: #ff5f57; }
  .mockup-dots span:nth-child(2) { background: #febc2e; }
  .mockup-dots span:nth-child(3) { background: #28c840; }
  .mockup-url {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    font-family: var(--sans);
  }
  .mockup-url strong { color: rgba(255,255,255,0.85); }

  .mockup-body {
    padding: 1.5rem;
  }

  .prof-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--border);
  }
  .prof-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8d5c4, #c8a882);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
  }
  .prof-info h3 {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 400;
    color: var(--ink);
  }
  .prof-info p {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.1rem;
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  .service-item {
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
  }
  .service-item.selected {
    border-color: var(--accent);
    background: var(--accent-light);
  }
  .service-item .svc-icon {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
    display: block;
  }
  .service-item .svc-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--ink);
    display: block;
  }
  .service-item .svc-meta {
    font-size: 0.72rem;
    color: var(--muted);
    display: flex;
    gap: 0.5rem;
    margin-top: 0.25rem;
  }

  .calendar-mini {
    margin-bottom: 1.2rem;
  }
  .cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.7rem;
    color: var(--ink);
  }
  .cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
    text-align: center;
  }
  .cal-day-label {
    font-size: 0.65rem;
    color: var(--muted);
    font-weight: 500;
    padding: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .cal-day {
    font-size: 0.75rem;
    padding: 0.3rem;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.15s;
    color: var(--muted);
  }
  .cal-day.available {
    background: var(--cream);
    color: var(--ink);
    font-weight: 500;
  }
  .cal-day.selected-day {
    background: var(--accent);
    color: white;
    font-weight: 600;
  }
  .cal-day.today {
    border: 1px solid var(--accent);
    color: var(--accent);
    font-weight: 500;
  }

  .time-slots {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  .time-slot {
    padding: 0.35rem 0.7rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.15s;
    color: var(--ink);
  }
  .time-slot.selected-slot {
    background: var(--ink);
    border-color: var(--ink);
    color: white;
  }
  .time-slot.booked {
    opacity: 0.35;
    text-decoration: line-through;
    cursor: not-allowed;
  }

  .book-btn-mini {
    width: 100%;
    margin-top: 1.2rem;
    padding: 0.8rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 2px;
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
  }
  .book-btn-mini:hover {
    background: #a8401e;
  }

  /* floating label */
  .float-badge {
    position: absolute;
    bottom: -12px;
    right: -12px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 0.6rem 0.9rem;
    box-shadow: 0 8px 32px rgba(15,14,13,0.12);
    font-size: 0.75rem;
    color: var(--ink);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    z-index: 10;
  }
  .float-badge .check {
    width: 20px; height: 20px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ── STATS BAR ── */
  .stats-bar {
    background: var(--ink);
    color: white;
    padding: 2rem 4rem;
    display: flex;
    justify-content: center;
    gap: 5rem;
    align-items: center;
    flex-wrap: wrap;
  }
  .stat-item {
    text-align: center;
  }
  .stat-num {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-style: italic;
    color: white;
    display: block;
    line-height: 1;
  }
  .stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    margin-top: 0.3rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
  }

  /* ── SECTIONS ── */
  section {
    padding: 6rem 4rem;
  }

  .section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 0.8rem;
    display: block;
  }

  h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 1rem;
  }
  h2 em { font-style: italic; color: var(--accent); }

  .section-sub {
    font-size: 1rem;
    color: var(--muted);
    max-width: 520px;
    line-height: 1.7;
    font-weight: 300;
  }

  /* ── HOW IT WORKS ── */
  .how {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .how-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .how-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 2.5rem;
  }
  .step {
    display: flex;
    gap: 1.5rem;
    padding: 1.8rem 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    animation: fadeUp 0.6s ease both;
  }
  .step:last-child { border-bottom: none; }
  .step-num {
    font-family: var(--serif);
    font-size: 2rem;
    font-style: italic;
    color: var(--border);
    line-height: 1;
    flex-shrink: 0;
    width: 2rem;
    padding-top: 0.1rem;
  }
  .step:hover .step-num { color: var(--accent); transition: color 0.2s; }
  .step-content h3 {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: var(--ink);
  }
  .step-content p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 300;
  }

  .how-illus {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .slug-demo {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 1.2rem 1.5rem;
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--muted);
  }
  .slug-demo strong { color: var(--accent); }

  /* ── FEATURES ── */
  .features-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .features-header {
    margin-bottom: 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border: 1px solid var(--border);
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
  }
  .feature-card {
    background: var(--card);
    padding: 2rem;
    transition: background 0.2s;
  }
  .feature-card:hover { background: white; }
  .feature-icon {
    width: 40px; height: 40px;
    background: var(--cream);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
  }
  .feature-card h3 {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--ink);
  }
  .feature-card p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 300;
  }

  /* ── PRICING ── */
  .pricing-section {
    background: var(--ink);
    color: white;
  }
  .pricing-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  .pricing-inner h2 { color: white; }
  .pricing-inner .section-sub { color: rgba(255,255,255,0.45); margin: 0 auto 3.5rem; }
  .pricing-inner h2 em { color: var(--gold); }

  .plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    text-align: left;
  }

  .plan {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 2.5rem;
    position: relative;
    transition: border-color 0.2s;
  }
  .plan:hover { border-color: rgba(255,255,255,0.25); }
  .plan.featured {
    border-color: var(--gold);
    background: rgba(184,147,58,0.06);
  }

  .plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--ink);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.9rem;
    border-radius: 2px;
    white-space: nowrap;
  }

  .plan-name {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.8rem;
  }
  .plan-price {
    font-family: var(--serif);
    font-size: 3rem;
    font-style: italic;
    line-height: 1;
    margin-bottom: 0.3rem;
    color: white;
  }
  .plan-price small {
    font-family: var(--sans);
    font-size: 0.9rem;
    font-style: normal;
    color: rgba(255,255,255,0.4);
    vertical-align: baseline;
    margin-left: 0.3rem;
  }
  .plan-price .currency {
    font-family: var(--sans);
    font-size: 1.2rem;
    font-style: normal;
    vertical-align: super;
  }
  .plan-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
  }
  .plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
  }
  .plan-features li .tick {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 0.1rem;
  }
  .plan-features li .cross {
    color: rgba(255,255,255,0.2);
    flex-shrink: 0;
    margin-top: 0.1rem;
  }
  .plan-features .limit { color: rgba(255,255,255,0.35); }

  .btn-gold {
    background: var(--gold);
    color: var(--ink);
    width: 100%;
    justify-content: center;
    padding: 0.85rem;
    font-weight: 600;
  }
  .btn-gold:hover {
    background: #d4a840;
    transform: translateY(-1px);
  }
  .btn-ghost {
    background: transparent;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.15);
    width: 100%;
    justify-content: center;
    padding: 0.85rem;
  }
  .btn-ghost:hover {
    border-color: rgba(255,255,255,0.4);
    color: white;
    transform: none;
  }

  /* ── FOR WHO ── */
  .for-who {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .for-who-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .for-who-header { margin-bottom: 3rem; }
  .professions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .prof-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 1.5rem;
    transition: all 0.2s;
    cursor: default;
  }
  .prof-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200,80,42,0.1);
  }
  .prof-emoji { font-size: 2rem; display: block; margin-bottom: 0.8rem; }
  .prof-card h3 { font-size: 0.875rem; font-weight: 500; margin-bottom: 0.3rem; color: var(--ink); }
  .prof-card p { font-size: 0.78rem; color: var(--muted); line-height: 1.5; font-weight: 300; }

  /* ── CTA ── */
  .cta-section {
    text-align: center;
    padding: 7rem 4rem;
  }
  .cta-inner {
    max-width: 640px;
    margin: 0 auto;
  }
  .cta-section h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); }
  .cta-section .section-sub { margin: 1.2rem auto 2.5rem; }
  .cta-input-row {
    display: flex;
    gap: 0;
    max-width: 440px;
    margin: 0 auto 1rem;
    border: 1.5px solid var(--border);
    border-radius: 2px;
    overflow: hidden;
    transition: border-color 0.2s;
  }
  .cta-input-row:focus-within { border-color: var(--accent); }
  .cta-prefix {
    padding: 0 0.75rem;
    background: var(--cream);
    color: var(--muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    border-right: 1px solid var(--border);
    white-space: nowrap;
  }
  .cta-input {
    flex: 1;
    padding: 0.85rem 1rem;
    border: none;
    background: white;
    font-family: var(--sans);
    font-size: 0.9rem;
    outline: none;
    color: var(--ink);
  }
  .cta-input-row .btn { border-radius: 0; }
  .cta-small {
    font-size: 0.78rem;
    color: var(--muted);
  }

  /* ── FOOTER ── */
  footer {
    background: var(--ink);
    color: rgba(255,255,255,0.4);
    padding: 3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  footer .logo { color: white; }
  footer .logo span { color: rgba(255,255,255,0.4); }
  footer nav { background: none; position: static; border: none; padding: 0; }
  footer nav ul { gap: 2rem; }
  footer nav ul a { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
  footer nav ul a:hover { color: rgba(255,255,255,0.7); }
  .footer-copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.2);
    text-align: center;
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  /* Scroll-triggered reveals */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    nav ul { display: none; }
    .hero {
      grid-template-columns: 1fr;
      padding: 6rem 1.5rem 3rem;
      gap: 3rem;
    }
    .hero::after { display: none; }
    .mockup-card { transform: none; }
    section { padding: 4rem 1.5rem; }
    .how-inner { grid-template-columns: 1fr; gap: 3rem; }
    .features-grid { grid-template-columns: 1fr; }
    .plans { grid-template-columns: 1fr; }
    .professions-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-bar { gap: 2rem; padding: 2rem 1.5rem; }
    .stat-divider { display: none; }
    footer { flex-direction: column; align-items: flex-start; padding: 2rem 1.5rem; }
    footer nav { display: none; }
    .cta-section { padding: 4rem 1.5rem; }
  }