    * { box-sizing: border-box; margin: 0; padding: 0; }
    html {
      scroll-behavior: smooth;
    }

    :root {
      --tsumi-font-base: "Segoe UI", "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
      --tsumi-primary: #c3708e;
      --tsumi-secondary: #cdc5ca;
      --tsumi-ease: cubic-bezier(0.22, 1, 0.36, 1);
      --tsumi-rhythm-cyan: rgba(148, 228, 244, 0.32);
      --tsumi-rhythm-pink: rgba(236, 167, 198, 0.34);
      --tsumi-rhythm-speed: 4.8s;
      --tsumi-surface: rgba(14, 11, 16, 0.86);
      --tsumi-border: rgba(195, 112, 142, 0.34);
      --tsumi-border-hover: rgba(236, 170, 195, 0.58);
      --tsumi-highlight: rgba(195, 112, 142, 0.28);
      --tsumi-scrollbar-size: 11px;
      --tsumi-scrollbar-track: rgba(24, 19, 23, 0.92);
      --tsumi-scrollbar-thumb: rgba(195, 112, 142, 0.48);
      --tsumi-scrollbar-thumb-hover: rgba(215, 135, 165, 0.68);
      --tsumi-scrollbar-thumb-active: rgba(229, 151, 179, 0.84);
    }

    * {
      scrollbar-width: thin;
      scrollbar-color: var(--tsumi-scrollbar-thumb) var(--tsumi-scrollbar-track);
    }

    *::-webkit-scrollbar {
      width: var(--tsumi-scrollbar-size);
      height: var(--tsumi-scrollbar-size);
    }

    *::-webkit-scrollbar-track {
      background: var(--tsumi-scrollbar-track);
      border-radius: 999px;
    }

    *::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, rgba(215, 135, 165, 0.52), var(--tsumi-scrollbar-thumb));
      border: 2px solid transparent;
      border-radius: 999px;
      background-clip: padding-box;
      transition: background 0.2s ease, box-shadow 0.2s ease;
    }

    *::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(180deg, rgba(226, 154, 182, 0.74), var(--tsumi-scrollbar-thumb-hover));
      box-shadow: 0 0 12px rgba(195, 112, 142, 0.28);
    }

    *::-webkit-scrollbar-thumb:active {
      background: linear-gradient(180deg, rgba(236, 170, 195, 0.86), var(--tsumi-scrollbar-thumb-active));
      box-shadow: 0 0 14px rgba(195, 112, 142, 0.36);
    }
    body {
      font-family: var(--tsumi-font-base);
      background: #09080b;
      color: #cdc5ca;
      overflow-x: hidden;
      min-height: 100vh;
      position: relative;
      isolation: isolate;
      animation: tsumiPageIn 0.8s var(--tsumi-ease);
    }

    button,
    input,
    select,
    textarea {
      font-family: var(--tsumi-font-base);
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      width: 100vw;
      height: 100vh;
      pointer-events: none;
      z-index: -1;
      background:
        radial-gradient(at top left, rgba(195, 112, 142, 0.37), rgba(9, 8, 11, 0.952)),
        url("../img/backgrounds/bg.webp");
      background-repeat: no-repeat;
      background-size: cover;
      background-position: bottom center;
      background-blend-mode: multiply;
      transform: translateZ(0);
    }

    .tsumi-petals-canvas {
      position: fixed;
      inset: 0;
      width: 100vw;
      height: 100vh;
      pointer-events: none;
      z-index: 0;
      opacity: 0.48;
      filter: saturate(1.02);
    }

    body#dashboard .tsumi-petals-canvas {
      opacity: 0.7;
    }

    header,
    .background,
    .cta,
    footer {
      position: relative;
      z-index: 2;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 24px 48px;
      /* opacity: 0; */
      transform: translateY(16px);
    }

    nav {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 12px;
      flex-wrap: wrap;
    }

    nav a {
      margin-left: 0;
    }

    nav a:not(.btn) {
      color: #cdc5ca;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.2s ease, transform 0.2s ease;
      padding: 6px 4px;
    }

    nav a:not(.btn):hover {
      color: #ece6ea;
      transform: translateY(-1px);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      padding: clamp(11px, 0.55vw + 9px, 14px) clamp(18px, 1vw + 14px, 26px);
      border-radius: 999px;
      border: 1px solid rgba(255, 224, 239, 0.5);
      background:
        linear-gradient(110deg, var(--tsumi-rhythm-cyan) 8%, rgba(148, 228, 244, 0) 36%, var(--tsumi-rhythm-pink) 74%, rgba(236, 167, 198, 0) 100%),
        radial-gradient(132% 128% at 50% -54%, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.48) 34%, rgba(255, 255, 255, 0) 64%),
        linear-gradient(140deg, #efbdd2 0%, #da90b1 52%, #c0698d 100%);
      background-size: 190% 190%, 140% 140%, 100% 100%;
      background-position: 0% 52%, 50% -55%, 0% 0%;
      color: #2b121c;
      cursor: pointer;
      font-weight: 700;
      font-size: clamp(0.88rem, 0.18vw + 0.84rem, 1rem);
      letter-spacing: 0.01em;
      line-height: 1;
      text-decoration: none;
      white-space: nowrap;
      transition:
        transform 0.4s var(--tsumi-ease),
        box-shadow 0.4s var(--tsumi-ease),
        filter 0.35s ease,
        padding 0.34s var(--tsumi-ease),
        font-size 0.34s var(--tsumi-ease),
        border-color 0.3s ease,
        color 0.3s ease,
        background-color 0.3s ease;
      transform-origin: center center;
      will-change: transform;
      box-shadow:
        0 12px 26px rgba(195, 112, 142, 0.28),
        0 3px 10px rgba(66, 27, 46, 0.2),
        inset 0 1px 0 rgba(255, 247, 252, 0.46),
        inset 0 -10px 16px rgba(171, 78, 113, 0.2);
      animation: tsumiButtonPulse 3s ease-in-out infinite, tsumiButtonLaneShift var(--tsumi-rhythm-speed) linear infinite;
    }

    .btn-primary {
      background:
        linear-gradient(110deg, var(--tsumi-rhythm-cyan) 8%, rgba(148, 228, 244, 0) 34%, var(--tsumi-rhythm-pink) 74%, rgba(236, 167, 198, 0) 100%),
        radial-gradient(132% 128% at 50% -54%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.5) 34%, rgba(255, 255, 255, 0) 64%),
        linear-gradient(140deg, #f4c4d9 0%, #df98b8 50%, #c46f94 100%);
      color: #2b121c;
    }

    .btn-secondary {
      background:
        linear-gradient(110deg, var(--tsumi-rhythm-cyan) 10%, rgba(148, 228, 244, 0) 35%, var(--tsumi-rhythm-pink) 74%, rgba(236, 167, 198, 0) 100%),
        radial-gradient(132% 128% at 50% -54%, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.36) 34%, rgba(255, 255, 255, 0) 64%),
        linear-gradient(140deg, rgba(226, 153, 183, 0.96), rgba(194, 108, 142, 0.96));
      border: 1px solid rgba(255, 220, 236, 0.46);
      color: #2b121c;
    }

    .btn-register {
      box-shadow: 0 0 0 1px rgba(236, 170, 195, 0.38), 0 16px 30px rgba(195, 112, 142, 0.27), inset 0 1px 0 rgba(255, 247, 252, 0.42);
    }

    .btn:hover {
      transform: translateY(-3px) scale(1.01);
      box-shadow:
        0 18px 34px rgba(195, 112, 142, 0.34),
        0 6px 12px rgba(66, 27, 46, 0.24),
        inset 0 1px 0 rgba(255, 246, 251, 0.5),
        inset 0 -12px 18px rgba(171, 78, 113, 0.24);
      filter: brightness(1.06) saturate(1.1);
      animation-duration: 2.3s, 3.8s;
    }

    .btn-register:hover {
      box-shadow: 0 0 0 1px rgba(236, 170, 195, 0.56), 0 20px 38px rgba(195, 112, 142, 0.36), inset 0 1px 0 rgba(255, 249, 253, 0.48);
    }

    .btn:active {
      transform: translateY(-1px) scale(0.992);
      animation-duration: 1.7s, 2.8s;
    }

    .hero {
      margin-top: 108px;
      padding: 0 40px;
      opacity: 0;
      transform: translateY(22px);
    }

    .hero-layout {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
      gap: 24px;
      align-items: stretch;
    }

    .hero-copy {
      text-align: left;
      align-self: center;
      max-width: 760px;
    }

    .hero-eyebrow {
      font-size: 0.76rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #e4c4d1;
      margin: 0 0 12px;
      font-weight: 600;
    }

    body.is-ready header {
      opacity: 1;
      transform: translateY(0);
      transition: opacity 0.7s var(--tsumi-ease), transform 0.7s var(--tsumi-ease);
    }

    body.is-ready .hero {
      opacity: 1;
      transform: translateY(0);
      transition: opacity 0.9s var(--tsumi-ease) 0.12s, transform 0.9s var(--tsumi-ease) 0.12s;
    }

    .hero h1 {
      font-size: clamp(2.35rem, 4.6vw, 3.9rem);
      line-height: 1.1;
      font-weight: 700;
      text-wrap: balance;
      max-width: 16.2ch;
      margin: 0;
    }

    .hero-lead {
      margin-top: 18px;
      font-size: clamp(0.98rem, 0.3vw + 0.93rem, 1.12rem);
      line-height: 1.6;
      color: #cdc5ca;
      max-width: 64ch;
    }

    .hero-tags {
      margin-top: 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      min-height: 32px;
      padding: 7px 12px;
      border-radius: 999px;
      border: 1px solid rgba(195, 112, 142, 0.42);
      background: rgba(18, 14, 20, 0.86);
      color: #e4c4d1;
      font-size: 0.78rem;
      letter-spacing: 0.02em;
      font-weight: 600;
    }

    .hero-buttons {
      margin-top: 32px;
      display: flex;
      justify-content: flex-start;
      gap: 16px;
      flex-wrap: wrap;
    }

    .hero-buttons .btn {
      min-width: clamp(170px, 24vw, 220px);
    }

    .hero-panel {
      display: grid;
      gap: 14px;
      align-content: start;
      min-height: 100%;
    }

    .hero-panel h2 {
      margin: 0;
      font-size: 1.2rem;
      line-height: 1.2;
    }

    .hero-panel-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 10px;
    }

    .hero-panel-list li {
      display: grid;
      gap: 3px;
      padding: 10px 12px;
      border-radius: 12px;
      border: 1px solid rgba(195, 112, 142, 0.24);
      background: rgba(11, 9, 13, 0.7);
    }

    .hero-panel-list span {
      color: #bcaab3;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-size: 0.68rem;
      font-weight: 600;
    }

    .hero-panel-list strong {
      color: #ead6df;
      font-size: 0.9rem;
      font-weight: 600;
    }

    .hero-resellers .reseller-list {
      list-style: none;
      margin: 0;
      padding: 0 2px 0 0;
      display: grid;
      grid-template-columns: 1fr;
      gap: 8px;
      max-height: clamp(220px, 36vh, 340px);
      overflow-y: auto;
      overflow-x: hidden;
      overscroll-behavior: contain;
    }

    .hero-resellers .reseller-list > .reseller-carousel-item {
      width: 100%;
      min-height: 0;
    }

    .hero-resellers .reseller-list-empty {
      list-style: none;
      margin: 0;
      padding: 10px 12px;
      border-radius: 12px;
      border: 1px dashed rgba(195, 112, 142, 0.28);
      color: #cdc5ca;
      font-size: 0.86rem;
      text-align: center;
      background: rgba(11, 9, 13, 0.6);
    }

    .hero-resellers .edition-notice {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 10px 12px;
      border: 1px solid rgba(224, 137, 180, 0.38);
      border-radius: 12px;
      background: rgba(195, 112, 142, 0.1);
      color: #dccbd3;
    }

    .hero-resellers .edition-notice-icon {
      display: inline-grid;
      flex: 0 0 20px;
      width: 20px;
      height: 20px;
      place-items: center;
      border-radius: 50%;
      background: rgba(224, 137, 180, 0.2);
      color: #f0aacb;
      font-size: 0.76rem;
      font-weight: 800;
      line-height: 1;
    }

    .hero-resellers .edition-notice p {
      margin: 0;
      font-size: 0.8rem;
      line-height: 1.45;
    }

    .hero-resellers .edition-notice strong {
      color: #f3d9e5;
      font-weight: 700;
    }

    .features {
      margin-top: 140px;
      padding: 0 40px;
      max-width: 1180px;
      margin-left: auto;
      margin-right: auto;
      display: grid;
      gap: 22px;
    }

    .section-eyebrow {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #e4c4d1;
      margin: 0 0 10px;
      font-weight: 600;
    }

    .features-head {
      max-width: 760px;
    }

    .features-head h2 {
      font-size: clamp(1.9rem, 3.5vw, 2.7rem);
      line-height: 1.1;
      margin: 0;
      text-wrap: balance;
    }

    .features-head p {
      margin-top: 12px;
      color: #cdc5ca;
      max-width: 62ch;
      line-height: 1.6;
    }

    .feature-overview-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 14px;
    }

    .feature-overview-item {
      padding: 18px;
      min-height: 100%;
    }

    .card.feature-overview-item {
      isolation: isolate;
      background: transparent;
      transition: transform 0.38s var(--tsumi-ease), border-color 0.32s ease, box-shadow 0.32s ease;
    }

    .card.hero-panel {
      isolation: isolate;
      background:
        linear-gradient(180deg, rgb(14 11 16 / 24%), rgb(9 7 11 / 34%)),
        radial-gradient(circle at top right, rgba(195, 112, 142, 0.2), transparent 56%);
      -webkit-backdrop-filter: blur(14px) saturate(1.2);
      backdrop-filter: blur(14px) saturate(1.2);
      transition: transform 0.38s var(--tsumi-ease), border-color 0.32s ease, box-shadow 0.32s ease;
    }

    .card.workflow-step {
      isolation: isolate;
      transition: transform 0.38s var(--tsumi-ease), border-color 0.32s ease, box-shadow 0.32s ease;
    }

    .card.feature-overview-item {
      display: grid;
      gap: 8px;
      align-content: start;
    }

    .card.feature-overview-item::after,
    .card.hero-panel::after,
    .card.workflow-step::after {
      content: none;
    }

    .card.feature-overview-item::before,
    .card.hero-panel::before,
    .card.workflow-step::before {
      content: "";
      position: absolute;
      inset: -1px;
      border-radius: inherit;
      background:
        radial-gradient(circle at 10% 14%, rgba(236, 170, 195, 0.2), transparent 42%),
        radial-gradient(circle at 86% 84%, rgba(195, 112, 142, 0.18), transparent 44%);
      opacity: 0;
      transition: opacity 0.34s ease;
      pointer-events: none;
      z-index: 0;
    }

    .card.feature-overview-item:hover::before,
    .card.hero-panel:hover::before,
    .card.workflow-step:hover::before {
      opacity: 1;
    }

    .card.feature-overview-item:hover,
    .card.hero-panel:hover,
    .card.workflow-step:hover {
      border-color: rgba(236, 170, 195, 0.62);
      box-shadow: 0 18px 32px rgba(195, 112, 142, 0.24), inset 0 0 0 1px rgba(236, 170, 195, 0.16);
    }

    .feature-overview-item h3,
    .reseller-carousel-title {
      margin: 0;
      font-size: 0.98rem;
      line-height: 1.3;
    }

    .feature-overview-item h3 {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .feature-overview-item p,
    .reseller-carousel-application {
      margin: 0;
      color: #d8ccd2;
      line-height: 1.45;
    }

    .feature-overview-item p {
      font-size: 0.84rem;
    }

    .feature-icon {
      width: 32px;
      height: 32px;
      border-radius: 10px;
      border: 1px solid rgba(236, 170, 195, 0.42);
      background: rgba(195, 112, 142, 0.14);
      color: #f0dce4;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 32px;
      transition: transform 0.28s ease, border-color 0.28s ease, background-color 0.28s ease, color 0.28s ease;
      position: relative;
      z-index: 1;
    }

    .card.feature-overview-item:hover .feature-icon {
      transform: translateY(-1px) scale(1.06);
      border-color: rgba(236, 170, 195, 0.68);
      background: rgba(195, 112, 142, 0.22);
      color: #f6e7ee;
    }

    .feature-icon i {
      width: 14px;
      height: 14px;
      margin: 0;
    }

    .workflow {
      margin-top: 110px;
      padding: 0 40px;
      max-width: 1180px;
      margin-left: auto;
      margin-right: auto;
      display: grid;
      gap: 20px;
    }

    .workflow-head h2 {
      margin: 0;
      font-size: clamp(1.7rem, 3vw, 2.3rem);
      line-height: 1.14;
    }

    .workflow-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .workflow-step {
      display: grid;
      align-content: start;
      gap: 8px;
      min-height: 100%;
    }

    .workflow-step-index {
      margin: 0;
      color: #e4c4d1;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      font-weight: 700;
      text-transform: uppercase;
    }

    .workflow-step h3 {
      margin: 0;
      font-size: 1rem;
    }

    .workflow-step p {
      margin: 0;
      color: #cdc5ca;
      line-height: 1.55;
    }

    .reseller-showcase {
      margin-top: 140px;
      padding: 0 40px;
      max-width: 1180px;
      margin-left: auto;
      margin-right: auto;
      opacity: 0;
      transform: translateY(24px);
      filter: blur(4px);
      transition: opacity 0.72s var(--tsumi-ease), transform 0.72s var(--tsumi-ease), filter 0.72s var(--tsumi-ease);
    }

    .reseller-showcase-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 14px;
      flex-wrap: wrap;
    }

    .reseller-showcase-head h2 {
      font-size: clamp(1.9rem, 3vw, 2.5rem);
      line-height: 1.1;
      margin-bottom: 6px;
    }

    .reseller-showcase-head p {
      color: #cdc5ca;
      max-width: 62ch;
      font-size: 0.95rem;
    }

    .reseller-carousel-controls {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    /* Grid-only storefront layout: hide carousel controls. */
    .reseller-showcase .reseller-carousel-controls {
      display: none !important;
    }

    .reseller-carousel-btn {
      width: 40px;
      height: 40px;
      border-radius: 999px;
      border: 1px solid rgba(195, 112, 142, 0.46);
      background: rgba(14, 11, 16, 0.86);
      color: #e4c4d1;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
    }

    .reseller-carousel-btn:hover {
      transform: translateY(-1px);
      border-color: rgba(236, 170, 195, 0.72);
      background: #c3708e;
      color: #1f1218;
    }

    .reseller-carousel {
      position: relative;
      isolation: isolate;
      border-radius: 18px;
      border: 1px solid rgba(195, 112, 142, 0.36);
      background:
        linear-gradient(180deg, rgb(14 11 16 / 24%), rgb(9 7 11 / 34%)),
        radial-gradient(circle at top right, rgba(195, 112, 142, 0.2), transparent 56%);
      -webkit-backdrop-filter: blur(14px) saturate(1.2);
      backdrop-filter: blur(14px) saturate(1.2);
      box-shadow: 0 18px 38px rgba(2, 8, 16, 0.36);
      overflow: hidden;
    }

    .reseller-carousel::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      -webkit-backdrop-filter: blur(14px) saturate(1.2);
      backdrop-filter: blur(14px) saturate(1.2);
      z-index: 0;
    }

    .reseller-carousel > * {
      position: relative;
      z-index: 1;
    }

    .reseller-carousel-track {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      align-items: start;
      gap: 8px;
      overflow: visible;
      scroll-snap-type: none;
      padding: 10px;
      scrollbar-width: auto;
    }

    .reseller-carousel-track::-webkit-scrollbar {
      display: none;
    }

    .reseller-carousel-item {
      width: 100%;
      min-width: 0;
      min-height: 0;
      scroll-snap-align: none;
      border-radius: 12px;
      border: 1px solid rgba(195, 112, 142, 0.32);
      background: linear-gradient(180deg, rgba(16, 12, 18, 0.92), rgba(10, 8, 12, 0.96));
      display: flex;
      flex-direction: column;
      gap: 2px;
      padding: 8px 10px;
    }

    .reseller-carousel-item.is-clickable {
      cursor: pointer;
      transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .reseller-carousel-item.is-clickable:hover,
    .reseller-carousel-item.is-clickable:focus-visible {
      transform: translateY(-1px);
      border-color: rgba(236, 170, 195, 0.58);
      box-shadow: 0 10px 18px rgba(7, 4, 9, 0.38);
      outline: none;
    }

    .reseller-carousel-item.is-unavailable {
      opacity: 0.72;
    }

    .reseller-carousel-item.is-unavailable .reseller-carousel-price-value {
      color: #c5b4bc;
    }

    .reseller-carousel-top {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 8px;
    }

    .reseller-carousel-title {
      flex: 1 1 auto;
      min-width: 0;
      font-size: 0.86rem;
      line-height: 1.15;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .reseller-carousel-application {
      font-size: 0.84rem;
    }

    .reseller-carousel-meta {
      list-style: none;
      margin: 2px 0 0;
      padding: 0;
      display: grid;
      gap: 7px;
    }

    .reseller-carousel-meta-item {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 10px;
      font-size: 0.86rem;
      border-top: 1px solid rgba(195, 112, 142, 0.22);
      padding-top: 7px;
    }

    .reseller-carousel-meta-key {
      color: #bcaab3;
      font-weight: 500;
    }

    .reseller-carousel-meta-value {
      color: #e4c4d1;
      font-weight: 600;
      text-align: right;
    }

    .reseller-carousel-price {
      margin: 0;
      display: flex;
      align-items: baseline;
      justify-content: flex-start;
      gap: 0;
    }

    .reseller-carousel-price-label {
      display: none;
    }

    .reseller-carousel-price-value {
      flex: 0 0 auto;
      color: #f0dce4;
      font-size: 0.9rem;
      font-weight: 700;
      white-space: nowrap;
    }

    .reseller-carousel-empty {
      flex: 1 1 auto;
      width: 100%;
      min-height: 120px;
      border-radius: 12px;
      border: 1px dashed rgba(195, 112, 142, 0.3);
      color: #cdc5ca;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 14px;
      font-size: 0.92rem;
    }

    .reseller-showcase.is-filtered .reseller-showcase-head h2::after {
      content: " (Filtered)";
      color: rgba(236, 170, 195, 0.9);
      font-size: 0.56em;
      font-weight: 600;
      letter-spacing: 0.05em;
    }

    .reseller-iframe-modal {
      position: fixed;
      inset: 0;
      display: none;
      z-index: 1500;
    }

    .reseller-iframe-modal.is-open {
      display: block;
    }

    .reseller-iframe-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(8, 5, 10, 0.72);
      -webkit-backdrop-filter: blur(3px);
      backdrop-filter: blur(3px);
    }

    .reseller-iframe-modal-dialog {
      position: fixed;
      width: min(1120px, calc(100vw - 28px));
      height: min(82vh, 860px);
      top: clamp(16px, 3.5vh, 36px);
      left: 50%;
      transform: translateX(-50%);
      border-radius: 16px;
      border: 1px solid rgba(195, 112, 142, 0.4);
      background: linear-gradient(180deg, rgba(16, 12, 18, 0.97), rgba(10, 8, 12, 0.98));
      box-shadow: 0 26px 48px rgba(4, 2, 6, 0.5);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      z-index: 1;
    }

    .reseller-iframe-modal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 12px 14px;
      border-bottom: 1px solid rgba(195, 112, 142, 0.28);
      background: linear-gradient(180deg, rgba(26, 19, 30, 0.94), rgba(18, 13, 21, 0.92));
      cursor: grab;
      -webkit-user-select: none;
      user-select: none;
      touch-action: none;
    }

    .reseller-iframe-modal-dialog.is-dragging .reseller-iframe-modal-header {
      cursor: grabbing;
    }

    .reseller-iframe-modal-title {
      margin: 0;
      font-size: 0.94rem;
      color: #f0dce4;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .reseller-iframe-modal-actions {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
    }

    .reseller-iframe-open-link,
    .reseller-iframe-close-btn {
      text-decoration: none;
      border: 1px solid rgba(195, 112, 142, 0.38);
      border-radius: 999px;
      padding: 6px 10px;
      font-size: 0.78rem;
      color: #e9d7df;
      background: rgba(195, 112, 142, 0.18);
      cursor: pointer;
      transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
    }

    .reseller-iframe-open-link:hover,
    .reseller-iframe-open-link:focus-visible,
    .reseller-iframe-close-btn:hover,
    .reseller-iframe-close-btn:focus-visible {
      border-color: rgba(236, 170, 195, 0.72);
      background: rgba(195, 112, 142, 0.32);
      transform: translateY(-1px);
      outline: none;
    }

    .reseller-iframe-modal-frame {
      width: 100%;
      flex: 1 1 auto;
      min-height: 280px;
      border: 0;
      background: #100c14;
    }

    .reseller-iframe-modal-note {
      margin: 0;
      padding: 8px 14px 10px;
      font-size: 0.74rem;
      color: #c9b5bf;
      border-top: 1px solid rgba(195, 112, 142, 0.2);
      background: rgba(16, 12, 19, 0.8);
    }

    body.reseller-iframe-open {
      overflow: hidden;
    }

    body.reseller-iframe-open.reseller-iframe-dragging {
      -webkit-user-select: none;
      user-select: none;
    }

    @media (max-width: 760px) {
      .reseller-carousel-track {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      }

      .reseller-iframe-modal-dialog {
        width: calc(100vw - 12px);
        height: min(88vh, 900px);
        top: 6px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 12px;
      }

      .reseller-iframe-modal-header {
        padding: 10px;
        cursor: default;
        touch-action: auto;
      }

      .reseller-iframe-modal-actions {
        gap: 6px;
      }

      .reseller-iframe-open-link,
      .reseller-iframe-close-btn {
        padding: 5px 8px;
        font-size: 0.72rem;
      }

      .reseller-iframe-modal-note {
        padding: 7px 10px 8px;
      }
    }

    .card {
      /*background: var(--tsumi-surface);*/
      border: 1px solid var(--tsumi-border);
      padding: 24px;
      border-radius: 20px;
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      transition: opacity 0.75s var(--tsumi-ease), transform 0.75s var(--tsumi-ease), filter 0.75s var(--tsumi-ease), border-color 0.35s ease, box-shadow 0.35s ease;
      position: relative;
      overflow: hidden;
    }

    .card.reveal-on-scroll,
    .reveal-on-scroll:not(.card) {
      opacity: 0;
      transform: translateY(24px);
      filter: blur(4px);
      transition: opacity 0.72s var(--tsumi-ease), transform 0.72s var(--tsumi-ease), filter 0.72s var(--tsumi-ease);
    }

    .card.reveal-on-scroll {
      transform: translateY(26px);
      filter: blur(5px);
    }

    .card:hover {
      transform: translateY(-6px);
      border-color: var(--tsumi-border-hover);
      box-shadow: 0 18px 34px rgba(3, 9, 15, 0.44);
    }

    .card.is-visible:hover {
      transform: translateY(-6px) !important;
    }

    .card::after {
      content: "";
      position: absolute;
      inset: -110% 30% auto -60%;
      height: 220%;
      background: linear-gradient(100deg, transparent 30%, rgba(195, 112, 142, 0.14) 50%, transparent 70%);
      transform: rotate(10deg);
      transition: transform 0.65s var(--tsumi-ease);
      pointer-events: none;
    }

    .card:hover::after {
      transform: rotate(10deg) translateX(36%);
    }

    .card.hero-panel::after,
    .card.workflow-step::after {
      content: none;
    }

    .card h3 {
      margin-bottom: 10px;
    }

    .card p {
      color: #cdc5ca;
      font-size: 14px;
    }

    .cta {
      margin-top: 160px;
      text-align: center;
      padding: 0 20px;
      opacity: 0;
      transform: translateY(24px);
      filter: blur(4px);
      transition: opacity 0.72s var(--tsumi-ease), transform 0.72s var(--tsumi-ease), filter 0.72s var(--tsumi-ease);
    }

    .cta-register-btn {
      margin-top: 20px;
    }

    .cta h2 {
      font-size: 42px;
    }

    .cta p {
      margin: 10px; 
      color: #cdc5ca;
    }

    footer {
      margin-top: 160px;
      border-top: 1px solid #222;
      text-align: center;
      padding: 24px;
      color: #666;
      font-size: 14px;
    }

    body.has-tsumi-site-footer {
      padding-bottom: 104px;
    }

    .tsumi-site-footer {
      position: fixed;
      left: 12px;
      right: 12px;
      bottom: max(12px, env(safe-area-inset-bottom));
      margin: 0;
      border: 1px solid rgba(195, 112, 142, 0.4);
      border-radius: 16px;
      background:
        linear-gradient(135deg, rgba(13, 10, 15, 0.96), rgba(9, 7, 11, 0.97)),
        radial-gradient(circle at top right, rgba(195, 112, 142, 0.26), transparent 58%);
      box-shadow: 0 14px 34px rgba(2, 8, 15, 0.5);
      transform: translateY(130%);
      opacity: 0;
      pointer-events: none;
      transition: transform 0.7s var(--tsumi-ease), opacity 0.7s var(--tsumi-ease);
      z-index: 1200;
      padding: 0;
      color: #cdc5ca;
      text-align: left;
      font-size: 13px;
    }

    .tsumi-site-footer.is-visible {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }

    .tsumi-site-footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 13px 16px;
      background: linear-gradient(180deg, rgba(16, 12, 18, 0.84), rgba(12, 9, 14, 0.86));
      transform: translateY(12px);
      opacity: 0;
      transition: transform 0.65s var(--tsumi-ease), opacity 0.65s var(--tsumi-ease);
    }

    .tsumi-site-footer.is-visible .tsumi-site-footer-inner {
      transform: translateY(0);
      opacity: 1;
    }

    .tsumi-site-footer-links {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      min-width: 0;
    }

    .tsumi-site-footer-links a,
    .tsumi-site-footer-right a {
      color: #e4c4d1;
      text-decoration: none;
      font-weight: 600;
      transition: color 0.2s ease, text-shadow 0.2s ease;
    }

    .tsumi-site-footer-links a:hover,
    .tsumi-site-footer-right a:hover {
      color: #f1d7e2;
      text-shadow: 0 0 10px rgba(195, 112, 142, 0.36);
    }

    .tsumi-site-footer-copy,
    .tsumi-site-footer-right {
      margin: 0;
      color: #b79ea9;
      white-space: nowrap;
    }

    .tsumi-site-footer-right {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      line-height: 1;
    }

    .tsumi-site-footer-brand-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .tsumi-site-footer-brand-icon {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      object-fit: cover;
      display: block;
      flex: 0 0 20px;
    }

    .tsumi-site-footer-brand-label {
      font-size: 12px;
      letter-spacing: 0.02em;
      line-height: 1;
    }

    body#dashboard .tsumi-site-footer {
      left: 284px;
      right: 12px;
    }

    @media (max-width: 930px) {
      body#dashboard .tsumi-site-footer {
        left: 12px;
      }
    }

    @media (max-width: 700px) {
      body.has-tsumi-site-footer {
        padding-bottom: 136px;
      }

      .tsumi-site-footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }

      .tsumi-site-footer-copy,
      .tsumi-site-footer-right {
        white-space: normal;
      }
    }

    .is-visible {
      opacity: 1 !important;
      transform: translateY(0) !important;
      filter: blur(0) !important;
    }

    .cta iframe {
      width: min(100%, 900px);
      aspect-ratio: 16 / 10;
      height: auto;
      border-radius: 16px;
      border: 1px solid #2a2a2a;
      box-shadow: 0 24px 44px rgba(0, 0, 0, 0.42);
      margin-top: 18px;
      opacity: 0;
      transform: translateY(16px) scale(0.985);
      transition: opacity 0.8s var(--tsumi-ease), transform 0.8s var(--tsumi-ease);
    }

    .cta.is-visible iframe {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    @media (max-width: 1040px) {
      .hero-layout {
        grid-template-columns: 1fr;
      }

      .hero-copy {
        text-align: center;
        margin: 0 auto;
      }

      .hero h1 {
        margin: 0 auto;
      }

      .hero-lead {
        margin-left: auto;
        margin-right: auto;
      }

      .hero-tags,
      .hero-buttons {
        justify-content: center;
      }

      .hero-panel {
        max-width: 720px;
        margin: 0 auto;
      }

      .feature-overview-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

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

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

    @keyframes tsumiPageIn {
      from {
        opacity: 0.985;
      }
      to {
        opacity: 1;
      }
    }

    @keyframes tsumiButtonPulse {
      0%,
      100% {
        filter: saturate(1.02) brightness(1);
      }
      32% {
        filter: saturate(1.16) brightness(1.08);
      }
      58% {
        filter: saturate(1.1) brightness(1.03);
      }
    }

    @keyframes tsumiButtonLaneShift {
      0% {
        background-position: 0% 52%, 50% -55%, 0% 0%;
      }
      50% {
        background-position: 100% 48%, 50% -50%, 0% 0%;
      }
      100% {
        background-position: 0% 52%, 50% -55%, 0% 0%;
      }
    }

    @media (max-width: 820px) {
      header {
        padding: 20px;
      }

      nav {
        display: flex;
        align-items: center;
        gap: 10px;
      }

      nav a {
        margin-left: 0;
      }

      nav a:not(.btn) {
        font-size: 13px;
      }

      .hero {
        margin-top: 72px;
        padding: 0 20px;
      }

      .hero h1 {
        font-size: clamp(2.1rem, 9vw, 3.3rem);
      }

      .hero-lead {
        font-size: 1rem;
      }

      .features {
        margin-top: 110px;
        padding: 0 20px;
      }

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

      .workflow {
        margin-top: 96px;
        padding: 0 20px;
      }

      .workflow-grid {
        grid-template-columns: 1fr;
      }

      .reseller-showcase {
        margin-top: 120px;
        padding: 0 20px;
      }

      .reseller-showcase-head {
        align-items: flex-start;
      }

      .cta {
        margin-top: 110px;
      }
    }

    @media (max-width: 560px) {
      .feature-overview-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
      }

      .tsumi-site-footer {
        transition: none !important;
      }

      header,
      .hero {
        opacity: 1 !important;
        transform: none !important;
      }

      .card,
      .reseller-showcase,
      .cta,
      .cta iframe {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
      }
    }

/* Unified lightweight premium theme */
:root {
  --tsumi-lite-surface: rgba(17, 12, 21, 0.88);
  --tsumi-lite-surface-soft: rgba(22, 16, 26, 0.8);
  --tsumi-lite-border: rgba(195, 112, 142, 0.28);
  --tsumi-lite-border-strong: rgba(226, 154, 182, 0.48);
  --tsumi-lite-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
}

body::before {
  background-image: linear-gradient(165deg, rgba(13, 10, 16, 0.98), rgba(10, 8, 13, 0.98)) !important;
}

body,
button,
input,
select,
textarea {
  font-family: var(--tsumi-font-base);
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

.glow,
.dashboard-hover-mascot {
  display: none !important;
}

header {
  transform: none;
}

.btn,
.btn-primary,
.btn-secondary {
  animation: none !important;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 42px;
  padding: 10px 18px 10px 22px;
  border-radius: 9px;
  border: 1px solid rgba(233, 193, 213, 0.52);
  background: rgba(22, 16, 26, 0.94) !important;
  color: #f3e8ee;
  box-shadow: 0 0 0 1px rgba(233, 193, 213, 0.08);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.16s ease, box-shadow 0.2s ease;
}

.btn::before,
.btn-primary::before,
.btn-secondary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 9px;
  opacity: 0.95;
  background: linear-gradient(180deg, #f3c8dd, #c97599);
  transition: width 0.22s ease, opacity 0.22s ease;
}

.btn:hover,
.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-1px);
  border-color: rgba(245, 217, 230, 0.84);
  background: rgba(30, 22, 35, 0.96) !important;
  color: #ffffff;
  box-shadow:
    0 0 0 1px rgba(245, 217, 230, 0.22),
    0 0 18px rgba(214, 122, 160, 0.28);
}

.btn:hover::before,
.btn-primary:hover::before,
.btn-secondary:hover::before {
  width: 100%;
  opacity: 0.32;
}

.btn:active,
.btn-primary:active,
.btn-secondary:active {
  transform: none;
}

.card,
.hero-panel,
.feature-overview-item,
.workflow-step,
.reseller-carousel-item,
.cta {
  background: var(--tsumi-lite-surface) !important;
  border-color: var(--tsumi-lite-border) !important;
  box-shadow: var(--tsumi-lite-shadow) !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

.card::before,
.card::after,
.feature-overview-item::before,
.feature-overview-item::after,
.hero-panel::before,
.hero-panel::after,
.workflow-step::before,
.workflow-step::after,
.reseller-carousel::before {
  display: none !important;
}

nav a:not(.btn) {
  transition: color 0.16s ease;
}

nav a:not(.btn):hover {
  transform: none;
}

body.home-page header nav a:not(.btn),
body.auth-dashboard header nav a:not(.btn) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 7px 10px;
  border-radius: 10px;
  border: 1px solid rgba(195, 112, 142, 0.22);
  background: rgba(17, 12, 21, 0.72);
  color: #d4c7ce;
  font-size: 0.82rem;
  text-decoration: none;
  transform: none;
  transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, transform 0.16s ease;
}

body.home-page header nav a:not(.btn):hover,
body.auth-dashboard header nav a:not(.btn):hover {
  color: #f4ebf0;
  border-color: rgba(226, 154, 182, 0.52);
  background: rgba(25, 17, 29, 0.82);
  transform: translateY(-1px);
}

body.home-page header nav a:not(.btn):active,
body.auth-dashboard header nav a:not(.btn):active {
  transform: none;
}

body.home-page header nav a.btn,
body.home-page header nav a.btn.btn-primary,
body.auth-dashboard header nav a.btn,
body.auth-dashboard header nav a.btn.btn-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 38px;
  padding: 8px 14px 8px 18px;
  border-radius: 9px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid rgba(233, 193, 213, 0.52);
  background: rgba(22, 16, 26, 0.94) !important;
  color: #f3e8ee;
  box-shadow: 0 0 0 1px rgba(233, 193, 213, 0.08);
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.16s ease, box-shadow 0.2s ease;
}

body.home-page header nav a.btn::before,
body.home-page header nav a.btn.btn-primary::before,
body.auth-dashboard header nav a.btn::before,
body.auth-dashboard header nav a.btn.btn-primary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 9px;
  opacity: 0.95;
  background: linear-gradient(180deg, #f3c8dd, #c97599);
  transition: width 0.22s ease, opacity 0.22s ease;
}

body.home-page header nav a.btn:hover,
body.home-page header nav a.btn.btn-primary:hover,
body.auth-dashboard header nav a.btn:hover,
body.auth-dashboard header nav a.btn.btn-primary:hover {
  transform: translateY(-1px);
  border-color: rgba(245, 217, 230, 0.84);
  background: rgba(30, 22, 35, 0.96) !important;
  color: #ffffff;
  box-shadow:
    0 0 0 1px rgba(245, 217, 230, 0.22),
    0 0 18px rgba(214, 122, 160, 0.28);
}

body.home-page header nav a.btn:hover::before,
body.home-page header nav a.btn.btn-primary:hover::before,
body.auth-dashboard header nav a.btn:hover::before,
body.auth-dashboard header nav a.btn.btn-primary:hover::before {
  width: 100%;
  opacity: 0.32;
}

body.home-page header nav a.btn:active,
body.home-page header nav a.btn.btn-primary:active,
body.auth-dashboard header nav a.btn:active,
body.auth-dashboard header nav a.btn.btn-primary:active {
  transform: none;
}

input,
select,
textarea {
  border-radius: 10px;
  border-color: var(--tsumi-lite-border);
  background: var(--tsumi-lite-surface-soft);
  box-shadow: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--tsumi-lite-border-strong);
  box-shadow: 0 0 0 2px rgba(195, 112, 142, 0.2);
}

body.legal-policy-page .terms-page {
  max-width: 920px;
  margin: 28px auto 56px;
  padding: 0;
  color: #2a222c;
  background: #fbf9fb;
  border: 1px solid rgba(113, 75, 95, 0.28);
  border-radius: 8px;
}

body.legal-policy-page .terms-hero {
  margin-top: 0;
  padding: 26px 28px 18px;
  border-radius: 0;
  border: 0;
  border-bottom: 2px solid rgba(195, 112, 142, 0.36);
  background: transparent;
  box-shadow: none;
}

body.legal-policy-page .terms-kicker {
  display: none;
}

body.legal-policy-page .terms-hero h1 {
  margin: 0 0 10px;
  color: #1f1722;
  font-size: 1.9rem;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

body.legal-policy-page .terms-subtitle {
  max-width: none;
  margin: 0;
  color: #473d48;
  line-height: 1.66;
  font-size: 1rem;
}

body.legal-policy-page .terms-sections {
  margin-top: 0;
  display: block;
  counter-reset: legal-section;
}

body.legal-policy-page .terms-card {
  padding: 22px 28px;
  border: 0;
  border-top: 1px solid rgba(116, 83, 100, 0.22);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: none;
}

body.legal-policy-page .terms-card:hover {
  border-top-color: rgba(116, 83, 100, 0.22);
  box-shadow: none;
}

body.legal-policy-page .terms-card h2 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #241b26;
  font-weight: 600;
}

body.legal-policy-page .terms-card h2::before {
  counter-increment: legal-section;
  content: "Section " counter(legal-section) ": ";
  color: #5a4151;
}

body.legal-policy-page .terms-card p,
body.legal-policy-page .terms-card ul {
  margin-top: 12px;
  color: #2e2531;
  line-height: 1.78;
  font-size: 1rem;
}

body.legal-policy-page .terms-card ul {
  padding-left: 22px;
}

body.legal-policy-page .terms-card li + li {
  margin-top: 7px;
}

body.legal-policy-page .terms-card a {
  color: #502f41;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

body.legal-policy-page .terms-card a:hover {
  color: #3f2534;
}

body.legal-policy-page .terms-ack {
  margin: 0;
  border-radius: 0;
  border: 0;
  border-top: 2px solid rgba(195, 112, 142, 0.34);
  padding: 18px 28px 24px;
  background: transparent;
  color: #2d2531;
  font-size: 0.95rem;
  line-height: 1.7;
}

body.legal-policy-page .tsumi-reveal,
body.legal-policy-page .tsumi-reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}

@media (max-width: 900px) {
  body.legal-policy-page .terms-page {
    margin: 20px 12px 40px;
  }

  body.legal-policy-page .terms-hero,
  body.legal-policy-page .terms-card,
  body.legal-policy-page .terms-ack {
    padding-left: 18px;
    padding-right: 18px;
  }

  body.legal-policy-page .terms-hero h1 {
    font-size: 1.45rem;
  }

  body.legal-policy-page .terms-subtitle,
  body.legal-policy-page .terms-card p,
  body.legal-policy-page .terms-card ul {
    font-size: 0.96rem;
    line-height: 1.7;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.legal-policy-page .tsumi-reveal,
  body.legal-policy-page .tsumi-reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

@media (max-width: 820px) {
  .hero,
  .features,
  .workflow,
  .reseller-showcase,
  .cta {
    margin-top: 84px;
  }
}

body.tsumi-legal-modal-open {
  overflow: hidden;
}

.tsumi-legal-modal {
  position: fixed;
  inset: 0;
  z-index: 1600;
  display: none;
}

.tsumi-legal-modal.is-open {
  display: block;
}

.tsumi-legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 6, 10, 0.78);
}

.tsumi-legal-modal-dialog {
  position: relative;
  width: min(980px, calc(100% - 24px));
  height: min(88vh, 860px);
  margin: clamp(10px, 3vh, 26px) auto;
  border-radius: 14px;
  border: 1px solid rgba(195, 112, 142, 0.32);
  background: #13101a;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.46);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.tsumi-legal-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(195, 112, 142, 0.24);
  background: linear-gradient(180deg, rgba(29, 21, 34, 0.96), rgba(20, 15, 25, 0.94));
}

.tsumi-legal-modal-header h3 {
  margin: 0;
  font-size: 0.96rem;
  color: #f0e5ec;
  letter-spacing: 0.01em;
}

.tsumi-legal-modal-close {
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid rgba(233, 193, 213, 0.45);
  background: rgba(26, 19, 31, 0.92);
  color: #f0e5ec;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background-color 0.16s ease, border-color 0.16s ease;
}

.tsumi-legal-modal-close:hover {
  border-color: rgba(245, 217, 230, 0.72);
  background: rgba(36, 25, 42, 0.96);
}

.tsumi-legal-modal-frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

@media (max-width: 700px) {
  .tsumi-legal-modal-dialog {
    width: calc(100% - 16px);
    height: min(90vh, 900px);
    margin-top: 8px;
    margin-bottom: 8px;
    border-radius: 12px;
  }

  .tsumi-legal-modal-header {
    padding: 10px 12px;
  }
}

/* Modern CTA refresh */
body.home-page .cta {
  position: relative;
  isolation: isolate;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(26px, 4.4vw, 42px) clamp(18px, 4vw, 40px);
  border-radius: 22px;
  border: 1px solid rgba(236, 170, 195, 0.42) !important;
  background:
    radial-gradient(circle at 8% 0%, rgba(236, 170, 195, 0.24), transparent 46%),
    radial-gradient(circle at 92% 100%, rgba(148, 228, 244, 0.18), transparent 42%),
    linear-gradient(160deg, rgba(28, 20, 33, 0.94), rgba(16, 12, 20, 0.96)) !important;
  box-shadow:
    0 24px 48px rgba(7, 4, 10, 0.48),
    inset 0 1px 0 rgba(255, 239, 248, 0.12),
    0 0 0 1px rgba(236, 170, 195, 0.14) !important;
}

body.home-page .cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(236, 170, 195, 0.08), rgba(148, 228, 244, 0.06));
  z-index: -1;
}

body.home-page .cta-eyebrow {
  margin: 0;
  color: rgba(236, 170, 195, 0.9);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

body.home-page .cta h2 {
  margin: 10px auto 0;
  max-width: 18ch;
  font-size: clamp(1.85rem, 4.2vw, 2.7rem);
  line-height: 1.08;
  color: #f8edf2;
}

body.home-page .cta-subcopy {
  margin: 14px auto 0;
  max-width: 54ch;
  color: rgba(226, 216, 222, 0.9);
  font-size: clamp(0.93rem, 0.32vw + 0.88rem, 1.05rem);
  line-height: 1.58;
}

body.home-page .cta-register-btn {
  margin-top: 22px;
  min-width: clamp(220px, 34vw, 300px);
  min-height: 52px;
  padding: 13px 24px;
  font-size: clamp(0.95rem, 0.24vw + 0.9rem, 1.05rem);
  letter-spacing: 0.012em;
  box-shadow:
    0 14px 26px rgba(195, 112, 142, 0.34),
    0 0 0 1px rgba(245, 217, 230, 0.24),
    inset 0 1px 0 rgba(255, 247, 252, 0.48);
}

body.home-page .cta-register-btn i {
  font-size: 0.92rem;
}

body.home-page .cta-trust {
  margin: 12px 0 0;
  color: rgba(205, 197, 202, 0.84);
  font-size: 0.79rem;
  letter-spacing: 0.01em;
}

@media (max-width: 640px) {
  body.home-page .cta {
    border-radius: 18px;
    padding: 22px 16px;
  }

  body.home-page .cta-register-btn {
    width: 100%;
    min-width: 0;
  }
}
.hero-resellers-foot {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.hero-resellers-foot a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.18s ease;
}
.hero-resellers-foot a:hover {
  color: var(--accent, #e089b4);
}
.hero-resellers-foot i {
  font-size: 0.7rem;
  margin-left: 4px;
}
.feature-highlight {
  border-color: rgba(255, 255, 255, 0.12);
}

.feature-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.2em 0.6em;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}
