@font-face {
      font-family: "Made Likes Script";
      src: url("/brand/made-likes-script.otf") format("opentype");
      font-display: swap;
    }

    :root {
      color-scheme: light;
      --slide-bg: #fff4f6;
      --slide-title: #37232f;
      --slide-body: #654b59;
      --slide-accent: #ed898b;
      --slide-button-text: #fff4f6;
      --dot-offset: 0px;
      --dot-height: 14px;
      --dot-y-correction: 0px;
      --browser-chrome-bg: #ed898b;
      --safe-top: env(safe-area-inset-top, 0px);
      --safe-right: env(safe-area-inset-right, 0px);
      --safe-bottom: env(safe-area-inset-bottom, 0px);
      --safe-left: env(safe-area-inset-left, 0px);
      --iphone-screen-aspect: 1206 / 2622;
      --iphone-status-bar-pt: 54;
      --iphone-safe-top-pt: 62;
      --iphone-safe-bottom-pt: 34;
      --iphone-dynamic-island-width: 29%;
      --iphone-dynamic-island-top: 1.55%;
      --iphone-dynamic-island-height: 3.55%;
      --phone-border-width: 12px;
      --phone-screen-radius: 42px;
      --shadow-soft: rgba(55, 30, 45, 0.18);
      --shadow-strong: rgba(55, 30, 45, 0.28);
      font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html,
    body {
      width: 100%;
      height: 100%;
      margin: 0;
      overflow: hidden;
      background: var(--browser-chrome-bg, var(--slide-bg));
      color: var(--slide-title);
    }

    body {
      min-width: 320px;
    }

    button,
    a {
      font: inherit;
    }

    button {
      border: 0;
      padding: 0;
      background: none;
      color: inherit;
      cursor: pointer;
    }

    a {
      color: inherit;
    }

    .prototype-shell {
      position: fixed;
      inset: 0;
      display: none;
      overflow: hidden;
      background: var(--browser-chrome-bg, var(--slide-bg));
    }

    html.girlies-welcome-mode .prototype-shell {
      display: block;
      z-index: 10;
    }

    html.girlies-welcome-mode .prototype-shell::before,
    html.girlies-welcome-mode .prototype-shell::after {
      position: fixed;
      left: 0;
      right: 0;
      z-index: 80;
      display: block;
      background: var(--browser-chrome-bg, var(--slide-bg));
      pointer-events: none;
      content: "";
      transition: background-color 120ms linear;
    }

    html.girlies-welcome-mode .prototype-shell::before {
      top: 0;
      height: var(--safe-top);
      min-height: 0;
    }

    html.girlies-welcome-mode .prototype-shell::after {
      bottom: 0;
      height: var(--safe-bottom);
      min-height: 0;
    }

    .brand-chip {
      position: fixed;
      left: calc(28px + var(--safe-left));
      top: calc(22px + var(--safe-top));
      z-index: 30;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--slide-title);
      text-decoration: none;
      transition: color 260ms ease;
    }

    .brand-chip img {
      width: 42px;
      height: 42px;
      filter: drop-shadow(0 10px 20px var(--shadow-soft));
    }

    .brand-chip span {
      font-family: "Made Likes Script", "Segoe Script", cursive;
      font-size: 30px;
      font-weight: 400;
      line-height: 0.9;
      white-space: nowrap;
    }

    .language-selector {
      position: fixed;
      right: calc(28px + var(--safe-right));
      top: calc(22px + var(--safe-top));
      z-index: 40;
      color: var(--slide-title);
      transition: color 120ms linear;
    }

    .language-toggle {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-width: 72px;
      height: 38px;
      padding: 0 14px;
      border: 1px solid color-mix(in srgb, currentColor 24%, transparent);
      border-radius: 999px;
      background: color-mix(in srgb, var(--slide-bg) 72%, rgba(255, 255, 255, 0.7));
      color: inherit;
      box-shadow: 0 12px 30px color-mix(in srgb, var(--shadow-soft) 70%, transparent);
      font-size: 13px;
      font-weight: 900;
      line-height: 1;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      backdrop-filter: blur(14px);
    }

    .language-toggle::after {
      width: 7px;
      height: 7px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      content: "";
      transform: translateY(-2px) rotate(45deg);
      transition: transform 160ms ease;
    }

    .language-selector.is-open .language-toggle::after {
      transform: translateY(2px) rotate(225deg);
    }

    .language-menu {
      position: absolute;
      right: 0;
      top: calc(100% + 8px);
      display: grid;
      gap: 4px;
      min-width: 88px;
      padding: 7px;
      border: 1px solid color-mix(in srgb, currentColor 16%, transparent);
      border-radius: 18px;
      background: color-mix(in srgb, var(--slide-bg) 84%, rgba(255, 255, 255, 0.78));
      box-shadow: 0 18px 44px var(--shadow-soft);
      opacity: 0;
      pointer-events: none;
      transform: translateY(-6px);
      transition: opacity 160ms ease, transform 160ms ease;
      backdrop-filter: blur(16px);
    }

    .language-selector.is-open .language-menu {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .language-option {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 32px;
      padding: 0 12px;
      border-radius: 12px;
      color: inherit;
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      opacity: 0.72;
      transition: background-color 140ms ease, opacity 140ms ease;
    }

    .language-option:hover,
    .language-option[aria-selected="true"] {
      background: color-mix(in srgb, currentColor 10%, transparent);
      opacity: 1;
    }

    .slide-stage {
      position: absolute;
      inset: 0;
      height: 100%;
      overflow-y: auto;
      overscroll-behavior: contain;
      scroll-snap-type: y mandatory;
      scrollbar-width: none;
      touch-action: pan-y;
      -webkit-overflow-scrolling: touch;
    }

    .slide-stage::-webkit-scrollbar {
      display: none;
    }

    .slide {
      height: 100%;
      min-height: 100%;
      scroll-snap-align: start;
      scroll-snap-stop: always;
      overflow: hidden;
      display: grid;
      grid-template-columns: minmax(360px, 0.86fr) minmax(330px, 0.74fr);
      align-items: center;
      justify-content: center;
      column-gap: clamp(28px, 4.5vw, 72px);
      padding:
        calc(90px + var(--safe-top))
        calc(112px + var(--safe-right))
        calc(122px + var(--safe-bottom))
        calc(112px + var(--safe-left));
      background:
        radial-gradient(circle at 17% 18%, var(--local-glow-top, color-mix(in srgb, var(--local-accent) 28%, transparent)), transparent 34rem),
        radial-gradient(circle at 80% 80%, var(--local-glow-bottom, rgba(255, 255, 255, 0.42)), transparent 28rem),
        var(--local-bg);
      backface-visibility: hidden;
      transform: translateZ(0);
      -webkit-transform: translateZ(0);
    }

    .slide-copy {
      justify-self: end;
      width: min(100%, 600px);
      backface-visibility: hidden;
      transform: translateZ(0);
      -webkit-transform: translateZ(0);
    }

    .slide-kicker {
      margin: 0 0 18px 4px;
      color: color-mix(in srgb, var(--local-title) 70%, transparent);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .slide-title {
      margin: 0;
      color: var(--local-title);
      font-size: clamp(46px, 5.4vw, 78px);
      font-weight: 900;
      line-height: 0.96;
      letter-spacing: 0;
      white-space: pre-line;
      text-wrap: balance;
    }

    .slide-body {
      max-width: 560px;
      margin: 26px 0 0;
      color: var(--local-body);
      font-size: clamp(18px, 1.45vw, 22px);
      line-height: 1.48;
      text-wrap: pretty;
    }

    .device-wrap {
      justify-self: start;
      width: min(22.5vw, 302px);
      min-width: 264px;
      perspective: 1200px;
    }

    .phone-frame {
      --phone-frame-color: color-mix(in srgb, var(--local-title) 88%, #181016);
      --phone-local-screen-radius: var(--phone-screen-radius);
      position: relative;
      width: 100%;
      aspect-ratio: var(--iphone-screen-aspect);
      border-radius: var(--phone-local-screen-radius);
      background: var(--phone-frame-color);
      isolation: isolate;
    }

    .phone-frame::before {
      position: absolute;
      inset: calc(var(--phone-border-width) * -1);
      z-index: -1;
      border-radius: calc(var(--phone-local-screen-radius) + var(--phone-border-width));
      background: var(--phone-frame-color);
      box-shadow:
        0 38px 82px var(--shadow-strong),
        inset 0 0 0 1px rgba(255, 255, 255, 0.16);
      content: "";
      transition: background-color 360ms ease;
    }

    .phone-frame::after {
      position: absolute;
      inset: -1px;
      z-index: 2;
      border: 1px solid var(--phone-frame-color);
      border-radius: calc(var(--phone-local-screen-radius) + 1px);
      content: "";
      pointer-events: none;
      transition: border-color 360ms ease;
    }

    .phone-screen {
      position: absolute;
      inset: 0;
      z-index: 1;
      overflow: hidden;
      border-radius: var(--phone-local-screen-radius);
      background: #111;
      isolation: isolate;
    }

    .phone-screen.has-video {
      background: #fff;
    }

    .screen-media {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain;
      object-position: center;
      background: #fff;
    }

    .screen-video {
      position: absolute;
      inset: 0;
      z-index: 2;
      opacity: 0;
      transition: opacity 180ms ease;
      pointer-events: none;
      user-select: none;
      -webkit-user-select: none;
    }

    .screen-video.is-loaded {
      opacity: 1;
    }

    .screen-video::-webkit-media-controls,
    .screen-video::-webkit-media-controls-enclosure,
    .screen-video::-webkit-media-controls-panel,
    .screen-video::-webkit-media-controls-start-playback-button,
    .screen-video::-webkit-media-controls-play-button {
      display: none !important;
      -webkit-appearance: none;
    }

    .phone-screen::before {
      position: absolute;
      left: 50%;
      top: var(--iphone-dynamic-island-top);
      z-index: 3;
      width: var(--iphone-dynamic-island-width);
      height: var(--iphone-dynamic-island-height);
      min-height: 18px;
      border-radius: 999px;
      background: #0c0a0d;
      box-shadow:
        0 0 0 1px rgba(255,255,255,0.08),
        0 7px 18px rgba(0,0,0,0.24);
      content: "";
      transform: translateX(-50%);
    }

    .phone-screen.has-video::before {
      content: none;
      display: none;
    }

    .phone-screen.has-video,
    .phone-screen.has-video .screen-video {
      -webkit-touch-callout: none;
    }

    .desktop-dots {
      position: fixed;
      right: calc(32px + var(--safe-right));
      top: 50%;
      z-index: 32;
      width: 24px;
      transform: translateY(-50%);
    }

    .dot-track {
      position: relative;
      display: grid;
      gap: 12px;
      justify-items: center;
    }

    .desktop-dot {
      --dot-opacity: 0.56;
      --dot-border-mix: 46%;
      --dot-scale: 1;
      position: relative;
      width: 12px;
      height: 12px;
      border: 2px solid color-mix(in srgb, var(--slide-title) var(--dot-border-mix), transparent);
      border-radius: 999px;
      opacity: var(--dot-opacity);
      transform: scale(var(--dot-scale));
      transition: border-color 120ms linear, opacity 120ms linear, transform 120ms linear;
    }

    .desktop-dot:hover {
      opacity: 1;
      transform: scale(1.12);
    }

    .dot-indicator {
      position: absolute;
      left: 50%;
      top: 0;
      width: 14px;
      height: var(--dot-height);
      border-radius: 999px;
      background: var(--slide-title);
      box-shadow:
        0 0 0 6px color-mix(in srgb, var(--slide-title) 12%, transparent),
        0 8px 18px color-mix(in srgb, var(--slide-title) 28%, transparent);
      transform: translate(-50%, calc(var(--dot-offset) - var(--dot-y-correction)));
      transition:
        height 120ms ease,
        background-color 120ms linear,
        box-shadow 120ms linear;
      pointer-events: none;
    }

    .floating-cta {
      position: fixed;
      left: 50%;
      bottom: calc(52px + var(--safe-bottom));
      z-index: 34;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: min(360px, calc(100vw - 42px));
      min-height: 54px;
      padding: 0 32px;
      border-radius: 999px;
      background: var(--slide-title);
      color: var(--slide-button-text);
      box-shadow: 0 18px 40px var(--shadow-strong);
      font-size: 16px;
      font-weight: 900;
      line-height: 1;
      text-align: center;
      text-decoration: none;
      transform: translateX(-50%);
      transition:
        background-color 120ms linear,
        color 120ms linear,
        box-shadow 260ms ease,
        transform 160ms ease;
    }

    .floating-cta:active {
      transform: translateX(-50%) scale(0.98);
    }

    .legal-links {
      position: fixed;
      left: 50%;
      bottom: calc(14px + var(--safe-bottom));
      z-index: 35;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      width: min(100% - 32px, 560px);
      color: color-mix(in srgb, var(--slide-body) 86%, var(--slide-title));
      font-size: 12px;
      font-weight: 800;
      line-height: 1.2;
      text-align: center;
      transform: translateX(-50%);
      transition: color 120ms linear;
    }

    .legal-links a {
      padding: 2px 0;
      color: inherit;
      text-decoration: none;
      border-bottom: 1px solid currentColor;
      opacity: 0.78;
      transition: opacity 160ms ease;
      white-space: nowrap;
    }

    .legal-links a:hover {
      opacity: 1;
    }

    @media (orientation: portrait), (max-width: 820px) {
      :root {
        --phone-border-width: 6px;
        --phone-screen-radius: clamp(17px, 5.2vw, 24px);
      }

      .brand-chip {
        left: calc(18px + var(--safe-left));
        top: calc(18px + var(--safe-top));
      }

      .brand-chip img {
        width: 34px;
        height: 34px;
      }

      .brand-chip span {
        font-size: 25px;
      }

      .language-selector {
        right: calc(18px + var(--safe-right));
        top: calc(18px + var(--safe-top));
      }

      .language-toggle {
        min-width: 62px;
        height: 34px;
        padding-inline: 12px;
        font-size: 12px;
      }

      .slide {
        grid-template-columns: 1fr;
        grid-template-rows: auto minmax(0, 1fr);
        align-items: end;
        row-gap: clamp(28px, 4.2svh, 44px);
        height: 100%;
        min-height: 100%;
        padding:
          calc(70px + var(--safe-top))
          calc(24px + var(--safe-right))
          calc(150px + var(--safe-bottom))
          calc(24px + var(--safe-left));
      }

      .slide-copy {
        justify-self: stretch;
        width: 100%;
        text-align: center;
      }

      .slide-kicker {
        display: none;
      }

      .slide-title {
        font-size: clamp(35px, 10.2vw, 50px);
      }

      .slide-body {
        margin-inline: auto;
        margin-top: 16px;
        font-size: clamp(15px, 4vw, 18px);
        line-height: 1.42;
      }

      .device-wrap {
        align-self: stretch;
        justify-self: stretch;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        width: 100%;
        min-width: 0;
        max-height: none;
      }

      .phone-frame {
        width: auto;
        height: 100%;
        transform: none;
      }

      .desktop-dots {
        right: calc(12px + var(--safe-right));
      }

      .floating-cta {
        min-height: 52px;
        min-width: min(320px, calc(100vw - 96px));
        font-size: 15px;
      }

      .legal-links {
        gap: 10px;
        width: min(100% - 20px, 560px);
        font-size: 9px;
        font-weight: 800;
      }
    }

    @media (orientation: portrait) {
      .brand-chip span {
        display: none;
      }
    }

    @media (max-width: 420px) {
      .slide {
        padding-inline: calc(18px + var(--safe-left)) calc(18px + var(--safe-right));
      }

      .device-wrap {
        width: 100%;
      }

      .slide-title {
        font-size: clamp(31px, 9.4vw, 42px);
      }
    }

    @media (max-height: 720px) and (orientation: portrait) {
      .slide {
        row-gap: clamp(20px, 3.4svh, 30px);
        padding-top: calc(58px + var(--safe-top));
      }

      .device-wrap {
        width: 100%;
      }

      .slide-title {
        font-size: clamp(28px, 8.4vw, 38px);
      }

      .slide-body {
        font-size: 14px;
      }
    }

    @media (max-width: 980px) and (orientation: landscape) {
      .slide {
        grid-template-columns: minmax(300px, 0.92fr) minmax(240px, 0.6fr);
        grid-template-rows: auto;
        align-items: center;
        row-gap: 0;
        padding-block: calc(76px + var(--safe-top)) calc(104px + var(--safe-bottom));
        padding-inline: calc(72px + var(--safe-left)) calc(72px + var(--safe-right));
      }

      .slide-copy {
        justify-self: end;
        width: min(100%, 600px);
        text-align: left;
      }

      .slide-kicker {
        display: block;
      }

      .slide-body {
        margin: 20px 0 0;
      }

      .device-wrap {
        align-self: center;
        width: min(27vw, 300px);
        min-width: 220px;
        display: block;
      }

      .slide-title {
        font-size: clamp(38px, 5vw, 58px);
      }

      .phone-frame {
        width: 100%;
        height: auto;
      }
    }

    @media (max-height: 500px) and (orientation: landscape) {
      .slide {
        padding-block: calc(58px + var(--safe-top)) calc(86px + var(--safe-bottom));
      }

      .slide-copy {
        transform: translateY(-32px);
      }

      .slide-kicker {
        margin-bottom: 10px;
        font-size: 11px;
      }

      .slide-title {
        font-size: clamp(30px, 4.2vw, 42px);
      }

      .slide-body {
        max-width: 460px;
        margin-top: 14px;
        font-size: 15px;
        line-height: 1.36;
      }

      .device-wrap {
        width: min(22vw, 230px);
        min-width: 178px;
      }

      .floating-cta {
        bottom: calc(28px + var(--safe-bottom));
        min-width: min(320px, calc(100vw - 48px));
        min-height: 46px;
      }

      .legal-links {
        bottom: calc(6px + var(--safe-bottom));
        font-size: 8px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
      }
    }
