  :root {
    --plum: #1B0F26;
    --plum-2: #251534;
    --cream: #FFF3EA;
    --coral: #FF5A4E;
    --amber: #FFB13D;
    --muted: #C3A3BE;
    --line: rgba(255, 243, 234, 0.18);
    --gradient: linear-gradient(100deg, var(--coral), var(--amber));
  }

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

  body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--plum);
    color: var(--cream);
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; line-height: 1.02; }
  h2 { font-size: clamp(34px, 5vw, 60px); max-width: 14ch; }
  h3 { font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 14px; }
  p { max-width: 58ch; }
  p + p { margin-top: 1em; }
  a { color: inherit; }
  a:focus-visible, button:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
  img { display: block; width: 100%; height: auto; }

  .wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

  .btn {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 17px;
    padding: 16px 30px;
    border-radius: 999px;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    border: 0;
    cursor: pointer;
    background: var(--gradient);
    color: #FFFFFF;
  }
  .btn:hover { filter: brightness(1.06); }
  .btn.small { font-size: 15px; padding: 11px 20px; }
  section, header { scroll-margin-top: 76px; }

  /* Nav */
  nav { position: sticky; top: 0; z-index: 10; background: rgba(27, 15, 38, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
  nav > .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
  .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 20px; }
  .menu { display: flex; gap: 4px; list-style: none; align-items: stretch; height: 76px; margin-left: auto; }
  .menu > li { display: flex; align-items: center; }
  .menu > li > a { display: flex; align-items: center; height: 100%; padding: 0 12px; text-decoration: none; font-size: 16px; color: var(--cream); border-bottom: 2px solid transparent; }
  .menu > li:hover > a, .menu > li:focus-within > a { color: var(--amber); }
  .menu .panel { position: absolute; left: 0; right: 0; top: 100%; background: var(--plum-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); opacity: 0; visibility: hidden; transform: translateY(-4px); transition: opacity .15s ease, transform .15s ease, visibility 0s linear .15s; }
  .menu > li:hover .panel, .menu > li:focus-within .panel { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
  .menu .items { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding-top: 22px; padding-bottom: 26px; }
  .menu .items a { display: grid; grid-template-columns: 36px 1fr; gap: 12px; align-items: start; text-decoration: none; padding: 12px 14px; border-radius: 10px; }
  .menu .items .ic { width: 36px; height: 36px; border-radius: 10px; background: rgba(255, 243, 234, 0.07); display: grid; place-items: center; color: var(--amber); transition: background .15s ease; }
  .menu .items .ic svg { width: 20px; height: 20px; fill: currentColor; display: block; }
  .menu .items a:hover .ic { background: var(--gradient); color: #fff; }
  .menu .items a:hover { background: rgba(255, 243, 234, 0.06); }
  .menu .items strong { display: block; font-weight: 600; font-size: 16px; color: var(--cream); }
  .menu .items span { display: block; font-size: 14px; color: var(--muted); margin-top: 3px; line-height: 1.4; }
  .nav-cta { margin-left: 8px; }
  .burger { display: none; width: 44px; height: 44px; border: 0; background: none; cursor: pointer; padding: 0; margin-left: auto; }
  .burger span { display: block; width: 22px; height: 2px; background: var(--cream); margin: 5px auto; transition: transform .2s ease, opacity .2s ease; }
  nav.open .burger span:first-child { transform: translateY(3.5px) rotate(45deg); }
  nav.open .burger span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  @media (prefers-reduced-motion: reduce) { .menu .panel, .burger span { transition: none; } }
  @media (max-width: 860px) {
    nav > .wrap { gap: 12px; }
    .nav-cta { margin-left: 0; padding: 10px 16px; font-size: 14px; order: 2; }
    .burger { display: block; order: 3; margin-left: 0; }
    nav .logo { font-size: 17px; gap: 8px; }
    .menu { display: none; position: absolute; left: 0; right: 0; top: 100%; height: auto; flex-direction: column; gap: 0; background: var(--plum-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 8px 0 12px; margin: 0; }
    nav.open .menu { display: flex; }
    .menu > li { display: block; }
    .menu > li > a { height: auto; padding: 14px 24px; font-size: 18px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; border: 0; }
    .menu .panel { position: static; opacity: 1; visibility: visible; transform: none; border: 0; background: none; transition: none; }
    .menu .items { grid-template-columns: 1fr 1fr; gap: 0 12px; padding-top: 0; padding-bottom: 10px; }
    .menu .items a { padding: 8px 0; grid-template-columns: 28px 1fr; gap: 10px; align-items: center; }
    .menu .items .ic { width: 28px; height: 28px; border-radius: 8px; }
    .menu .items .ic svg { width: 16px; height: 16px; }
    .menu .items a:hover { background: none; }
    .menu .items strong { font-size: 15px; }
    .menu .items span { display: none; }
  }

  /* Hero */
  .hero { position: relative; min-height: min(88vh, 900px); display: flex; align-items: flex-end; overflow: hidden; }
  .hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; }
  .hero::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(to top, var(--plum) 0%, rgba(27, 15, 38, 0.82) 40%, rgba(27, 15, 38, 0.35) 70%, rgba(27, 15, 38, 0.05) 100%);
  }
  .hero .wrap { position: relative; z-index: 1; width: 100%; padding-top: 120px; padding-bottom: 72px; }
  .hero h1 { font-size: clamp(50px, 8.4vw, 116px); max-width: 11ch; margin-bottom: 26px; }
  .hero p { font-size: clamp(18px, 2vw, 22px); max-width: 38ch; margin-bottom: 34px; }
  .hero .actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
  .link { text-underline-offset: 4px; text-decoration-color: var(--amber); }

  /* Plain sections */
  section { padding: 110px 0; }
  .intro { max-width: 46ch; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.3; font-family: 'Space Grotesk', sans-serif; font-weight: 500; }

  /* Products: alternating photo and copy */
  .product { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 64px 0; border-top: 1px solid var(--line); }
  .product:first-of-type { border-top: 0; }
  .product:nth-of-type(even) .media { order: 2; }
  .product .media img { border-radius: 8px; aspect-ratio: 3 / 2; object-fit: cover; }
  .product ul { list-style: none; margin-top: 26px; max-width: 42ch; }
  .product li { padding: 10px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 16px; }
  .product li:last-child { border-bottom: 1px solid var(--line); }
  @media (max-width: 860px) {
    .product { grid-template-columns: 1fr; gap: 32px; }
    .product:nth-of-type(even) .media { order: 0; }
  }

  /* Scanner screen mock, real product content */
  .scan {
    background: var(--cream); color: #2A1030; border-radius: 22px; overflow: hidden;
    max-width: 340px; margin: 0 auto; font-family: 'Inter', sans-serif;
    border: 6px solid #2A1030;
  }
  .scan .bar { display: flex; justify-content: space-between; padding: 12px 18px 8px; font-size: 12px; color: #6B5470; }
  .scan .state { margin: 6px 18px 0; padding: 12px 16px; border-radius: 12px; background: #1E8E5A; color: #fff; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 16px; }
  .scan .guest { padding: 18px 18px 6px; }
  .scan .guest .name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 24px; line-height: 1.1; }
  .scan .guest .tier { display: inline-block; margin-top: 8px; padding: 4px 10px; border-radius: 999px; background: var(--gradient); color: #fff; font-size: 12px; font-weight: 600; }
  .scan dl { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 14px 18px; border-top: 1px solid rgba(42,16,48,.12); }
  .scan dt { font-size: 11px; color: #6B5470; margin-bottom: 2px; }
  .scan dd { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 18px; }
  .scan .vip { margin: 0 18px 18px; padding: 12px 14px; border-radius: 12px; background: #FFE8D6; border-left: 4px solid var(--coral); font-size: 14px; line-height: 1.4; }
  .scan .vip strong { display: block; font-size: 12px; color: var(--coral); margin-bottom: 3px; }

  .product .media img.scan-shot { aspect-ratio: auto; width: 100%; max-width: 340px; height: auto; display: block; margin: 0 auto; border-radius: 22px; border: 6px solid #2A1030; object-fit: contain; }

  /* WhatsApp thread mock */
  .chat {
    background: #EFE7DF; color: #2A1030; border-radius: 22px; overflow: hidden;
    max-width: 340px; margin: 0 auto; font-family: 'Inter', sans-serif; border: 6px solid #2A1030;
  }
  .chat .top { background: var(--cream); padding: 12px 16px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(42,16,48,.12); }
  .chat .top .avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--plum); display: grid; place-items: center; flex: none; }
  .chat .top .avatar svg { width: 24px; height: 16px; display: block; }
  .chat .top strong { display: block; font-size: 14px; line-height: 1.2; }
  .chat .top span { display: block; font-size: 11px; line-height: 1.2; margin-top: 2px; color: #6B5470; }
  .chat .msgs { padding: 14px 12px 16px; display: flex; flex-direction: column; gap: 8px; }
  .chat .m { max-width: 86%; padding: 9px 12px; border-radius: 14px; font-size: 13.5px; line-height: 1.4; background: #FFFFFF; align-self: flex-start; }
  .chat .m.out { background: #D9F5DC; align-self: flex-end; }
  .chat .m time { display: block; text-align: right; font-size: 10px; color: #6B5470; margin-top: 3px; }
  .chat .day { align-self: center; font-size: 11px; color: #6B5470; background: rgba(42,16,48,.06); padding: 3px 10px; border-radius: 999px; }
  .chat .m.file { padding: 4px 4px 6px; max-width: 92%; }
  .chat .tix { border-radius: 10px; overflow: hidden; background: linear-gradient(135deg, #2E1F5E 0%, #1B1240 55%, #241852 100%); color: #fff; padding: 12px 12px 14px; display: grid; grid-template-columns: 1fr 64px; gap: 10px; align-items: start; }
  .chat .tix::before { content: ""; grid-column: 1 / -1; grid-row: 1; height: 0; }
  .chat .tix .l { grid-row: 2; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 10.5px; line-height: 1.35; display: grid; gap: 4px; }
  .chat .tix .l b { font-size: 12.5px; line-height: 1.2; margin-bottom: 2px; }
  .chat .tix .l span { font-weight: 600; opacity: .92; }
  .chat .tix svg { grid-row: 2; width: 64px; height: 64px; display: block; }
  .chat .tix .tear { grid-column: 1 / -1; grid-row: 3; margin-top: 10px; padding-top: 8px; border-top: 1px dashed rgba(255,255,255,.28); font-size: 9.5px; letter-spacing: .08em; text-transform: uppercase; opacity: .7; }
  .chat .doc { display: flex; align-items: center; gap: 8px; padding: 6px 8px 2px; }
  .chat .doc .pdf { width: 20px; height: 24px; border-radius: 3px; background: #E0393E; color: #fff; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 6.5px; display: grid; place-items: end center; padding-bottom: 3px; flex: none; }
  .chat .doc strong { display: block; font-size: 12px; font-weight: 600; word-break: break-all; }
  .chat .doc small { font-size: 10.5px; color: #6B5470; }
  .chat .m.file time { margin-top: 2px; margin-right: 6px; }
  .chat .m.cta { padding: 0; overflow: hidden; }
  .chat .m.cta .txt { padding: 9px 12px 6px; }
  .chat .m.cta .btn-wa { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 10px 12px; border-top: 1px solid rgba(42,16,48,.12); font-size: 13.5px; font-weight: 600; color: #1E8E5A; }
  .chat .m.cta .btn-wa svg { width: 14px; height: 14px; }

  /* Page layout */
  .two { display: grid; grid-template-columns: 1.15fr 1fr; gap: 80px; align-items: start; }
  .two h1 { font-size: clamp(38px, 5vw, 60px); max-width: 12ch; margin-bottom: 18px; }
  .two .lead { color: var(--muted); font-size: 18px; margin-bottom: 40px; max-width: 40ch; }
  .aside { position: sticky; top: 100px; }
  .aside img { border-radius: 8px; aspect-ratio: 3 / 2; object-fit: cover; margin-bottom: 8px; }
  .aside .timeline { margin-top: 32px; }
  .aside .timeline li { grid-template-columns: 120px 1fr; padding: 20px 0; gap: 20px; }
  .aside .timeline .when { font-size: 17px; }
  .aside .timeline h3 { font-size: 18px; margin-bottom: 4px; }
  .aside .timeline p { font-size: 15px; }
  @media (max-width: 860px) {
    .two { grid-template-columns: 1fr; gap: 48px; }
    .aside { position: static; }
    .aside img { display: none; }
  }

  /* Signup form */
  .signup { max-width: 560px; }
  .signup .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
  .signup .full { grid-column: 1 / -1; }
  .signup label { display: block; font-size: 14px; color: var(--muted); margin-bottom: 6px; }
  .signup label .opt { opacity: .7; }
  .signup input, .signup select {
    width: 100%; font: inherit; font-size: 16px; color: var(--cream);
    background: rgba(255, 243, 234, 0.08); border: 1px solid var(--line); border-radius: 8px; padding: 12px 14px;
  }
  .signup select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none' stroke='%23FFF3EA' stroke-width='1.6'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
  .signup select option { color: #2A1030; }
  .signup input::placeholder { color: rgba(255, 243, 234, 0.4); }
  .signup input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); opacity: .7; }
  .signup input:invalid:not(:placeholder-shown) { border-color: var(--coral); }
  .signup fieldset { border: 0; }
  .signup legend { font-size: 14px; color: var(--muted); margin-bottom: 8px; }
  .signup .checks { display: flex; flex-wrap: wrap; gap: 10px 22px; }
  .signup .checks label { display: inline-flex; align-items: center; gap: 8px; margin: 0; color: var(--cream); font-size: 15px; cursor: pointer; }
  .signup .checks input { width: 18px; height: 18px; padding: 0; accent-color: var(--coral); }
  .signup .submit { margin-top: 28px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
  .signup .alt { font-size: 15px; color: var(--muted); }
  .signup .alt a { color: var(--cream); text-underline-offset: 4px; }
  .signup .thanks { display: none; font-size: 18px; max-width: 42ch; }
  .signup .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
  .signup.done form { display: none; }
  .signup.done .thanks { display: block; }
  @media (max-width: 600px) { .signup .grid { grid-template-columns: 1fr; } }

  /* Basics checklist */
  .basics { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
  .basics img { border-radius: 8px; aspect-ratio: 3 / 2; object-fit: cover; }
  .basics ul { list-style: none; margin-top: 24px; }
  .basics li { padding: 10px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 16px; }
  .basics li:last-child { border-bottom: 1px solid var(--line); }
  .basics li a { color: var(--cream); text-decoration: none; border-bottom: 1px solid rgba(255,243,234,.35); }
  .basics li a:hover { color: var(--amber); border-color: var(--amber); }
  @media (max-width: 860px) { .basics { grid-template-columns: 1fr; gap: 32px; } }

  /* Email preview, real product content */
  .email {
    background: var(--cream); color: #2A1030; border-radius: 8px; overflow: hidden;
    font-family: 'Inter', sans-serif; max-width: 460px; margin: 0 auto;
  }
  .email .head { padding: 14px 20px; border-bottom: 1px solid rgba(42, 16, 48, 0.12); font-size: 13px; color: #6B5470; }
  .email .head strong { color: #2A1030; display: block; font-size: 14px; margin-bottom: 2px; }
  .email .body { padding: 26px 20px 28px; }
  .email .body h4 { font-family: 'Space Grotesk', sans-serif; font-size: 24px; line-height: 1.1; margin-bottom: 12px; }
  .email .body p { font-size: 15px; margin-bottom: 20px; }
  .email .body .bar { height: 10px; border-radius: 999px; background: rgba(42, 16, 48, 0.12); overflow: hidden; margin-bottom: 8px; }
  .email .body .bar span { display: block; height: 100%; width: 80%; background: var(--gradient); }
  .email .body small { font-size: 12.5px; color: #6B5470; display: block; margin-bottom: 22px; }
  .email .btn { font-size: 15px; padding: 12px 22px; }


  /* Onboarding: a real sequence, so a timeline */
  .timeline { list-style: none; margin-top: 48px; border-top: 1px solid var(--line); }
  .timeline li { display: grid; grid-template-columns: 160px 1fr; gap: 32px; padding: 30px 0; border-bottom: 1px solid var(--line); }
  .timeline .when { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 20px; color: var(--amber); }
  .timeline h3 { font-size: 22px; margin-bottom: 6px; }
  .timeline p { color: var(--muted); }
  @media (max-width: 600px) { .timeline li { grid-template-columns: 1fr; gap: 8px; } }

  /* Pricing: guest band switch */
  .bands { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 48px; }
  .bands-label { color: var(--muted); font-size: 15px; margin-right: 6px; }
  .bands button {
    font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 15px;
    padding: 10px 18px; border-radius: 999px; border: 1px solid var(--line);
    background: transparent; color: var(--cream); cursor: pointer;
  }
  .bands button:hover { border-color: var(--amber); }
  .bands button[aria-pressed="true"] { background: var(--gradient); color: #fff; border-color: transparent; }
  .bands + .plans { margin-top: 28px; }
  @media (max-width: 600px) { .bands-label { width: 100%; margin: 0 0 2px; } }

  /* Pricing: one table, three columns */
  .plans { display: grid; grid-template-columns: 1fr 1fr 1fr; margin-top: 48px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .plans > div { padding: 32px 28px 32px 0; }
  .plans > div + div { border-left: 1px solid var(--line); padding-left: 28px; }
  .plans h3 { font-size: 24px; margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
  .plans .chip { width: 40px; height: 40px; border-radius: 12px; background: var(--gradient); display: grid; place-items: center; color: #fff; flex: none; }
  .plans .chip svg { width: 22px; height: 22px; fill: currentColor; display: block; }
  .plans li { display: flex; align-items: flex-start; gap: 10px; }
  .plans li .li-ic { width: 18px; height: 18px; fill: var(--amber); flex: none; margin-top: 2px; }
  .compare .ri { position: absolute; left: 0; top: 19px; width: 18px; height: 18px; fill: var(--amber); }
  .plans .price { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 30px; line-height: 1.1; }
  .plans .price small { display: block; font-family: 'Inter', sans-serif; font-weight: 400; font-size: 15px; color: var(--muted); margin-top: 6px; }
  .plans .monthly { margin-top: 10px; font-size: 16px; color: var(--cream); }
  .plans ul { list-style: none; margin: 22px 0 26px; }
  .plans li { padding: 8px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 15px; }
  .plans li:last-child { border-bottom: 1px solid var(--line); }
  .plans .link { display: inline-block; }
  .plans-note { margin-top: 18px; font-size: 14px; color: var(--muted); }
  @media (max-width: 860px) {
    .plans { grid-template-columns: 1fr; }
    .plans > div { padding: 28px 0; }
    .plans > div + div { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  }

  /* Pricing: public comparison, named columns, eight rows */
  .compare { padding: 96px 0 0; border-top: 0; }
  .compare h2 { margin-bottom: 18px; }
  .compare .lead { color: var(--muted); font-size: 18px; max-width: 46ch; margin-bottom: 40px; }
  .compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 -24px; padding: 0 24px; }
  .compare table { width: 100%; min-width: 680px; border-collapse: collapse; font-size: 16px; }
  .compare th, .compare td { padding: 16px 14px; border-top: 1px solid var(--line); text-align: left; vertical-align: top; }
  .compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 1px solid var(--line); }
  .compare thead th { border-top: 0; padding-top: 0; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 17px; color: var(--muted); }
  .compare thead th.us { color: var(--amber); }
  .compare tbody th { font-weight: 500; color: var(--cream); width: 40%; padding-left: 30px; position: relative; }
  .compare td { color: var(--muted); }
  .compare td.us { color: var(--cream); background: rgba(255, 243, 234, 0.05); }
  .compare .yes { font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: var(--cream); }
  .compare td.us .yes { color: var(--amber); }
  .compare .no { color: var(--muted); opacity: 0.7; }
  .compare .sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .compare-hint { display: none; font-size: 14px; color: var(--muted); margin: -24px 0 16px; }
  .compare-note { margin-top: 18px; font-size: 14px; color: var(--muted); max-width: 70ch; }
  .compare-note a { color: var(--cream); text-underline-offset: 4px; text-decoration-color: var(--amber); }
  @media (max-width: 860px) {
    .compare { padding-top: 72px; }
    .compare table { min-width: 620px; font-size: 15px; }
    .compare tbody th { width: 38%; position: sticky; left: 0; background: var(--plum); }
    .compare-hint { display: block; }
  }

  /* Case */
  .case { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .case .client-logo { display: inline-block; background: var(--cream); border-radius: 8px; padding: 10px 16px; margin-bottom: 24px; }
  .case .client-logo img { width: 130px; height: auto; }
  .case h3 { max-width: 20ch; }
  .case p { color: var(--muted); }
  .case img.photo { border-radius: 8px; aspect-ratio: 3 / 2; object-fit: cover; }
  .case .credit { font-size: 13px; color: var(--muted); margin-top: 12px; }
  .case .link { display: inline-block; margin-top: 22px; text-underline-offset: 4px; text-decoration-color: var(--amber); }
  .section-label { color: var(--muted); font-size: 16px; margin-bottom: 40px; }
  @media (max-width: 860px) { .case { grid-template-columns: 1fr; gap: 32px; } }

  /* Closing */
  .close { position: relative; min-height: min(78vh, 760px); display: flex; align-items: center; overflow: hidden; }
  .close::after { pointer-events: none; }
  .close img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
  .close::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to right, rgba(27, 15, 38, 0.92) 0%, rgba(27, 15, 38, 0.6) 55%, rgba(27, 15, 38, 0.15) 100%); }
  .close .wrap { position: relative; z-index: 1; width: 100%; padding: 100px 24px; }
  .close h2 { margin-bottom: 20px; }
  .close p { margin-bottom: 32px; max-width: 38ch; }
  .close .mailto { display: block; margin-top: 22px; font-size: 16px; color: var(--muted); }
  .close .mailto a { color: var(--cream); text-underline-offset: 4px; }

  /* Footer */
  footer { border-top: 1px solid var(--line); padding: 36px 0; font-size: 15px; color: var(--muted); }
  footer .wrap { display: flex; flex-wrap: wrap; gap: 14px 36px; align-items: center; justify-content: space-between; }
  footer ul { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; }
  footer a { color: var(--cream); text-decoration: none; }
  footer a:hover { text-decoration: underline; text-underline-offset: 4px; }

  /* Inner pages */
  main { padding: 72px 0 110px; }
  .page-head { max-width: 760px; }
  .page-head .crumb { font-size: 15px; color: var(--muted); margin-bottom: 18px; display: block; }
  .page-head .crumb a { color: var(--muted); text-decoration: none; }
  .page-head .crumb a:hover { color: var(--cream); text-decoration: underline; text-underline-offset: 4px; }
  .page-head h1 { font-size: clamp(40px, 6vw, 76px); max-width: 12ch; margin-bottom: 22px; }
  .page-head .lead { font-size: clamp(18px, 2vw, 22px); color: var(--muted); max-width: 44ch; }
  .subnav { list-style: none; margin-top: 56px; border-top: 1px solid var(--line); }
  .subnav li { border-bottom: 1px solid var(--line); }
  .subnav a { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: baseline; padding: 22px 0; text-decoration: none; }
  .subnav a:hover strong { color: var(--amber); }
  .subnav strong { font-family: 'Space Grotesk', sans-serif; font-size: 22px; }
  .subnav span { color: var(--muted); font-size: 16px; }
  .subnav small { color: var(--muted); font-size: 14px; white-space: nowrap; }
  @media (max-width: 600px) { .subnav a { grid-template-columns: 1fr; gap: 4px; } }
  .placeholder { margin-top: 56px; padding: 28px; border: 1px dashed var(--line); border-radius: 12px; color: var(--muted); font-size: 15px; max-width: 640px; }
  .placeholder strong { color: var(--cream); display: block; margin-bottom: 6px; }

  /* Feature pages: one page, several sections */
  .jump { list-style: none; display: flex; flex-wrap: wrap; gap: 6px 28px; margin-top: 44px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
  .jump a { color: var(--muted); text-decoration: none; font-size: 16px; }
  .jump a:hover { color: var(--amber); }
  .features .product[id] { scroll-margin-top: 76px; }
  .features .product:first-child { border-top: 0; }
  .product .media img.shop-shot { max-width: 300px; border-color: #2A1030; }
  .product .media .chat { max-width: 340px; margin: 0 auto; }

  .mock { background: var(--plum-2); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; font-size: 13.5px; max-width: 460px; margin: 0 auto; }
  .mock .mock-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 14px 16px; border-bottom: 1px solid var(--line); }
  .mock .mock-top strong { font-family: 'Space Grotesk', sans-serif; font-size: 15px; }
  .mock .mock-top span { color: var(--muted); font-size: 12.5px; white-space: nowrap; }
  .mock table { width: 100%; border-collapse: collapse; }
  .mock th { text-align: left; font-weight: 500; font-size: 11px; letter-spacing: .04em; color: var(--muted); padding: 10px 16px 8px; }
  .mock td { padding: 10px 16px; border-top: 1px solid var(--line); vertical-align: top; }
  .mock td small { display: block; color: var(--amber); font-size: 11.5px; margin-top: 2px; }
  .mock td.in { color: #6FD39A; }
  .mock .tag { font-style: normal; font-size: 11px; padding: 2px 8px; border-radius: 999px; background: rgba(255,243,234,.1); color: var(--cream); white-space: nowrap; }
  .mock .tag.vip { background: var(--amber); color: var(--plum); }
  .mock .tag.nom { background: var(--coral); color: #fff; }
  .mock .tag.spo { background: #5FA8FF; color: var(--plum); }
  .mock .tag.press { background: rgba(255,243,234,.22); }

  .mock.seat .floor { display: grid; grid-template-columns: 1fr 132px; grid-template-rows: auto 1fr; gap: 0; }
  .mock.seat .stage { grid-column: 1; margin: 16px 16px 0; padding: 6px; text-align: center; font-size: 11px; letter-spacing: .06em; color: var(--muted); background: rgba(255,243,234,.06); border-radius: 6px; }
  .mock.seat .planwrap { grid-column: 1; padding: 12px 12px 8px; }
  .mock.seat .plan { width: 100%; height: auto; display: block; }
  .mock.seat .plan .v { fill: var(--amber); }
  .mock.seat .plan .n { fill: var(--coral); }
  .mock.seat .plan .s { fill: #5FA8FF; }
  .mock.seat .plan .g { fill: #8E6B9E; }
  .mock.seat .plan .f { fill: rgba(255,243,234,.22); }
  .mock.seat .plan .sel { fill: none; stroke: var(--cream); stroke-width: 1.6; }
  .mock.seat .side { grid-column: 2; grid-row: 1 / 3; border-left: 1px solid var(--line); padding: 14px 14px 16px; }
  .mock.seat .side strong { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 14px; margin-bottom: 8px; }
  .mock.seat .side ul { list-style: none; }
  .mock.seat .side li { display: flex; align-items: center; gap: 7px; font-size: 12px; padding: 4px 0; white-space: nowrap; border: 0; color: var(--cream); }
  .mock.seat .side li.free { white-space: normal; }
  .mock.seat .side li.free { color: var(--muted); margin-top: 4px; }
  .mock.seat .dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
  .mock.seat .legend { display: flex; flex-wrap: wrap; gap: 6px 16px; padding: 10px 16px 12px; border-top: 1px solid var(--line); font-size: 11.5px; color: var(--muted); }
  .mock.seat .legend span { display: flex; align-items: center; gap: 6px; }
  .mock.seat .legend i { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
  @media (max-width: 480px) { .mock .mock-top span { white-space: normal; text-align: right; } .mock th, .mock td { padding-left: 12px; padding-right: 12px; } .mock th:nth-child(3), .mock td:nth-child(3) { display: none; } .mock td:first-child { white-space: nowrap; } }
  @media (max-width: 420px) { .mock.seat .floor { grid-template-columns: 1fr; } .mock.seat .side { grid-column: 1; grid-row: auto; border-left: 0; border-top: 1px solid var(--line); } }
  .mock.count ul { list-style: none; margin: 0; max-width: none; }
  .mock.count li { border: 0; color: var(--cream); padding: 0; }
  .mock.count .big { padding: 18px 16px 0; font-family: 'Space Grotesk', sans-serif; font-size: 44px; font-weight: 700; line-height: 1; }
  .mock.count .big small { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 400; color: var(--muted); }
  .mock.count .bar { height: 6px; border-radius: 3px; background: rgba(255,243,234,.1); overflow: hidden; }
  .mock.count .bar i { display: block; height: 100%; background: var(--gradient); border-radius: 3px; }
  .mock.count > .bar { margin: 14px 16px 18px; }
  .mock.count .tiers { padding: 0 16px 14px; }
  .mock.count .tiers li { display: grid; grid-template-columns: 62px 1fr 58px; gap: 12px; align-items: center; font-size: 12.5px; padding: 5px 0; }
  .mock.count .tiers em { font-style: normal; text-align: right; color: var(--muted); font-variant-numeric: tabular-nums; white-space: nowrap; }
  .mock.count .feed { border-top: 1px solid var(--line); padding: 12px 16px 14px; }
  .mock.count .feed h5 { font-family: 'Inter', sans-serif; font-size: 11.5px; font-weight: 500; color: var(--muted); margin-bottom: 6px; }
  .mock.count .feed li { display: grid; grid-template-columns: 40px 1fr auto; gap: 12px; font-size: 12.5px; padding: 4px 0; white-space: nowrap; }
  .mock.count .feed time, .mock.count .feed span:last-child { color: var(--muted); font-variant-numeric: tabular-nums; }
  .mock.count .feed small { color: var(--amber); font-size: 11px; margin-left: 4px; }
  .faq { list-style: none; margin-top: 48px; border-top: 1px solid var(--line); max-width: 760px; }
  .faq li { padding: 22px 0; border-bottom: 1px solid var(--line); }
  .faq h3 { font-size: 20px; margin-bottom: 6px; }
  .faq p { color: var(--muted); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; max-width: 760px; }
  .contact-grid h3 { font-size: 18px; margin-bottom: 8px; }
  .contact-grid a { text-underline-offset: 4px; text-decoration-color: var(--amber); }
  @media (max-width: 600px) { .contact-grid { grid-template-columns: 1fr; gap: 28px; } }
  /* Footer with columns */
  footer .cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding-bottom: 36px; margin-bottom: 28px; border-bottom: 1px solid var(--line); }
  footer .cols h4 { font-family: 'Space Grotesk', sans-serif; font-size: 15px; color: var(--cream); margin-bottom: 12px; }
  footer .cols ul { display: grid; gap: 8px; }
  footer .cols a { color: var(--muted); }
  footer .cols a:hover { color: var(--cream); }
  footer .bottom { display: flex; flex-wrap: wrap; gap: 14px 36px; align-items: center; justify-content: space-between; }
  footer .bottom ul { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; }
  @media (max-width: 720px) { footer .cols { grid-template-columns: 1fr 1fr; } }

  /* Engagement pages: in-page headings, FAQ block, related links */
  .inpage { margin-top: 96px; }
  .inpage h2 { font-size: clamp(28px, 3.4vw, 40px); max-width: 20ch; }
  .inpage .faq { margin-top: 28px; }
  .related { margin-top: 96px; }
  .related h2 { font-size: clamp(24px, 3vw, 32px); }
  .related .subnav { margin-top: 20px; }
  .intro + .timeline { margin-top: 56px; }
  .page-head + .intro { margin-top: 48px; }

  /* Mock: team side of the WhatsApp line (compose and send) */
  .mock.broadcast .to { display: flex; flex-wrap: wrap; gap: 6px; padding: 12px 16px; border-bottom: 1px solid var(--line); align-items: center; }
  .mock.broadcast .to > span:first-child { color: var(--muted); font-size: 12px; margin-right: 4px; }
  .mock.broadcast .chip { font-size: 12px; padding: 3px 10px; border-radius: 999px; border: 1px solid var(--line); color: var(--cream); }
  .mock.broadcast .chip.on { background: var(--amber); color: var(--plum); border-color: transparent; }
  .mock.broadcast .compose { padding: 14px 16px; }
  .mock.broadcast .compose p { max-width: none; font-size: 13.5px; line-height: 1.5; color: var(--cream); }
  .mock.broadcast .compose p + p { margin-top: 10px; }
  .mock.broadcast .send { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 0 16px 16px; }
  .mock.broadcast .send span { color: var(--muted); font-size: 12px; }
  .mock.broadcast .send .btn { font-size: 13px; padding: 8px 16px; }
  .mock.broadcast .sent { border-top: 1px solid var(--line); padding: 12px 16px 14px; }
  .mock.broadcast .sent h5 { font-family: 'Inter', sans-serif; font-size: 11.5px; font-weight: 500; color: var(--muted); margin-bottom: 8px; }
  .mock.broadcast .sent ul { list-style: none; margin: 0; max-width: none; }
  .mock.broadcast .sent li { display: grid; grid-template-columns: 1fr auto; gap: 12px; font-size: 12.5px; padding: 4px 0; border: 0; color: var(--cream); }
  .mock.broadcast .sent li span:last-child { color: var(--muted); font-variant-numeric: tabular-nums; white-space: nowrap; }
  .mock.broadcast .sent li small { color: var(--amber); font-size: 11px; margin-left: 6px; }

  /* Mock: jury scores and the sealed result */
  .mock.jury .cat { padding: 12px 16px 4px; font-size: 12.5px; color: var(--muted); }
  .mock.jury ul { list-style: none; margin: 0; max-width: none; padding: 4px 16px 14px; }
  .mock.jury li { display: grid; grid-template-columns: 1fr 120px 28px; gap: 12px; align-items: center; padding: 7px 0; border: 0; color: var(--cream); font-size: 13px; }
  .mock.jury .track { height: 6px; border-radius: 3px; background: rgba(255,243,234,.1); overflow: hidden; }
  .mock.jury .track i { display: block; height: 100%; background: var(--gradient); border-radius: 3px; }
  .mock.jury li em { font-style: normal; text-align: right; color: var(--muted); font-variant-numeric: tabular-nums; }
  .mock.jury .seal { border-top: 1px solid var(--line); padding: 14px 16px 16px; display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: center; }
  .mock.jury .seal svg { width: 26px; height: 26px; fill: var(--amber); }
  .mock.jury .seal strong { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 14px; }
  .mock.jury .seal span { color: var(--muted); font-size: 12px; }

  /* Email flow diagram: a timeline with two conditional branches */
  .mock.flowchart svg { width: 100%; height: auto; display: block; padding: 10px 6px 4px; }
  .mock.flowchart .t { font: 700 12.5px 'Space Grotesk', sans-serif; fill: var(--amber); }
  .mock.flowchart .l { font: 600 14px 'Inter', sans-serif; fill: var(--cream); }
  .mock.flowchart .s { font: 400 12px 'Inter', sans-serif; fill: var(--muted); }
  .mock.flowchart .b { font: 400 12px 'Inter', sans-serif; fill: var(--muted); }

  /* Real email screenshot on the email page */
  .product .media img.mail-shot { aspect-ratio: auto; width: 100%; max-width: 360px; height: auto; display: block; margin: 0 auto; border-radius: 12px; border: 1px solid var(--line); object-fit: contain; }

  /* Events pages: two portrait photos side by side, photo list on the overview, photo credit */
  .product .media .duo { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .product .media .duo img { aspect-ratio: 4 / 5; }
  .works { margin-top: 40px; color: var(--muted); font-size: 16px; max-width: 58ch; }
  .works a { color: var(--cream); text-underline-offset: 4px; text-decoration-color: var(--amber); }
  .photo-credit { margin-top: 48px; font-size: 13px; color: var(--muted); }
  .subnav.pics a { grid-template-columns: 260px 1fr; align-items: center; gap: 28px; padding: 26px 0; }
  .subnav.pics img { border-radius: 8px; aspect-ratio: 3 / 2; object-fit: cover; }
  .subnav.pics span { display: block; margin-top: 6px; max-width: 52ch; }
  @media (max-width: 600px) { .subnav.pics a { grid-template-columns: 1fr; gap: 14px; } }
