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

    :root {
      --tsumi-primary: #c3708e;
      --tsumi-secondary: #cdc5ca;
      --tsumi-ease: cubic-bezier(0.22, 1, 0.36, 1);
      --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: 'Rubik', sans-serif;
      background: #09080b;
      color: #cdc5ca;
      overflow-x: hidden;
      min-height: 100vh;
      position: relative;
      isolation: isolate;
      animation: atlasPageIn 0.8s var(--tsumi-ease);
    }

    button,
    input,
    select,
    textarea {
      font-family: 'Rubik', sans-serif;
    }

    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(140deg, #dd95b3 0%, #c3708e 56%, #b86181 100%);
      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), inset 0 1px 0 rgba(255, 247, 252, 0.38);
    }

    .btn-primary {
      background: linear-gradient(140deg, #e2a0bb 0%, #c3708e 58%, #b35f7d 100%);
      color: #2b121c;
    }

    .btn-secondary {
      background: linear-gradient(140deg, rgba(219, 138, 170, 0.92), rgba(190, 101, 134, 0.92));
      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), inset 0 1px 0 rgba(255, 246, 251, 0.45);
      filter: brightness(1.04) saturate(1.02);
    }

    .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);
    }

    .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;
    }

    .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,
    .reseller-carousel-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,
    .feature-icon svg {
      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;
    }

    .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: flex;
      align-items: stretch;
      gap: 16px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding: 18px;
      scrollbar-width: none;
    }

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

    .reseller-carousel-item {
      flex: 0 0 min(320px, 84vw);
      min-width: min(320px, 84vw);
      scroll-snap-align: start;
      border-radius: 20px;
      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: 8px;
    }

    .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: 4px 0 0;
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 10px;
    }

    .reseller-carousel-price-label {
      color: #bcaab3;
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.07em;
    }

    .reseller-carousel-price-value {
      color: #f0dce4;
      font-size: 1.08rem;
      font-weight: 700;
    }

    .reseller-carousel-action {
      margin-top: auto;
      width: 100%;
    }

    .reseller-carousel-action.is-disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }

    .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;
    }

    @media (min-width: 1080px) {
      .reseller-carousel-item {
        flex-basis: calc((100% - 32px) / 3);
        min-width: calc((100% - 32px) / 3);
      }
    }

    .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);
    }

    hr {
      background: linear-gradient(90deg, rgba(195, 112, 142, 0.18), rgba(195, 112, 142, 0.56), rgba(195, 112, 142, 0.18));
    }

    @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 atlasFadeUp {
      from {
        opacity: 0;
        transform: translateY(18px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

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

    @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;
      }
    }
