.ts-page {
      --ts-blue: #4285f4;
      --ts-blue-dark: #1a73e8;
      --ts-blue-light: #d2e3fc;
      --ts-red: #ea4335;
      --ts-red-dark: #c5221f;
      --ts-red-light: #fce8e6;
      --ts-green: #34a853;
      --ts-green-dark: #188038;
      --ts-green-light: #e6f4ea;
      --ts-yellow: #fbbc05;
      --ts-yellow-dark: #f29900;
      --ts-yellow-light: #fef7e0;
      --ts-bg: #f6f8fc;
      --ts-surface: #ffffff;
      --ts-surface-soft: #f0f4fa;
      --ts-border: #e4e8f0;
      --ts-border-strong: #c9d3e6;
      --ts-text: #1a1d2e;
      --ts-text-soft: #4a5068;
      --ts-muted: #8a93b2;
      --ts-radius: 12px;
      --ts-radius-sm: 8px;
      --ts-shadow: 0 4px 16px rgba(0, 0, 0, .08), 0 1px 4px rgba(0, 0, 0, .04);
      --ts-shadow-sm: 0 1px 4px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
      background: var(--ts-bg);
      color: var(--ts-text);
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      min-height: 100vh;
      overflow-x: hidden;
    }

    .ts-color-blue { color: var(--ts-blue); }
    .ts-color-red { color: var(--ts-red); }
    .ts-color-green { color: var(--ts-green); }
    .ts-color-yellow { color: var(--ts-yellow); }
    .ts-color-star { color: #1565c0; }

    .ts-site-shell {
      min-height: 100vh;
    }

    .ts-container {
      max-width: 1180px;
    }

    .ts-navbar {
      backdrop-filter: blur(18px);
      background: rgba(255, 255, 255, .92);
      border-bottom: 1px solid var(--ts-border);
      min-height: 68px;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .ts-logo {
      align-items: center;
      background: var(--ts-surface-soft);
      border: 1.5px solid var(--ts-border);
      border-radius: 9px;
      display: flex;
      height: 36px;
      justify-content: center;
      width: 36px;
    }

    .ts-logo-image {
      display: block;
      height: 28px;
      object-fit: contain;
      width: auto;
    }

    .ts-logo-wide {
      background: transparent;
      border: 0;
      border-radius: 0;
      height: auto;
      width: auto;
    }

    .ts-logo-text {
      display: flex;
      font-size: 8px;
      font-weight: 800;
      letter-spacing: -.5px;
      line-height: 1;
    }

    .ts-brand-name {
      color: var(--ts-text);
      font-size: .82rem;
      font-weight: 800;
      line-height: 1.1;
    }

    .ts-brand-tag {
      color: var(--ts-muted);
      font-size: .58rem;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .ts-brand-company {
      color: var(--ts-text-soft);
      font-size: .62rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .ts-nav-link {
      border-radius: var(--ts-radius-sm);
      color: var(--ts-text-soft);
      font-size: .82rem;
      font-weight: 600;
      padding: .5rem .75rem;
      text-decoration: none;
      transition: all .22s ease;
    }

    .ts-nav-link:hover {
      background: var(--ts-surface-soft);
      color: var(--ts-green-dark);
    }

    .ts-icon-button {
      align-items: center;
      background: var(--ts-surface);
      border: 1px solid var(--ts-border);
      border-radius: 8px;
      color: var(--ts-muted);
      display: inline-flex;
      height: 34px;
      justify-content: center;
      transition: all .22s ease;
      width: 34px;
    }

    .ts-icon-button:hover {
      background: var(--ts-surface-soft);
      color: var(--ts-text);
    }

    .ts-action-button {
      align-items: center;
      background: var(--ts-surface);
      border: 1px solid var(--ts-border);
      border-radius: 8px;
      color: var(--ts-text-soft);
      display: inline-flex;
      font-size: .75rem;
      font-weight: 600;
      gap: .4rem;
      padding: .5rem .9rem;
      text-decoration: none;
      transition: all .22s ease;
    }

    .ts-action-button:hover {
      background: var(--ts-surface-soft);
      border-color: var(--ts-border-strong);
      color: var(--ts-text);
    }

    .ts-send-button {
      align-items: center;
      background: var(--ts-green);
      border: 0;
      border-radius: 9px;
      box-shadow: 0 2px 8px rgba(52, 168, 83, .3);
      color: #ffffff;
      display: inline-flex;
      font-size: .83rem;
      font-weight: 700;
      gap: .55rem;
      padding: .65rem 1.35rem;
      text-decoration: none;
      transition: all .22s ease;
    }

    .ts-send-button:hover {
      background: var(--ts-green-dark);
      box-shadow: 0 4px 14px rgba(52, 168, 83, .4);
      color: #ffffff;
      transform: translateY(-1px);
    }

    .ts-card {
      background: var(--ts-surface);
      border: 1px solid var(--ts-border);
      border-radius: var(--ts-radius);
      box-shadow: var(--ts-shadow-sm);
      overflow: hidden;
    }

    .ts-card-header {
      align-items: center;
      border-bottom: 1px solid var(--ts-border);
      display: flex;
      justify-content: space-between;
      padding: 1rem 1.2rem .8rem;
    }

    .ts-card-title {
      align-items: center;
      color: var(--ts-text);
      display: flex;
      font-size: .85rem;
      font-weight: 700;
      gap: .55rem;
    }

    .ts-title-dot {
      border-radius: 50%;
      height: 8px;
      width: 8px;
    }

    .ts-dot-green { background: var(--ts-green); }
    .ts-dot-red { background: var(--ts-red); }
    .ts-dot-yellow { background: var(--ts-yellow); }
    .ts-dot-blue { background: var(--ts-blue); }

    .ts-status-pill {
      align-items: center;
      border-radius: 999px;
      display: inline-flex;
      font-size: .58rem;
      font-weight: 700;
      gap: .25rem;
      letter-spacing: .04em;
      padding: 2px 7px;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .ts-status-pill::before {
      background: currentColor;
      border-radius: 50%;
      content: "";
      height: 5px;
      width: 5px;
    }

    .ts-status-delivered,
    .ts-status-completed,
    .ts-status-active {
      background: var(--ts-green-light);
      color: var(--ts-green-dark);
    }

    .ts-status-review,
    .ts-status-pending {
      background: var(--ts-yellow-light);
      color: var(--ts-yellow-dark);
    }

    .ts-status-failed {
      background: var(--ts-red-light);
      color: var(--ts-red-dark);
    }

    .ts-status-info {
      background: var(--ts-blue-light);
      color: var(--ts-blue-dark);
    }

    .ts-section {
      padding: 5rem 0;
    }

    .ts-section-compact {
      padding: 3.5rem 0;
    }

    .ts-section-title {
      color: var(--ts-text);
      font-size: clamp(1.65rem, 4vw, 2.75rem);
      font-weight: 800;
      letter-spacing: -.02em;
      line-height: 1.08;
    }

    .ts-section-subtitle {
      color: var(--ts-muted);
      font-size: .98rem;
      line-height: 1.75;
    }

    .ts-eyebrow {
      align-items: center;
      background: var(--ts-green-light);
      border: 1px solid rgba(52, 168, 83, .22);
      border-radius: 999px;
      color: var(--ts-green-dark);
      display: inline-flex;
      font-size: .68rem;
      font-weight: 800;
      gap: .45rem;
      letter-spacing: .1em;
      padding: .35rem .8rem;
      text-transform: uppercase;
    }

    .ts-hero {
      background:
        linear-gradient(135deg, rgba(246, 248, 252, .92) 0%, rgba(255, 255, 255, .82) 54%, rgba(230, 244, 234, .78) 100%),
        repeating-linear-gradient(90deg, rgba(66, 133, 244, .08) 0 1px, transparent 1px 72px),
        repeating-linear-gradient(0deg, rgba(52, 168, 83, .08) 0 1px, transparent 1px 72px);
      min-height: calc(100vh - 68px);
      overflow: hidden;
      position: relative;
    }

    .ts-hero::before {
      background: linear-gradient(90deg, transparent, rgba(66, 133, 244, .16), transparent);
      content: "";
      height: 1px;
      left: 0;
      position: absolute;
      right: 0;
      top: 35%;
    }

    .ts-hero-content {
      min-height: calc(100vh - 68px);
      padding: 5rem 0 3rem;
      position: relative;
      z-index: 1;
    }

    .ts-hero-title {
      color: var(--ts-text);
      font-size: clamp(2.45rem, 7vw, 5.7rem);
      font-weight: 800;
      letter-spacing: -.055em;
      line-height: .96;
    }

    .ts-hero-copy {
      color: var(--ts-text-soft);
      font-size: clamp(1rem, 2.4vw, 1.22rem);
      line-height: 1.75;
      max-width: 660px;
    }

    .ts-hero-word {
      background: linear-gradient(135deg, var(--ts-blue), var(--ts-green) 45%, var(--ts-yellow));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .ts-hero-visual {
      background: rgba(255, 255, 255, .68);
      border: 1px solid rgba(201, 211, 230, .75);
      border-radius: 22px;
      box-shadow: 0 24px 80px rgba(26, 29, 46, .15);
      min-height: 480px;
      overflow: hidden;
      position: relative;
    }

    .ts-hero-visual::before {
      background:
        linear-gradient(90deg, transparent 0 18%, rgba(66, 133, 244, .14) 18% 19%, transparent 19% 50%, rgba(52, 168, 83, .12) 50% 51%, transparent 51% 82%, rgba(251, 188, 5, .14) 82% 83%, transparent 83%),
        linear-gradient(0deg, transparent 0 25%, rgba(234, 67, 53, .1) 25% 26%, transparent 26% 62%, rgba(66, 133, 244, .12) 62% 63%, transparent 63%);
      content: "";
      inset: 0;
      position: absolute;
    }

    .ts-phone-stage {
      align-items: center;
      display: flex;
      justify-content: center;
      min-height: 450px;
      position: relative;
      z-index: 1;
    }

    .ts-phone-stage::before {
      background: linear-gradient(135deg, rgba(66, 133, 244, .18), rgba(52, 168, 83, .14));
      border: 1px solid rgba(66, 133, 244, .16);
      border-radius: 34px;
      content: "";
      height: 76%;
      position: absolute;
      transform: rotate(-7deg);
      width: 54%;
    }

    .ts-phone-frame {
      background: linear-gradient(145deg, #0a0f1d, #1f2937 42%, #050816);
      border: 1px solid rgba(255, 255, 255, .24);
      border-radius: 42px;
      box-shadow:
        0 34px 80px rgba(26, 29, 46, .34),
        inset 0 0 0 2px rgba(255, 255, 255, .08),
        inset 0 -18px 30px rgba(0, 0, 0, .42);
      padding: .62rem;
      position: relative;
      width: min(310px, 82vw);
      z-index: 2;
    }

    .ts-phone-frame::before {
      background: linear-gradient(90deg, rgba(255, 255, 255, .28), transparent 15%, transparent 85%, rgba(255, 255, 255, .16));
      border-radius: 42px;
      content: "";
      inset: 0;
      pointer-events: none;
      position: absolute;
    }

    .ts-phone-side-button {
      background: linear-gradient(180deg, #111827, #020617);
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: 999px;
      position: absolute;
      width: 4px;
      z-index: 1;
    }

    .ts-phone-side-button-power {
      height: 78px;
      right: -5px;
      top: 132px;
    }

    .ts-phone-side-button-volume {
      height: 56px;
      left: -5px;
      top: 108px;
    }

    .ts-phone-side-button-volume-2 {
      height: 56px;
      left: -5px;
      top: 176px;
    }

    .ts-phone-screen {
      background:
        radial-gradient(circle at 24% 18%, rgba(66, 133, 244, .55), transparent 32%),
        radial-gradient(circle at 78% 36%, rgba(52, 168, 83, .34), transparent 30%),
        radial-gradient(circle at 42% 88%, rgba(251, 188, 5, .22), transparent 28%),
        linear-gradient(180deg, rgba(15, 23, 42, .4), rgba(2, 6, 23, .78)),
        linear-gradient(135deg, #0f172a, #163828 60%, #07111f);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 34px;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08), inset 0 0 45px rgba(0, 0, 0, .42);
      min-height: 560px;
      overflow: hidden;
      padding: 1rem;
      position: relative;
    }

    .ts-phone-screen::before {
      background: linear-gradient(115deg, rgba(255, 255, 255, .24), rgba(255, 255, 255, .06) 28%, transparent 29% 100%);
      content: "";
      height: 120%;
      left: -42%;
      opacity: .45;
      pointer-events: none;
      position: absolute;
      top: -12%;
      transform: rotate(8deg);
      width: 72%;
      z-index: 2;
    }

    .ts-phone-notch {
      align-items: center;
      background: rgba(3, 7, 18, .92);
      border-radius: 999px;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08), 0 1px 6px rgba(0, 0, 0, .3);
      display: flex;
      gap: .45rem;
      height: 24px;
      justify-content: center;
      left: 50%;
      position: absolute;
      top: .65rem;
      transform: translateX(-50%);
      width: 86px;
      z-index: 3;
    }

    .ts-phone-camera {
      background: radial-gradient(circle at 40% 35%, #64748b, #020617 55%, #000 100%);
      border: 1px solid rgba(255, 255, 255, .14);
      border-radius: 50%;
      height: 9px;
      width: 9px;
    }

    .ts-phone-speaker {
      background: #111827;
      border-radius: 999px;
      height: 4px;
      width: 32px;
    }

    .ts-phone-status {
      color: rgba(255, 255, 255, .9);
      display: flex;
      font-size: .72rem;
      font-weight: 700;
      justify-content: space-between;
      padding: .2rem .25rem 0;
      position: relative;
      z-index: 3;
    }

    .ts-phone-lock {
      color: #ffffff;
      padding-top: 3.5rem;
      position: relative;
      text-align: center;
      z-index: 1;
    }

    .ts-phone-time {
      font-size: 3.25rem;
      font-weight: 800;
      letter-spacing: -.05em;
      line-height: 1;
    }

    .ts-phone-date {
      color: rgba(255, 255, 255, .58);
      font-size: .78rem;
      margin-top: .35rem;
    }

    .ts-notification-stack {
      display: grid;
      gap: .75rem;
      margin-top: 2rem;
      position: relative;
      z-index: 3;
    }

    .ts-phone-notification {
      animation: ts-notification-float 7.2s ease-in-out infinite;
      backdrop-filter: blur(22px);
      background: rgba(255, 255, 255, .78);
      border: 1px solid rgba(255, 255, 255, .62);
      border-radius: 18px;
      box-shadow: 0 16px 36px rgba(3, 7, 18, .24), inset 0 1px 0 rgba(255, 255, 255, .72);
      display: flex;
      gap: .7rem;
      opacity: 0;
      padding: .78rem;
      transform: translateY(28px) scale(.97);
    }

    .ts-phone-notification-delay-1 {
      animation-delay: .4s;
    }

    .ts-phone-notification-delay-2 {
      animation-delay: 2.1s;
    }

    .ts-phone-notification-delay-3 {
      animation-delay: 3.8s;
    }

    .ts-phone-notification-delay-4 {
      animation-delay: 5.5s;
    }

    .ts-phone-notification-icon {
      align-items: center;
      border-radius: 10px;
      display: flex;
      flex: 0 0 auto;
      height: 34px;
      justify-content: center;
      width: 34px;
    }

    .ts-phone-notification-title {
      color: var(--ts-text);
      font-size: .76rem;
      font-weight: 800;
      line-height: 1.2;
    }

    .ts-phone-notification-meta {
      color: var(--ts-muted);
      font-size: .62rem;
      font-weight: 700;
      text-transform: uppercase;
    }

    .ts-phone-notification-copy {
      color: var(--ts-text-soft);
      font-size: .68rem;
      line-height: 1.35;
      margin-top: .18rem;
    }

    .ts-phone-swipe {
      bottom: 1.1rem;
      left: 50%;
      position: absolute;
      transform: translateX(-50%);
      width: 118px;
      z-index: 3;
    }

    .ts-phone-swipe-line {
      background: rgba(255, 255, 255, .72);
      border-radius: 999px;
      height: 4px;
      width: 100%;
    }

    .ts-phone-floating-stat {
      animation: ts-stat-drift 5.4s ease-in-out infinite;
      background: var(--ts-surface);
      border: 1px solid var(--ts-border);
      border-radius: 14px;
      box-shadow: var(--ts-shadow);
      padding: .85rem;
      position: absolute;
      z-index: 3;
    }

    .ts-phone-floating-stat-left {
      left: 4%;
      top: 18%;
    }

    .ts-phone-floating-stat-right {
      animation-delay: -1.6s;
      bottom: 16%;
      right: 2%;
    }

    @keyframes ts-notification-float {
      0% {
        opacity: 0;
        transform: translateY(28px) scale(.97);
      }
      14% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
      70% {
        opacity: 1;
        transform: translateY(-4px) scale(1);
      }
      100% {
        opacity: 0;
        transform: translateY(-28px) scale(.98);
      }
    }

    @keyframes ts-stat-drift {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-10px);
      }
    }

    .ts-product-panel {
      backdrop-filter: blur(18px);
      background: rgba(255, 255, 255, .88);
      border: 1px solid var(--ts-border);
      border-radius: 16px;
      box-shadow: var(--ts-shadow);
      position: relative;
      z-index: 1;
    }

    .ts-product-toolbar {
      border-bottom: 1px solid var(--ts-border);
      padding: .85rem 1rem;
    }

    .ts-product-dot {
      border-radius: 50%;
      height: 9px;
      width: 9px;
    }

    .ts-product-list {
      display: grid;
      gap: .75rem;
      padding: 1rem;
    }

    .ts-product-message {
      background: var(--ts-surface-soft);
      border: 1px solid var(--ts-border);
      border-radius: 12px;
      padding: .85rem;
    }

    .ts-product-label {
      color: var(--ts-muted);
      font-size: .62rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .ts-product-value {
      color: var(--ts-text);
      font-size: .86rem;
      font-weight: 800;
    }

    .ts-mini-chart {
      align-items: end;
      display: flex;
      gap: .32rem;
      height: 96px;
    }

    .ts-mini-bar {
      background: var(--ts-blue);
      border-radius: 7px 7px 2px 2px;
      flex: 1;
      min-width: 16px;
    }

    .ts-mini-bar-green { background: var(--ts-green); }
    .ts-mini-bar-yellow { background: var(--ts-yellow); }
    .ts-mini-bar-red { background: var(--ts-red); }
    .ts-bar-h-32 { height: 32%; }
    .ts-bar-h-44 { height: 44%; }
    .ts-bar-h-58 { height: 58%; }
    .ts-bar-h-70 { height: 70%; }
    .ts-bar-h-82 { height: 82%; }
    .ts-bar-h-94 { height: 94%; }

    .ts-stat-card {
      background: var(--ts-surface);
      border: 1px solid var(--ts-border);
      border-radius: var(--ts-radius);
      box-shadow: var(--ts-shadow-sm);
      padding: 1rem;
    }

    .ts-stat-label {
      color: var(--ts-muted);
      font-size: .6rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .ts-stat-value {
      color: var(--ts-text);
      font-size: 1.65rem;
      font-weight: 800;
      line-height: 1;
    }

    .ts-stat-sub {
      color: var(--ts-muted);
      font-size: .68rem;
    }

    .ts-feature-card {
      background: var(--ts-surface);
      border: 1px solid var(--ts-border);
      border-radius: var(--ts-radius);
      box-shadow: var(--ts-shadow-sm);
      height: 100%;
      padding: 1.2rem;
      transition: all .22s ease;
    }

    .ts-feature-card:hover {
      border-color: var(--ts-border-strong);
      box-shadow: var(--ts-shadow);
      transform: translateY(-2px);
    }

    .ts-feature-icon {
      align-items: center;
      border-radius: 10px;
      display: flex;
      height: 42px;
      justify-content: center;
      width: 42px;
    }

    .ts-feature-icon-blue {
      background: var(--ts-blue-light);
      color: var(--ts-blue-dark);
    }

    .ts-feature-icon-green {
      background: var(--ts-green-light);
      color: var(--ts-green-dark);
    }

    .ts-feature-icon-red {
      background: var(--ts-red-light);
      color: var(--ts-red-dark);
    }

    .ts-feature-icon-yellow {
      background: var(--ts-yellow-light);
      color: var(--ts-yellow-dark);
    }

    .ts-feature-title {
      color: var(--ts-text);
      font-size: .98rem;
      font-weight: 800;
    }

    .ts-feature-copy {
      color: var(--ts-muted);
      font-size: .82rem;
      line-height: 1.65;
    }

    .ts-step-card {
      background: var(--ts-surface);
      border: 1px solid var(--ts-border);
      border-radius: var(--ts-radius);
      box-shadow: var(--ts-shadow-sm);
      height: 100%;
      padding: 1.25rem;
      position: relative;
    }

    .ts-step-number {
      align-items: center;
      background: var(--ts-green-light);
      border-radius: 50%;
      color: var(--ts-green-dark);
      display: flex;
      font-size: .82rem;
      font-weight: 800;
      height: 34px;
      justify-content: center;
      width: 34px;
    }

    .ts-pricing-card {
      background: var(--ts-surface);
      border: 1px solid var(--ts-border);
      border-radius: var(--ts-radius);
      box-shadow: var(--ts-shadow-sm);
      height: 100%;
      padding: 1.25rem;
    }

    .ts-pricing-card-featured {
      border-color: var(--ts-green);
      box-shadow: 0 8px 28px rgba(52, 168, 83, .14);
    }

    .ts-price {
      color: var(--ts-text);
      font-size: 2rem;
      font-weight: 800;
      line-height: 1;
    }

    .ts-price-unit {
      color: var(--ts-muted);
      font-size: .78rem;
      font-weight: 600;
    }

    .ts-check-list {
      color: var(--ts-text-soft);
      display: grid;
      font-size: .82rem;
      gap: .65rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .ts-check-list i {
      color: var(--ts-green);
    }

    .ts-cta-band {
      background: linear-gradient(135deg, #17391f 0%, #1d3a1f 55%, #102c20 100%);
      border-radius: 22px;
      box-shadow: var(--ts-shadow);
      color: #ffffff;
      overflow: hidden;
      padding: 2rem;
      position: relative;
    }

    .ts-cta-band::before {
      background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 56px);
      content: "";
      inset: 0;
      position: absolute;
    }

    .ts-cta-content {
      position: relative;
      z-index: 1;
    }

    .ts-cta-title {
      color: #ffffff;
      font-size: clamp(1.75rem, 4vw, 3rem);
      font-weight: 800;
      letter-spacing: -.03em;
      line-height: 1.08;
    }

    .ts-cta-copy {
      color: rgba(255, 255, 255, .68);
      font-size: .98rem;
      line-height: 1.75;
    }

    .ts-footer {
      border-top: 1px solid var(--ts-border);
      padding: 3rem 0 2rem;
    }

    .ts-footer-title {
      color: var(--ts-text);
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .ts-footer-link {
      color: var(--ts-muted);
      display: inline-flex;
      font-size: .82rem;
      font-weight: 600;
      padding: .25rem 0;
      text-decoration: none;
      transition: color .22s ease;
    }

    .ts-footer-link:hover {
      color: var(--ts-green-dark);
    }

    .ts-footer-copy {
      color: var(--ts-muted);
      font-size: .78rem;
      line-height: 1.65;
    }

    .ts-footer-bottom {
      border-top: 1px solid var(--ts-border);
      color: var(--ts-muted);
      font-size: .76rem;
      margin-top: 2rem;
      padding-top: 1.25rem;
    }

    @media (max-width: 991px) {
      .ts-nav-menu {
        background: var(--ts-surface);
        border: 1px solid var(--ts-border);
        border-radius: var(--ts-radius);
        box-shadow: var(--ts-shadow);
        margin-top: .75rem;
        padding: .75rem;
      }

      .ts-hero-content {
        padding: 3.25rem 0 2rem;
      }

      .ts-hero-visual {
        min-height: 390px;
      }

      .ts-phone-stage {
        min-height: 390px;
      }

      .ts-phone-screen {
        min-height: 500px;
      }
    }

    @media (max-width: 768px) {
      .ts-section {
        padding: 3.5rem 0;
      }

      .ts-section-compact {
        padding: 2.5rem 0;
      }

      .ts-hero-content {
        min-height: auto;
      }

      .ts-send-button,
      .ts-action-button {
        justify-content: center;
      }

      .ts-cta-band {
        padding: 1.25rem;
      }

      .ts-phone-floating-stat {
        display: none;
      }

      .ts-phone-frame {
      width: min(300px, 100%);
      }

      .ts-phone-screen {
        min-height: 520px;
      }
    }