 :root {
      --font-main: "Quicksand", "Segoe UI", Arial, sans-serif;
      --bg: #f7f6fb;
      --bg-deep: #ffffff;
      --surface: rgba(255, 255, 255, 0.86);
      --surface-strong: #ffffff;
      --surface-soft: rgba(255, 255, 255, 0.7);
      --card: #ffffff;
      --card-2: #f1f0f7;
      --ink: #15151d;
      --text: #343340;
      --muted: #707080;
      --line: rgba(20, 20, 32, 0.1);
      --line-strong: rgba(20, 20, 32, 0.16);
      --nav-bg: rgba(15, 15, 19, 0.72);
      --nav-line: rgba(255, 255, 255, 0.08);
      --footer-bg: #0a0a0e;
      --white: #ffffff;
      --accent-a: #ff298e;
      --accent-b: #fe6249;
      --accent: linear-gradient(135deg, var(--accent-a), var(--accent-b));
      --accent-soft: rgba(255, 41, 142, 0.2);
      --accent-warm: rgba(254, 98, 73, 0.18);
      --shadow-soft: 0 24px 70px rgba(21, 21, 29, 0.1);
      --shadow-card: 0 24px 70px rgba(13, 13, 18, 0.14);
      --radius-xl: 36px;
      --radius-lg: 28px;
      --radius-md: 20px;
      --radius-pill: 999px;
    }

    [data-theme="dark"] {
      --bg: #0f0f13;
      --bg-deep: #17171d;
      --surface: rgba(23, 23, 29, 0.76);
      --surface-strong: #17171d;
      --surface-soft: rgba(255, 255, 255, 0.045);
      --card: rgba(255, 255, 255, 0.062);
      --card-2: rgba(255, 255, 255, 0.085);
      --ink: #ffffff;
      --text: rgba(255, 255, 255, 0.78);
      --muted: rgba(255, 255, 255, 0.56);
      --line: rgba(255, 255, 255, 0.1);
      --line-strong: rgba(255, 255, 255, 0.18);
      --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.38);
      --shadow-card: 0 32px 90px rgba(0, 0, 0, 0.42);
    }

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

    html {
      width: 100%;
      max-width: 100%;
      overflow-x: hidden;
      scroll-behavior: smooth;
      scroll-padding-top: 96px;
    }

    body {
      width: 100%;
      max-width: 100%;
      min-width: 320px;
      margin: 0;
      color: var(--text);
      background:
        radial-gradient(circle at 16% 5%, rgba(255, 41, 142, 0.18), transparent 26rem),
        radial-gradient(circle at 86% 10%, rgba(254, 98, 73, 0.12), transparent 24rem),
        linear-gradient(180deg, var(--bg), var(--bg-deep) 48%, var(--bg));
      font-family: var(--font-main);
      font-weight: 500;
      line-height: 1.55;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    body.modal-open {
      overflow: hidden;
    }

    body::before {
      position: fixed;
      inset: 0;
      z-index: -2;
      pointer-events: none;
      content: "";
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
      background-size: 78px 78px;
      mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 75%);
    }

    [data-theme="light"] body::before {
      background-image:
        linear-gradient(rgba(15, 15, 25, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 15, 25, 0.04) 1px, transparent 1px);
    }

    h1,
    h2,
    h3,
    h4,
    h5 {
      margin: 0;
      color: var(--ink);
      font-weight: 700;
      letter-spacing: 0;
    }

    p {
      margin: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font: inherit;
    }

    :focus-visible {
      outline: 3px solid rgba(255, 41, 142, 0.38);
      outline-offset: 3px;
    }

    .page-shell {
      position: relative;
      width: 100%;
      max-width: 100%;
      overflow-x: hidden;
      isolation: isolate;
    }

    .page-shell::before,
    .page-shell::after {
      position: absolute;
      z-index: -1;
      width: min(34vw, 420px);
      height: min(34vw, 420px);
      pointer-events: none;
      content: "";
      border-radius: 50%;
      filter: blur(76px);
      opacity: 0.44;
    }

    .page-shell::before {
      top: 560px;
      left: -170px;
      background: rgba(255, 41, 142, 0.28);
    }

    .page-shell::after {
      right: -180px;
      bottom: 620px;
      background: rgba(254, 98, 73, 0.25);
    }

    .site-header {
      position: sticky; 
      top: 0;
      z-index: 1000;
      padding: 18px 0;
      background: linear-gradient(180deg, rgba(15, 15, 19, 0.88), rgba(15, 15, 19, 0.58));
      border-bottom: 1px solid var(--nav-line);
      backdrop-filter: blur(22px);
      -webkit-backdrop-filter: blur(22px);
    }

    [data-theme="light"] .site-header {
      background: linear-gradient(180deg, rgba(247, 246, 251, 0.88), rgba(247, 246, 251, 0.62));
      border-bottom-color: rgba(20, 20, 32, 0.08);
      box-shadow: 0 18px 58px rgba(20, 20, 32, 0.08);
    }

    .nav-frame {
      min-height: 64px;
      padding: 10px 12px 10px 18px;
      background: rgba(255, 255, 255, 0.045);
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: 28px;
      box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
    }

    [data-theme="light"] .nav-frame {
      background: rgba(255, 255, 255, 0.68);
      border-color: rgba(20, 20, 32, 0.12);
      box-shadow: 0 22px 72px rgba(20, 20, 32, 0.12);
    }

    .brand-mark {
      display: inline-flex;
      flex: 0 0 auto;
      gap: 12px;
      align-items: center;
      min-width: 0;
      color: #fff;
      font-weight: 700;
      line-height: 1;
      white-space: nowrap;
    }

    [data-theme="light"] .brand-mark {
      color: var(--ink);
    }

    .brand-mark img {
      display: block;
      width: auto;
      max-width: min(188px, 48vw);
      height: 46px;
      object-fit: contain;
    }

    .brand-fallback {
      display: inline-flex;
      gap: 10px;
      align-items: center;
    }

    .brand-fallback[hidden] {
      display: none;
    }

    .brand-symbol {
      display: grid;
      width: 34px;
      height: 34px;
      place-items: center;
      color: #fff;
      font-size: 0.86rem;
      font-weight: 700;
      background: rgba(255, 255, 255, 0.09);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 12px;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
    }

    [data-theme="light"] .brand-symbol {
      color: #fff;
      background: var(--accent);
      border-color: rgba(255, 41, 142, 0.26);
      box-shadow: 0 10px 24px rgba(255, 41, 142, 0.18);
    }

    .brand-text {
      color: #fff;
      font-size: 1.04rem;
      font-weight: 700;
      letter-spacing: 0;
    }

    [data-theme="light"] .brand-text {
      color: var(--ink);
    }

    .nav-center {
      display: flex;
      gap: clamp(14px, 2.2vw, 28px);
      align-items: center;
      justify-content: center;
      min-width: 0;
      color: rgba(255, 255, 255, 0.72);
      font-size: 0.94rem;
      font-weight: 700;
    }

    [data-theme="light"] .nav-center {
      color: rgba(21, 21, 29, 0.68);
    }

    .nav-center a {
      position: relative;
      padding: 8px 0;
      transition: color 180ms ease;
    }

    .nav-center a::after {
      position: absolute;
      right: 0;
      bottom: 2px;
      left: 0;
      height: 2px;
      content: "";
      background: var(--accent);
      border-radius: 999px;
      opacity: 0;
      transform: scaleX(0.45);
      transition: opacity 180ms ease, transform 180ms ease;
    }

    .nav-center a:hover,
    .nav-center a:focus {
      color: #fff;
    }

    [data-theme="light"] .nav-center a:hover,
    [data-theme="light"] .nav-center a:focus {
      color: var(--ink);
    }

    .nav-center a:hover::after,
    .nav-center a:focus::after {
      opacity: 1;
      transform: scaleX(1);
    }

    .nav-actions {
      display: flex;
      gap: 10px;
      align-items: center;
      justify-content: flex-end;
    }

    .btn-cta,
    .btn-outline-cta,
    .btn-soft {
      display: inline-flex;
      gap: 9px;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 13px 22px;
      border-radius: var(--radius-pill);
      font-weight: 700;
      line-height: 1;
      transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
    }

    .btn-cta {
      color: #fff;
      background: var(--accent);
      border: 0;
      box-shadow: 0 16px 38px rgba(255, 41, 142, 0.28);
    }

    .btn-cta:hover,
    .btn-outline-cta:hover,
    .btn-soft:hover {
      transform: translateY(-2px);
    }

    .btn-cta:hover {
      color: #fff;
      box-shadow: 0 20px 46px rgba(254, 98, 73, 0.32);
    }

    .btn-outline-cta {
      color: var(--ink);
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--line-strong);
    }

    .btn-outline-cta:hover {
      color: var(--ink);
      border-color: rgba(255, 41, 142, 0.45);
      box-shadow: 0 18px 42px rgba(255, 41, 142, 0.08);
    }

    .btn-soft {
      color: var(--ink);
      background: var(--surface-soft);
      border: 1px solid var(--line);
    }

    .theme-toggle,
    .nav-toggle {
      display: inline-grid;
      width: 46px;
      height: 46px;
      place-items: center;
      color: #fff;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 50%;
      transition: transform 180ms ease, background 180ms ease;
    }

    [data-theme="light"] .theme-toggle,
    [data-theme="light"] .nav-toggle {
      color: var(--ink);
      background: rgba(255, 255, 255, 0.82);
      border-color: rgba(20, 20, 32, 0.13);
      box-shadow: 0 12px 26px rgba(20, 20, 32, 0.08);
    }

    .theme-toggle:hover,
    .nav-toggle:hover {
      transform: translateY(-1px);
      background: rgba(255, 255, 255, 0.12);
    }

    .nav-toggle {
      display: none;
    }

    .mobile-menu {
      display: grid;
      max-height: 0;
      padding: 0 4px;
      overflow: hidden;
      opacity: 0;
      transform: translateY(12px);
      transition: max-height 260ms ease, opacity 220ms ease, padding 220ms ease, transform 260ms ease;
    }

    .mobile-menu.is-open {
      max-height: 360px;
      padding: 12px 4px 2px;
      opacity: 1;
      transform: translateY(0);
    }

    .mobile-menu a {
      display: block;
      padding: 13px 16px;
      color: rgba(255, 255, 255, 0.78);
      font-weight: 700;
      border-radius: 16px;
      opacity: 0;
      transform: translateY(14px);
      transition: color 180ms ease, background 180ms ease, opacity 240ms ease, transform 240ms ease;
    }

    .mobile-menu.is-open a {
      opacity: 1;
      transform: translateY(0);
    }

    .mobile-menu.is-open a:nth-child(2) {
      transition-delay: 35ms;
    }

    .mobile-menu.is-open a:nth-child(3) {
      transition-delay: 70ms;
    }

    .mobile-menu.is-open a:nth-child(4) {
      transition-delay: 105ms;
    }

    .mobile-menu.is-open a:nth-child(5) {
      transition-delay: 140ms;
    }

    .mobile-menu.is-open a:nth-child(6) {
      transition-delay: 175ms;
    }

    [data-theme="light"] .mobile-menu a {
      color: rgba(21, 21, 29, 0.76);
    }

    .mobile-menu a:hover,
    .mobile-menu a:focus {
      color: #fff;
      background: rgba(255, 255, 255, 0.07);
    }

    [data-theme="light"] .mobile-menu a:hover,
    [data-theme="light"] .mobile-menu a:focus {
      color: var(--ink);
      background: rgba(20, 20, 32, 0.055);
    }

    .section {
      padding: clamp(72px, 8vw, 118px) 0;
    }

    .hero-section {
      min-height: auto;
      padding-top: clamp(54px, 6vw, 86px);
      padding-bottom: clamp(58px, 5vw, 82px);
    }

    .eyebrow {
      display: inline-flex;
      gap: 9px;
      align-items: center;
      margin-bottom: 20px;
      color: var(--muted);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      width: 8px;
      height: 8px;
      content: "";
      background: var(--accent);
      border-radius: 50%;
      box-shadow: 0 0 24px rgba(255, 41, 142, 0.75);
    }

    .hero-copy h1 {
      max-width: 660px;
      font-size: clamp(4rem, 8.6vw, 8.2rem);
      line-height: 0.9;
    }

    .gradient-text {
      color: transparent;
      background: linear-gradient(120deg, #fff 0%, #ffadd1 45%, #fe6249 100%);
      -webkit-background-clip: text;
      background-clip: text;
    }

    [data-theme="light"] .gradient-text {
      background: linear-gradient(120deg, #15151d 5%, #ff298e 52%, #fe6249 100%);
      -webkit-background-clip: text;
      background-clip: text;
    }

    .hero-copy p {
      max-width: 520px;
      margin-top: 24px;
      color: var(--text);
      font-size: clamp(1.06rem, 1.6vw, 1.34rem);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .metric-strip {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      max-width: 560px;
      margin-top: 46px;
    }

    .mini-metric {
      min-height: 104px;
      padding: 18px;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 24px;
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
    }

    .mini-metric strong {
      display: block;
      color: var(--ink);
      font-size: clamp(1.25rem, 2vw, 1.72rem);
      line-height: 1;
    }

    .mini-metric span {
      display: block;
      margin-top: 9px;
      color: var(--muted);
      font-size: 0.86rem;
      font-weight: 700;
    }

    .hero-card-wrap {
      position: relative;
    }

    .hero-card-wrap::before {
      position: absolute;
      inset: -50px -32px auto auto;
      width: min(50vw, 540px);
      height: min(50vw, 540px);
      content: "";
      background:
        radial-gradient(circle at 35% 40%, rgba(255, 41, 142, 0.62), transparent 34%),
        radial-gradient(circle at 66% 58%, rgba(254, 98, 73, 0.58), transparent 36%),
        radial-gradient(circle at 51% 72%, rgba(130, 86, 255, 0.28), transparent 36%);
      border-radius: 50%;
      filter: blur(58px);
      opacity: 0.66;
      transform: rotate(-12deg);
    }

    .dashboard-card {
      position: relative;
      z-index: 1;
      max-width: 550px;
      margin-left: auto;
      padding: clamp(22px, 3vw, 30px);
      overflow: hidden;
      background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.035)),
        var(--surface);
      border: 1px solid var(--line-strong);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-card);
      backdrop-filter: blur(26px);
      -webkit-backdrop-filter: blur(26px);
    }

    [data-theme="light"] .dashboard-card {
      background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.7)),
        var(--surface);
    }

    .dashboard-card::after {
      position: absolute;
      right: -18%;
      bottom: -22%;
      width: 290px;
      height: 290px;
      content: "";
      background: radial-gradient(circle, rgba(255, 41, 142, 0.28), transparent 68%);
      border-radius: 50%;
    }

    .dashboard-topbar {
      display: flex;
      gap: 12px;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 18px;
    }

    .traffic {
      display: flex;
      gap: 7px;
      align-items: center;
    }

    .traffic span {
      width: 10px;
      height: 10px;
      background: rgba(255, 255, 255, 0.24);
      border-radius: 50%;
    }

    .traffic span:nth-child(1) {
      background: #ff5f7d;
    }

    .traffic span:nth-child(2) {
      background: #ffc857;
    }

    .traffic span:nth-child(3) {
      background: #49d17c;
    }

    .sync-pill {
      display: inline-flex;
      gap: 8px;
      align-items: center;
      color: var(--muted);
      font-size: 0.8rem;
      font-weight: 700;
    }

    .sync-pill::before {
      width: 8px;
      height: 8px;
      content: "";
      background: #49d17c;
      border-radius: 50%;
      box-shadow: 0 0 16px rgba(73, 209, 124, 0.58);
    }

    .hero-tabs {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px;
      padding: 6px;
      margin-bottom: 22px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--line);
      border-radius: 20px;
    }

    [data-theme="light"] .hero-tabs {
      background: rgba(20, 20, 32, 0.045);
    }

    .hero-tab {
      min-height: 46px;
      padding: 10px 12px;
      color: var(--muted);
      font-size: 0.86rem;
      font-weight: 700;
      background: transparent;
      border: 0;
      border-radius: 16px;
      transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
    }

    .hero-tab.is-active {
      color: #fff;
      background: var(--accent);
      box-shadow: 0 12px 30px rgba(255, 41, 142, 0.23);
    }

    .problem-panel {
      position: relative;
      z-index: 1;
      padding: clamp(20px, 3vw, 28px);
      background: rgba(255, 255, 255, 0.055);
      border: 1px solid var(--line);
      border-radius: 26px;
    }

    [data-theme="light"] .problem-panel {
      background: rgba(255, 255, 255, 0.74);
    }

    .problem-panel h3 {
      margin-bottom: 12px;
      font-size: clamp(1.32rem, 2vw, 1.72rem);
    }

    .problem-copy {
      min-height: 48px;
      margin-bottom: 22px;
      color: var(--muted);
      font-weight: 600;
    }

    .problem-list {
      display: grid;
      gap: 12px;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .problem-list li {
      display: flex;
      gap: 12px;
      align-items: center;
      min-height: 48px;
      padding: 12px 14px;
      color: var(--ink);
      font-weight: 700;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--line);
      border-radius: 18px;
    }

    [data-theme="light"] .problem-list li {
      background: rgba(20, 20, 32, 0.035);
    }

    .check-dot {
      display: inline-grid;
      flex: 0 0 auto;
      width: 26px;
      height: 26px;
      place-items: center;
      color: #fff;
      background: var(--accent);
      border-radius: 50%;
      box-shadow: 0 8px 20px rgba(255, 41, 142, 0.28);
    }

    .dashboard-foot {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 16px;
    }

    .portfolio-sample {
      position: relative;
      min-height: 132px;
      padding: 18px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--line);
      border-radius: 22px;
      isolation: isolate;
    }

    [data-theme="light"] .portfolio-sample {
      background: rgba(20, 20, 32, 0.035);
    }

    .portfolio-sample::before {
      position: absolute;
      inset: 0;
      z-index: -1;
      content: "";
      background:
        radial-gradient(circle at 18% 20%, rgba(255, 41, 142, 0.3), transparent 24%),
        radial-gradient(circle at 84% 78%, rgba(254, 98, 73, 0.22), transparent 28%);
    }

    .portfolio-avatar {
      display: grid;
      width: 42px;
      height: 42px;
      place-items: center;
      color: #fff;
      font-weight: 700;
      background: var(--accent);
      border-radius: 50%;
      box-shadow: 0 12px 24px rgba(255, 41, 142, 0.2);
    }

    .portfolio-sample small {
      display: block;
      margin-top: 14px;
      color: var(--muted);
      font-size: 0.78rem;
      font-weight: 700;
    }

    .portfolio-sample strong {
      display: block;
      margin-top: 6px;
      color: var(--ink);
      font-size: 1.04rem;
      line-height: 1;
    }

    .portfolio-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 12px;
    }

    .portfolio-tags span {
      padding: 5px 8px;
      color: var(--text);
      font-size: 0.68rem;
      font-weight: 700;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid var(--line);
      border-radius: 999px;
    }

    .section-heading {
      max-width: 700px;
      margin-bottom: clamp(28px, 4vw, 48px);
    }

    .section-heading.centered {
      margin-right: auto;
      margin-left: auto;
      text-align: center;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      margin-bottom: 12px;
      color: var(--accent-a);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .section-heading h2 {
      font-size: clamp(2.35rem, 5vw, 4.9rem);
      line-height: 0.98;
    }

    .section-heading p {
      max-width: 590px;
      margin-top: 18px;
      color: var(--muted);
      font-size: clamp(1rem, 1.3vw, 1.16rem);
    }

    .section-heading.centered p {
      margin-right: auto;
      margin-left: auto;
    }

    .media-card,
    .benefit-card,
    .testimonial-card,
    .testimonial-feature,
    .pricing-card,
    .faq-card,
    .contact-card {
      background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
        var(--card);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
    }

    [data-theme="light"] .media-card,
    [data-theme="light"] .benefit-card,
    [data-theme="light"] .testimonial-card,
    [data-theme="light"] .testimonial-feature,
    [data-theme="light"] .pricing-card,
    [data-theme="light"] .faq-card,
    [data-theme="light"] .contact-card {
      background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
        var(--card);
    }

    .media-card {
      position: relative;
      min-height: 400px;
      overflow: hidden;
      border-radius: var(--radius-xl);
      isolation: isolate;
    }

    .portfolio-card {
      min-height: 470px;
    }

    .media-card::before {
      position: absolute;
      inset: 0;
      z-index: -1;
      content: "";
      background:
        radial-gradient(circle at 22% 20%, rgba(255, 41, 142, 0.36), transparent 24%),
        radial-gradient(circle at 78% 74%, rgba(254, 98, 73, 0.3), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015));
    }

    .media-card::after {
      position: absolute;
      inset: 26px;
      content: "";
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 28px;
      background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
      background-size: 48px 48px;
      opacity: 0.5;
      mask-image: linear-gradient(to bottom right, black, transparent 74%);
    }

    [data-theme="light"] .media-card::after {
      border-color: rgba(20, 20, 32, 0.08);
      background:
        linear-gradient(90deg, rgba(20, 20, 32, 0.08) 1px, transparent 1px),
        linear-gradient(rgba(20, 20, 32, 0.08) 1px, transparent 1px);
    }

    .media-content {
      position: absolute;
      inset: auto 26px 26px 26px;
      z-index: 1;
      display: flex;
      gap: 18px;
      align-items: end;
      justify-content: space-between;
    }

    .media-label {
      max-width: 300px;
      color: var(--ink);
    }

    .media-label span {
      display: block;
      color: var(--muted);
      font-size: 0.84rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .media-label strong {
      display: block;
      margin-top: 8px;
      font-size: clamp(1.35rem, 2.6vw, 2.16rem);
      line-height: 1.04;
    }

    .play-button {
      display: grid;
      flex: 0 0 auto;
      width: 74px;
      height: 74px;
      place-items: center;
      color: #fff;
      background: var(--accent);
      border: 0;
      border-radius: 50%;
      box-shadow: 0 20px 44px rgba(255, 41, 142, 0.34);
    }

    .play-button svg {
      margin-left: 4px;
    }

    .portfolio-copy {
      max-width: 520px;
    }

    .portfolio-copy p {
      margin-top: 20px;
      color: var(--muted);
      font-size: 1.1rem;
    }

    .portfolio-copy .btn-cta {
      margin-top: 30px;
    }

    .feature-list {
      display: grid;
      gap: 12px;
      padding: 0;
      margin: 34px 0 0;
      list-style: none;
    }

    .feature-list li {
      display: flex;
      gap: 12px;
      align-items: center;
      color: var(--ink);
      font-weight: 700;
    }

    .feature-list .check-dot {
      width: 24px;
      height: 24px;
    }

    .benefit-card {
      height: 100%;
      min-height: 268px;
      padding: 28px;
      border-radius: var(--radius-lg);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .benefits-carousel {
      position: relative;
    }

    .benefit-card:hover {
      border-color: rgba(255, 41, 142, 0.34);
      box-shadow: 0 24px 70px rgba(255, 41, 142, 0.11);
      transform: translateY(-6px);
    }

    .line-icon {
      display: inline-grid;
      width: 54px;
      height: 54px;
      place-items: center;
      color: #fff;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid var(--line-strong);
      border-radius: 18px;
    }

    [data-theme="light"] .line-icon {
      color: #15151d;
      background: rgba(20, 20, 32, 0.04);
    }

    .benefit-card h3 {
      margin-top: 22px;
      font-size: 1.34rem;
    }

    .benefit-card p {
      margin-top: 12px;
      color: var(--muted);
    }

    .testimonial-feature {
      position: relative;
      height: 100%;
      min-height: 430px;
      padding: clamp(28px, 4vw, 48px);
      overflow: hidden;
      border-radius: var(--radius-lg);
      isolation: isolate;
    }

    .testimonial-feature::before {
      position: absolute;
      inset: auto -90px -120px auto;
      z-index: -1;
      width: 360px;
      height: 360px;
      content: "";
      background:
        radial-gradient(circle at 42% 42%, rgba(255, 41, 142, 0.38), transparent 34%),
        radial-gradient(circle at 64% 62%, rgba(254, 98, 73, 0.34), transparent 36%);
      border-radius: 50%;
      filter: blur(16px);
    }

    .testimonial-quote-mark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 54px;
      height: 54px;
      color: #fff;
      font-size: 2rem;
      font-weight: 700;
      background: var(--accent);
      border-radius: 18px;
      box-shadow: 0 14px 30px rgba(255, 41, 142, 0.26);
    }

    .testimonial-feature blockquote {
      max-width: 640px;
      margin: 28px 0 0;
      color: var(--ink);
      font-size: clamp(1.65rem, 3vw, 3rem);
      font-weight: 700;
      line-height: 1.08;
    }

    .testimonial-feature p {
      max-width: 560px;
      margin-top: 20px;
      color: var(--muted);
      font-size: 1.05rem;
    }

    .testimonial-author {
      display: flex;
      gap: 14px;
      align-items: center;
      margin-top: 34px;
    }

    .testimonial-avatar {
      display: grid;
      width: 52px;
      height: 52px;
      place-items: center;
      color: #fff;
      font-weight: 700;
      background: var(--accent);
      border-radius: 50%;
      box-shadow: 0 14px 28px rgba(255, 41, 142, 0.2);
    }

    .testimonial-author strong,
    .testimonial-card strong {
      display: block;
      color: var(--ink);
      font-size: 1rem;
    }

    .testimonial-author span,
    .testimonial-card span {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-size: 0.88rem;
      font-weight: 700;
    }

    .testimonial-card {
      height: 100%;
      min-height: 205px;
      padding: 26px;
      border-radius: var(--radius-lg);
    }

    .testimonial-card p {
      margin-top: 18px;
      color: var(--text);
      font-size: 1.02rem;
      font-weight: 600;
    }

    .testimonial-shell {
      padding: clamp(18px, 3vw, 28px);
      background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
        var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
    }

    [data-theme="light"] .testimonial-shell {
      background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
        var(--card);
    }

    .testimonial-tabs {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 8px;
      padding: 6px;
      margin-bottom: 22px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--line);
      border-radius: 20px;
    }

    [data-theme="light"] .testimonial-tabs {
      background: rgba(20, 20, 32, 0.045);
    }

    .testimonial-tab {
      min-height: 46px;
      padding: 10px;
      color: var(--muted);
      font-size: 0.86rem;
      font-weight: 700;
      background: transparent;
      border: 0;
      border-radius: 16px;
      transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
    }

    .testimonial-tab.is-active {
      color: #fff;
      background: var(--accent);
      box-shadow: 0 12px 30px rgba(255, 41, 142, 0.23);
    }

    .testimonial-panel {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
      gap: 22px;
      align-items: stretch;
    }

    .testimonial-video {
      position: relative;
      min-height: 330px;
      overflow: hidden;
      background: #07070a;
      border: 1px solid var(--line);
      border-radius: 26px;
    }

    .testimonial-video iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .testimonial-copy-card {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 330px;
      padding: clamp(22px, 3vw, 32px);
      background: rgba(255, 255, 255, 0.055);
      border: 1px solid var(--line);
      border-radius: 26px;
    }

    [data-theme="light"] .testimonial-copy-card {
      background: rgba(255, 255, 255, 0.72);
    }

    .testimonial-copy-card .section-kicker {
      margin-bottom: 14px;
    }

    .testimonial-copy-card p {
      color: var(--ink);
      font-size: clamp(1.15rem, 2vw, 1.55rem);
      font-weight: 700;
      line-height: 1.25;
    }

    .testimonial-user {
      display: flex;
      gap: 12px;
      align-items: center;
      margin-top: 28px;
    }

    .testimonial-user-avatar {
      display: grid;
      width: 46px;
      height: 46px;
      place-items: center;
      color: #fff;
      font-weight: 700;
      background: var(--accent);
      border-radius: 50%;
    }

    .testimonial-user strong {
      display: block;
      color: var(--ink);
      font-size: 1rem;
    }

    .testimonial-user span,
    .testimonial-embed-link {
      display: block;
      color: var(--muted);
      font-size: 0.84rem;
      font-weight: 700;
    }

    .testimonial-embed-link {
      margin-top: 18px;
      word-break: break-word;
    }

    .faq-card,
    .pricing-card {
      height: 100%;
      padding: clamp(24px, 3vw, 32px);
      border-radius: var(--radius-lg);
    }

    .faq-card h2,
    .pricing-card h2 {
      margin-bottom: 22px;
      font-size: clamp(1.55rem, 2.5vw, 2.1rem);
    }

    .faq-item {
      border-top: 1px solid var(--line);
    }

    .faq-item:first-of-type {
      border-top: 0;
    }

    .faq-question {
      display: flex;
      gap: 16px;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      min-height: 64px;
      padding: 18px 0;
      color: var(--ink);
      font-weight: 700;
      text-align: left;
      background: transparent;
      border: 0;
    }

    .faq-question svg {
      flex: 0 0 auto;
      transition: transform 180ms ease;
    }

    .faq-question[aria-expanded="true"] svg {
      transform: rotate(45deg);
    }

    .faq-answer {
      display: grid;
      grid-template-rows: 0fr;
      color: var(--muted);
      transition: grid-template-rows 220ms ease;
    }

    .faq-answer > div {
      overflow: hidden;
    }

    .faq-answer p {
      padding: 0 28px 18px 0;
    }

    .faq-question[aria-expanded="true"] + .faq-answer {
      grid-template-rows: 1fr;
    }

    .pricing-card {
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }

    .pricing-card::before {
      position: absolute;
      inset: auto -80px -100px auto;
      z-index: -1;
      width: 280px;
      height: 280px;
      content: "";
      background: radial-gradient(circle, rgba(255, 41, 142, 0.34), transparent 66%);
      border-radius: 50%;
      filter: blur(12px);
    }

    .pricing-card p {
      max-width: 390px;
      color: var(--muted);
    }

    .price-line {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: baseline;
      margin: 28px 0;
      color: var(--ink);
    }

    .price-line strong {
      font-size: clamp(2.4rem, 5vw, 4rem);
      line-height: 1;
    }

    .price-line span {
      color: var(--muted);
      font-weight: 700;
    }

    .pricing-list {
      display: grid;
      gap: 12px;
      padding: 0;
      margin: 0 0 28px;
      color: var(--ink);
      font-weight: 700;
      list-style: none;
    }

    .pricing-list li {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .contact-card {
      position: relative;
      max-width: 940px;
      padding: clamp(44px, 7vw, 82px) clamp(22px, 6vw, 74px);
      margin: 0 auto;
      overflow: hidden;
      text-align: center;
      border-color: rgba(255, 255, 255, 0.14);
      border-radius: 40px;
      isolation: isolate;
    }

    .contact-card::before {
      position: absolute;
      inset: 0;
      z-index: -1;
      content: "";
      background:
        radial-gradient(circle at 22% 24%, rgba(255, 41, 142, 0.34), transparent 28%),
        radial-gradient(circle at 80% 78%, rgba(254, 98, 73, 0.28), transparent 26%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    }

    .contact-card h2 {
      font-size: clamp(2.4rem, 5vw, 5rem);
      line-height: 1;
    }

    .contact-card p {
      margin: 18px auto 0;
      max-width: 520px;
      color: var(--text);
      font-size: 1.1rem;
    }

    .contact-card .btn-cta {
      margin-top: 30px;
    }

    .contact-actions {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 12px;
      max-width: 760px;
      margin: 32px auto 0;
    }

    .contact-action {
      display: inline-flex;
      flex-direction: column;
      gap: 10px;
      align-items: center;
      justify-content: center;
      min-height: 112px;
      padding: 16px 10px;
      color: var(--ink);
      font-weight: 700;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid var(--line);
      border-radius: 22px;
      transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
    }

    button.contact-action {
      cursor: pointer;
    }

    [data-theme="light"] .contact-action {
      background: rgba(255, 255, 255, 0.72);
    }

    .contact-action:hover,
    .contact-action:focus {
      color: var(--ink);
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 41, 142, 0.4);
      transform: translateY(-3px);
    }

    .contact-action svg {
      width: 28px;
      height: 28px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.9;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .contact-modal {
      position: fixed;
      inset: 0;
      z-index: 1400;
      display: grid;
      place-items: center;
      padding: 22px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 220ms ease;
    }

    .contact-modal.is-open {
      opacity: 1;
      pointer-events: auto;
    }

    .contact-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(5, 5, 8, 0.68);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }

    .contact-modal-panel {
      position: relative;
      z-index: 1;
      width: min(100%, 520px);
      padding: clamp(26px, 5vw, 38px);
      background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
        var(--surface-strong);
      border: 1px solid var(--line-strong);
      border-radius: 28px;
      box-shadow: var(--shadow-card);
      opacity: 0;
      transform: translateY(22px) scale(0.98);
      transition: opacity 260ms ease, transform 260ms ease;
    }

    .contact-modal.is-open .contact-modal-panel {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .contact-modal-panel h2 {
      font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .contact-modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      display: grid;
      width: 42px;
      height: 42px;
      place-items: center;
      color: var(--ink);
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid var(--line);
      border-radius: 50%;
    }

    .contact-modal-close svg {
      width: 21px;
      height: 21px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
    }

    .contact-form {
      display: grid;
      gap: 16px;
      margin-top: 24px;
    }

    .contact-form label {
      display: grid;
      gap: 8px;
      color: var(--ink);
      font-weight: 700;
    }

    .contact-form input {
      width: 100%;
      min-height: 52px;
      padding: 13px 15px;
      color: var(--ink);
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--line);
      border-radius: 16px;
    }

    [data-theme="light"] .contact-form input {
      background: rgba(20, 20, 32, 0.035);
    }

    .contact-form .btn-cta {
      width: 100%;
      margin-top: 6px;
    }

    .site-footer {
      padding: 34px 0;
      color: var(--muted);
      background: rgba(10, 10, 14, 0.72);
      border-top: 1px solid var(--line);
    }

    [data-theme="light"] .site-footer {
      background: rgba(255, 255, 255, 0.7);
    }

    .footer-inner {
      display: flex;
      gap: 24px;
      align-items: center;
      justify-content: space-between;
    }

    .footer-copy {
      color: var(--text);
      font-weight: 700;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 24px;
      justify-content: flex-end;
      font-weight: 700;
    }

    .footer-links a {
      color: var(--muted);
      transition: color 160ms ease;
    }

    .footer-links a:hover,
    .footer-links a:focus {
      color: var(--ink);
    }

    .mobile-cta-bar {
      position: fixed;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 1200;
      display: none;
      gap: 12px;
      align-items: center;
      width: auto;
      max-width: none;
      padding: 10px max(14px, env(safe-area-inset-left)) calc(10px + env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
      background: rgba(15, 15, 19, 0.88);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      box-sizing: border-box;
      box-shadow: 0 -22px 50px rgba(0, 0, 0, 0.28);
      transform: translateZ(0);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
    }

    [data-theme="light"] .mobile-cta-bar {
      background: rgba(255, 255, 255, 0.88);
      border-top-color: rgba(20, 20, 32, 0.1);
      box-shadow: 0 -18px 44px rgba(20, 20, 32, 0.12);
    }

    .mobile-cta-bar a {
      flex: 1;
      min-width: 0;
      min-height: 45px;
      padding: 15px 12px;
      border-radius: var(--radius-pill);
      font-weight: 700;
      line-height: 1;
      text-align: center;
      white-space: nowrap;
    }

    .mobile-cta-artist {
      color: #fff;
      background: var(--accent);
      box-shadow: 0 14px 30px rgba(255, 41, 142, 0.22);
    }

    .mobile-cta-venue {
      color: #fff;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.16);
    }

    [data-theme="light"] .mobile-cta-venue {
      color: var(--ink);
      background: #fff;
      border-color: rgba(20, 20, 32, 0.16);
    }

    .reveal {
      animation: revealUp 780ms ease both;
    }

    .reveal-delay-1 {
      animation-delay: 100ms;
    }

    .reveal-delay-2 {
      animation-delay: 180ms;
    }

    .reveal-delay-3 {
      animation-delay: 260ms;
    }

    .reveal-on-scroll {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 620ms ease, transform 620ms ease;
      transition-delay: var(--reveal-delay, 0ms);
      will-change: opacity, transform;
    }

    .reveal-on-scroll.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    @keyframes revealUp {
      from {
        opacity: 0;
        transform: translateY(22px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

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

    @media (max-width: 1199.98px) {
      .hero-copy h1 {
        font-size: clamp(3.5rem, 9.5vw, 6.8rem);
      }

      .dashboard-card {
        margin: 0 auto;
      }
    }

    @media (max-width: 991.98px) {
      .site-header {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        padding: 12px 0;
      }

      main {
        padding-top: 88px;
      }

      .nav-frame {
        border-radius: 24px;
      }

      .nav-center,
      .desktop-signup {
        display: none;
      }

      .nav-toggle {
        display: inline-grid;
      }

      .hero-section {
        min-height: auto;
        padding-top: 30px;
      }

      .hero-copy {
        text-align: center;
      }

      .hero-copy h1,
      .hero-copy p {
        margin-right: auto;
        margin-left: auto;
      }

      .hero-actions,
      .metric-strip {
        justify-content: center;
        margin-right: auto;
        margin-left: auto;
      }

      .dashboard-card {
        margin-top: 38px;
      }

      .portfolio-copy {
        max-width: 680px;
      }

      .footer-inner {
        align-items: flex-start;
        flex-direction: column;
      }

      .footer-links {
        justify-content: flex-start;
      }
    }

    @media (max-width: 767.98px) {
      html,
      body {
        overscroll-behavior-x: none;
      }

      body {
        padding-bottom: calc(86px + env(safe-area-inset-bottom));
      }

      .section {
        padding: 25px 0;
      }

      .container {
        width: 100%;
        max-width: 100%;
      }

      .hero-section {
        padding-top: 26px;
      }

      .hero-copy,
      .hero-card-wrap,
      .dashboard-card {
        width: 100%;
        max-width: 100%;
      }

      .eyebrow {
        max-width: 100%;
        font-size: 0.72rem;
        letter-spacing: 0.08em;
      }

      .hero-copy h1 {
        width: 100%;
        max-width: min(100%, 360px);
        font-size: clamp(3rem, 14vw, 3.9rem);
        line-height: 0.96;
      }

      .hero-copy p {
        max-width: 340px;
        font-size: 1rem;
      }

      .hero-actions,
      .metric-strip {
        width: 100%;
        max-width: 100%;
      }

      .portfolio-copy .btn-cta,
      .pricing-card .btn-cta {
        width: 100%;
      }

      .contact-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
      }

      .contact-action {
        min-height: 98px;
        border-radius: 20px;
      }

      .hero-actions {
        flex-wrap: nowrap;
        gap: 10px;
      }

      .hero-actions .btn-cta,
      .hero-actions .btn-outline-cta {
        flex: 1 1 0;
        min-width: 0;
        padding: 13px 10px;
        font-size: clamp(0.76rem, 3.2vw, 0.9rem);
        white-space: nowrap;
      }

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

      .metric-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
      }

      .mini-metric {
        min-width: 0;
        min-height: auto;
        padding: 14px 10px;
        text-align: left;
        border-radius: 22px;
      }

      .mini-metric strong {
        font-size: clamp(1.35rem, 7.8vw, 2.1rem);
      }

      .mini-metric span {
        font-size: clamp(0.72rem, 2.8vw, 0.86rem);
      }

      .hero-tabs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
        width: 100%;
        padding: 6px;
      }

      .hero-tab {
        min-width: 0;
        min-height: 48px;
        padding: 10px 6px;
        font-size: clamp(0.68rem, 2.7vw, 0.82rem);
        white-space: nowrap;
      }

      .testimonial-panel {
        grid-template-columns: 1fr;
      }

      .benefits-carousel {
        display: flex;
        flex-wrap: nowrap;
        gap: 16px;
        margin-right: -16px;
        margin-left: -16px;
        padding: 0 16px 8px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
      }

      .benefits-carousel::-webkit-scrollbar {
        display: none;
      }

      .benefits-carousel > [class*="col-"] {
        flex: 0 0 82%;
        max-width: 82%;
        scroll-snap-align: start;
      }

      .benefits-carousel .benefit-card {
        min-height: 260px;
      }

      .testimonial-tabs {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 6px;
        width: 100%;
        padding: 6px;
        overflow: visible;
      }

      .testimonial-tab {
        min-width: 0;
        min-height: 42px;
        padding: 10px 4px;
        font-size: clamp(0.62rem, 2.4vw, 0.78rem);
        white-space: nowrap;
      }

      .testimonial-video,
      .testimonial-copy-card {
        min-height: 260px;
      }

      .testimonial-shell {
        border-radius: 24px;
      }

      .portfolio-card,
      .media-card {
        min-height: 360px;
      }

      .media-content {
        inset: auto 18px 18px;
        align-items: flex-start;
        flex-direction: column;
      }

      .footer-links {
        width: 100%;
      }

      .mobile-cta-bar {
        display: flex;
      }
    }

    @media (max-width: 575.98px) {
      .container {
        padding-right: 16px;
        padding-left: 16px;
      }

      .site-header .container {
        padding-right: 12px;
        padding-left: 12px;
      }

      .nav-frame {
        padding-left: 12px;
      }

      .brand-text {
        font-size: 0.94rem;
      }

      .brand-symbol {
        width: 32px;
        height: 32px;
      }

      .theme-toggle,
      .nav-toggle {
        width: 42px;
        height: 42px;
      }

      .dashboard-card,
      .faq-card,
      .pricing-card,
      .benefit-card,
      .testimonial-card,
      .testimonial-feature {
        border-radius: 24px;
      }

      .problem-panel,
      .media-card {
        border-radius: 24px;
      }
    }

    @media (max-width: 360px) {
      .hero-copy h1 {
        font-size: clamp(2.72rem, 13.4vw, 3.25rem);
      }

      .mobile-cta-bar {
        gap: 8px;
        padding-right: 10px;
        padding-left: 10px;
      }

      .mobile-cta-bar a {
        min-height: 45px;
        padding-right: 8px;
        padding-left: 8px;
        font-size: 0.94rem;
      }
    }
