      :root {
        --bg: #f5f2eb;
        --bg-strong: #e9f0ec;
        --surface: rgba(255, 255, 255, 0.74);
        --surface-strong: #ffffff;
        --surface-dark: #11151d;
        --ink: #18242b;
        --muted: #5e6973;
        --line: rgba(24, 36, 43, 0.12);
        --brand: #ef7e21;
        --brand-dark: #ca6110;
        --accent: #163d70;
        --teal: #16826f;
        --shadow-lg: 0 30px 80px rgba(23, 34, 44, 0.14);
        --shadow-md: 0 18px 50px rgba(23, 34, 44, 0.1);
        --radius-xl: 32px;
        --radius-lg: 24px;
        --radius-md: 18px;
        --container: 1200px;
        --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
      }

      * {
        box-sizing: border-box;
      }

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

      body {
        margin: 0;
        max-width: 100%;
        overflow-x: hidden;
        font-family: "Avenir Next", "SF Pro Display", "Segoe UI", sans-serif;
        color: var(--ink);
        background:
          radial-gradient(circle at 10% 0%, rgba(22, 130, 111, 0.12), transparent 28%),
          radial-gradient(circle at 90% 5%, rgba(239, 126, 33, 0.18), transparent 32%),
          linear-gradient(180deg, #fbfaf7 0%, #f5f2eb 42%, #f8faf9 100%);
      }

      @supports (overflow: clip) {
        html,
        body {
          overflow-x: clip;
        }
      }

      img {
        display: block;
        max-width: 100%;
      }

      main {
        overflow-x: clip;
      }

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

      button,
      input,
      textarea,
      select {
        font: inherit;
      }

      .container {
        width: min(var(--container), calc(100% - 40px));
        margin: 0 auto;
      }

      .topbar {
        position: sticky;
        top: 0;
        z-index: 50;
        backdrop-filter: blur(18px) saturate(140%);
        background: rgba(251, 250, 247, 0.74);
        border-bottom: 1px solid rgba(24, 36, 43, 0.08);
        overflow-x: clip;
      }

      .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 16px 0;
        min-width: 0;
      }

      .brand {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        font-weight: 700;
        letter-spacing: -0.02em;
        min-width: 0;
      }

      .brand-logo {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        box-shadow: 0 10px 20px rgba(22, 61, 112, 0.18);
      }

      .nav-links {
        display: flex;
        align-items: center;
        gap: 14px;
        color: var(--muted);
      }

      .nav-links a,
      .nav-download-menu summary {
        padding: 10px 14px;
        border-radius: 999px;
        transition: background 0.2s ease, color 0.2s ease;
      }

      .nav-links a:hover,
      .nav-links a:focus-visible,
      .nav-download-menu summary:hover,
      .nav-download-menu summary:focus-visible,
      .nav-download-menu[open] summary {
        background: rgba(22, 61, 112, 0.08);
        color: var(--ink);
        outline: none;
      }

      .nav-links a.is-active,
      .nav-links a[aria-current="page"],
      .nav-download-menu.is-active summary {
        background: rgba(239, 126, 33, 0.14);
        color: var(--brand-dark);
        box-shadow: inset 0 0 0 1px rgba(239, 126, 33, 0.18);
      }

      .nav-download-menu {
        position: relative;
      }

      .nav-download-menu summary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        list-style: none;
        cursor: pointer;
      }

      .nav-download-menu summary::-webkit-details-marker {
        display: none;
      }

      .nav-download-menu summary::after {
        content: "";
        width: 8px;
        height: 8px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg) translateY(-2px);
        transition: transform 0.18s ease;
      }

      .nav-download-menu[open] summary::after {
        transform: rotate(-135deg) translateY(-1px);
      }

      .nav-download-panel {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        z-index: 20;
        display: grid;
        gap: 8px;
        min-width: 220px;
        padding: 10px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(24, 36, 43, 0.08);
        box-shadow: 0 22px 42px rgba(23, 34, 44, 0.14);
        backdrop-filter: blur(18px) saturate(150%);
      }

      .nav-download-link {
        display: grid;
        gap: 4px;
        padding: 12px 14px;
        border-radius: 16px;
        background: rgba(22, 61, 112, 0.04);
        color: var(--ink);
        transition: background 0.18s ease, transform 0.18s ease;
      }

      .nav-download-link:hover,
      .nav-download-link:focus-visible {
        background: rgba(22, 61, 112, 0.08);
        transform: translateY(-1px);
        outline: none;
      }

      .nav-download-link small {
        color: var(--muted);
      }

      .nav-download-link.is-disabled {
        opacity: 0.72;
      }

      .nav-actions {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
        min-width: 0;
        max-width: 100%;
      }

      .nav-toggle {
        display: none;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        padding: 0;
        border: 1px solid rgba(24, 36, 43, 0.1);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.76);
        box-shadow: 0 14px 28px rgba(23, 34, 44, 0.08);
        cursor: pointer;
        transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
      }

      .nav-toggle:hover,
      .nav-toggle:focus-visible {
        transform: translateY(-1px);
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 18px 30px rgba(23, 34, 44, 0.12);
        outline: none;
      }

      .nav-toggle-box {
        display: inline-grid;
        gap: 4px;
      }

      .nav-toggle-line {
        display: block;
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: var(--ink);
        transform-origin: center;
        transition: transform 0.3s var(--ease-smooth), opacity 0.2s ease;
      }

      .lang-switch {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px;
        border-radius: 999px;
        background: rgba(22, 61, 112, 0.07);
      }

      .lang-toggle {
        border: 0;
        border-radius: 999px;
        padding: 9px 12px;
        background: transparent;
        color: var(--muted);
        font-weight: 700;
        cursor: pointer;
        transition: background 0.18s ease, color 0.18s ease;
      }

      .lang-toggle.active {
        background: rgba(255, 255, 255, 0.92);
        color: var(--ink);
        box-shadow: 0 10px 20px rgba(23, 34, 44, 0.08);
      }

      .btn {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        border: 1px solid transparent;
        border-radius: 999px;
        padding: 14px 22px;
        font-weight: 700;
        letter-spacing: -0.01em;
        cursor: pointer;
        overflow: hidden;
        isolation: isolate;
        transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease,
          background 0.18s ease;
      }

      .btn::before {
        content: "";
        position: absolute;
        top: -30%;
        left: -60%;
        width: 55%;
        height: 160%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
        transform: translateX(-120%) skewX(-18deg);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.6s var(--ease-smooth), opacity 0.3s ease;
      }

      .btn:hover,
      .btn:focus-visible {
        transform: translateY(-2px) scale(1.01);
        outline: none;
      }

      .btn:hover::before,
      .btn:focus-visible::before {
        opacity: 1;
        transform: translateX(340%) skewX(-18deg);
      }

      .btn-primary {
        color: #fff;
        background: linear-gradient(135deg, var(--brand), var(--brand-dark));
        box-shadow: 0 18px 35px rgba(239, 126, 33, 0.28);
      }

      .btn-primary:hover,
      .btn-primary:focus-visible {
        box-shadow: 0 24px 42px rgba(239, 126, 33, 0.34);
      }

      .btn-secondary {
        background: rgba(255, 255, 255, 0.7);
        border-color: rgba(22, 61, 112, 0.12);
      }

      .btn-secondary:hover,
      .btn-secondary:focus-visible {
        background: rgba(255, 255, 255, 0.94);
        border-color: rgba(22, 61, 112, 0.22);
        box-shadow: 0 18px 34px rgba(23, 34, 44, 0.08);
      }

      .btn-ghost {
        padding: 12px 18px;
        border-color: rgba(24, 36, 43, 0.12);
        background: rgba(255, 255, 255, 0.62);
      }

      .btn-ghost:hover,
      .btn-ghost:focus-visible {
        background: rgba(255, 255, 255, 0.9);
        border-color: rgba(24, 36, 43, 0.18);
        box-shadow: 0 16px 28px rgba(23, 34, 44, 0.08);
      }

      .hero {
        position: relative;
        overflow: clip;
        padding: 76px 0 44px;
      }

      .hero-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
        align-items: center;
        gap: 48px;
        min-width: 0;
      }

      .hero-copy-block > *,
      .hero-meta .meta-card,
      .hero-visual .glow,
      .hero-visual .floating-chip,
      .hero-visual .device-card {
        transition:
          opacity 0.85s var(--ease-smooth),
          transform 0.9s var(--ease-smooth),
          filter 0.9s var(--ease-smooth);
        transition-delay: var(--hero-delay, 0ms);
      }

      body.page-preload .hero-copy-block > *,
      body.page-preload .hero-meta .meta-card,
      body.page-preload .hero-visual .glow,
      body.page-preload .hero-visual .floating-chip,
      body.page-preload .hero-visual .device-card {
        opacity: 0;
        filter: blur(10px);
      }

      .hero-copy-block > :nth-child(1) {
        --hero-delay: 80ms;
      }

      .hero-copy-block > :nth-child(2) {
        --hero-delay: 150ms;
      }

      .hero-copy-block > :nth-child(3) {
        --hero-delay: 220ms;
      }

      .hero-copy-block > :nth-child(4) {
        --hero-delay: 300ms;
      }

      .hero-copy-block > :nth-child(5) {
        --hero-delay: 380ms;
      }

      .hero-copy-block > :nth-child(6) {
        --hero-delay: 420ms;
      }

      .hero-meta .meta-card:nth-child(1) {
        --hero-delay: 420ms;
      }

      .hero-meta .meta-card:nth-child(2) {
        --hero-delay: 500ms;
      }

      .hero-meta .meta-card:nth-child(3) {
        --hero-delay: 580ms;
      }

      .hero-visual .glow.orange {
        --hero-delay: 180ms;
      }

      .hero-visual .device-card.phone {
        --hero-delay: 280ms;
      }

      .hero-visual .device-card.desktop {
        --hero-delay: 360ms;
      }

      .hero-visual .device-card.tablet {
        --hero-delay: 440ms;
      }

      .hero-visual .floating-chip {
        --hero-delay: 520ms;
      }

      body.page-preload .hero-copy-block > * {
        transform: translateY(24px);
      }

      body.page-preload .hero-meta .meta-card {
        transform: translateY(26px) scale(0.98);
      }

      body.page-preload .hero-visual .glow {
        transform: scale(0.88);
      }

      body.page-preload .hero-visual .device-card.phone {
        transform: translate3d(22px, 32px, 0) rotate(var(--rotate)) scale(0.96);
      }

      body.page-preload .hero-visual .device-card.desktop {
        transform: translate3d(-18px, 22px, 0) rotate(var(--rotate)) scale(0.97);
      }

      body.page-preload .hero-visual .device-card.tablet {
        transform: translate3d(-12px, 26px, 0) rotate(var(--rotate)) scale(0.97);
      }

      body.page-preload .hero-visual .floating-chip {
        transform: translateY(18px) scale(0.98);
      }

      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
        border-radius: 999px;
        background: rgba(22, 130, 111, 0.1);
        color: var(--teal);
        font-size: 0.95rem;
        font-weight: 700;
      }

      .hero-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
      }

      .free-pill {
        position: relative;
        display: inline-flex;
        align-items: center;
        padding: 10px 14px;
        border-radius: 999px;
        background: rgba(239, 126, 33, 0.12);
        color: var(--brand-dark);
        font-size: 0.95rem;
        font-weight: 700;
        overflow: hidden;
        animation: free-pill-pulse 6.2s ease-in-out infinite;
      }

      .free-pill::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.32) 45%, transparent 100%);
        transform: translateX(-130%);
        animation: pill-sheen 7.4s ease-in-out infinite;
        pointer-events: none;
      }

      .hero h1 {
        margin: 18px 0 18px;
        font-size: clamp(3rem, 6vw, 5.2rem);
        line-height: 0.95;
        letter-spacing: -0.05em;
        max-width: 11ch;
      }

      .hero-copy {
        margin: 0;
        max-width: 52ch;
        color: var(--muted);
        font-size: clamp(1rem, 2vw, 1.18rem);
        line-height: 1.65;
      }

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

      .hero-store-badges {
        margin-top: 18px;
      }

      .hero-note {
        margin: 14px 0 0;
        color: var(--muted);
        font-size: 0.96rem;
        line-height: 1.6;
      }

      .hero-note:empty {
        display: none;
      }

      .hero-meta {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        margin-top: 30px;
      }

      .meta-card {
        padding: 18px;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(24, 36, 43, 0.08);
        box-shadow: 0 16px 40px rgba(25, 36, 45, 0.06);
      }

      .meta-card strong {
        display: block;
        font-size: 1.6rem;
        letter-spacing: -0.03em;
      }

      .meta-card span {
        color: var(--muted);
      }

      .visual-stage {
        position: relative;
        min-height: 640px;
        isolation: isolate;
      }

      .glow {
        position: absolute;
        inset: auto;
        border-radius: 999px;
        filter: blur(22px);
        opacity: 0.72;
        pointer-events: none;
        transition: transform 0.55s var(--ease-smooth), opacity 0.55s ease;
        will-change: transform, opacity;
      }

      .glow.orange {
        width: 240px;
        height: 240px;
        right: 10%;
        top: 3%;
        background: rgba(239, 126, 33, 0.28);
        animation: glow-pulse-orange 9s ease-in-out infinite;
      }

      .glow.blue {
        width: 280px;
        height: 280px;
        left: 2%;
        bottom: 10%;
        background: rgba(22, 61, 112, 0.16);
        animation: glow-pulse-blue 11s ease-in-out infinite;
      }

      .device-card {
        --rotate: 0deg;
        --motion-x: 0px;
        --motion-y: 0px;
        position: absolute;
        overflow: hidden;
        border-radius: 28px;
        border: 1px solid rgba(255, 255, 255, 0.4);
        box-shadow: var(--shadow-lg);
        background: rgba(12, 18, 25, 0.92);
        transform: translate3d(var(--motion-x), var(--motion-y), 0) rotate(var(--rotate));
        transition: transform 0.55s var(--ease-smooth), box-shadow 0.35s ease;
        will-change: transform;
      }

      .device-card::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
        pointer-events: none;
      }

      .device-card.phone {
        width: min(280px, 44%);
        right: 0;
        top: 38px;
        --rotate: 7deg;
      }

      .device-card.tablet {
        width: min(520px, 82%);
        left: 0;
        bottom: 20px;
        --rotate: -5deg;
      }

      .device-card.desktop {
        width: min(620px, 88%);
        left: 90px;
        top: 128px;
      }

      .device-card img {
        width: 100%;
        height: auto;
      }

      .floating-chip {
        --motion-x: 0px;
        --motion-y: 0px;
        position: absolute;
        padding: 14px 16px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(24, 36, 43, 0.08);
        box-shadow: var(--shadow-md);
        backdrop-filter: blur(12px);
        transform: translate3d(var(--motion-x), var(--motion-y), 0);
        transition: transform 0.55s var(--ease-smooth), box-shadow 0.35s ease;
        will-change: transform;
      }

      .floating-chip strong {
        display: block;
        font-size: 1.15rem;
        letter-spacing: -0.02em;
      }

      .floating-chip span {
        color: var(--muted);
        font-size: 0.92rem;
      }

      .chip-a {
        left: 4%;
        top: 32px;
      }

      .chip-b {
        right: 4%;
        bottom: 12px;
      }

      .section {
        padding: 56px 0;
        overflow-x: clip;
      }

      .section-head {
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 20px;
        margin-bottom: 28px;
      }

      .section-head h1,
      .section-head h2 {
        margin: 0;
        font-size: clamp(2rem, 4vw, 3.2rem);
        line-height: 1;
        letter-spacing: -0.04em;
      }

      .workflow-head-title {
        white-space: pre-line;
      }

      .section-head p {
        margin: 0;
        max-width: 52ch;
        color: var(--muted);
        line-height: 1.7;
      }

      .tour-shell {
        padding: 18px;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.58);
        border: 1px solid rgba(24, 36, 43, 0.08);
        box-shadow: var(--shadow-lg);
        backdrop-filter: blur(14px);
      }

      .platform-tabs {
        display: inline-flex;
        flex-wrap: wrap;
        gap: 10px;
        padding: 8px;
        border-radius: 999px;
        background: rgba(24, 36, 43, 0.05);
      }

      .platform-tab {
        border: 0;
        border-radius: 999px;
        padding: 12px 18px;
        background: transparent;
        color: var(--muted);
        font-weight: 700;
        cursor: pointer;
        transition: background 0.18s ease, color 0.18s ease;
      }

      .platform-tab.active {
        background: var(--surface-strong);
        color: var(--ink);
        box-shadow: 0 10px 24px rgba(23, 34, 44, 0.08);
      }

      .tour-layout {
        display: grid;
        grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
        gap: 26px;
        margin-top: 24px;
        min-width: 0;
      }

      .tour-copy {
        padding: 24px;
        border-radius: 26px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(242, 247, 245, 0.75));
        border: 1px solid rgba(24, 36, 43, 0.08);
        min-width: 0;
      }

      .tour-copy h3 {
        margin: 12px 0 10px;
        font-size: clamp(1.8rem, 3vw, 2.4rem);
        line-height: 1;
        letter-spacing: -0.04em;
      }

      .tour-copy p {
        margin: 0;
        color: var(--muted);
        line-height: 1.75;
      }

      .tour-label {
        display: inline-flex;
        padding: 8px 12px;
        border-radius: 999px;
        background: rgba(22, 61, 112, 0.08);
        color: var(--accent);
        font-weight: 700;
        font-size: 0.92rem;
      }

      .tour-points {
        display: grid;
        gap: 12px;
        margin: 22px 0 0;
      }

      .tour-point {
        display: grid;
        grid-template-columns: 34px 1fr;
        gap: 12px;
        align-items: start;
        padding: 12px 14px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.74);
        border: 1px solid rgba(24, 36, 43, 0.06);
        animation: point-rise-in 0.46s var(--ease-smooth) both;
        animation-delay: var(--point-delay, 0ms);
      }

      .tour-point.is-single-line {
        align-items: center;
      }

      .tour-point-index {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(239, 126, 33, 0.18), rgba(22, 61, 112, 0.12));
        color: var(--ink);
        font-weight: 800;
      }

      .tour-point-copy {
        display: block;
      }

      .tour-stage {
        padding: 18px;
        border-radius: 28px;
        background: linear-gradient(180deg, rgba(14, 20, 28, 0.98), rgba(20, 29, 39, 0.98));
        box-shadow: 0 28px 70px rgba(14, 20, 28, 0.34);
        min-width: 0;
      }

      .tour-stage-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 18px;
        margin-bottom: 16px;
        color: rgba(255, 255, 255, 0.78);
      }

      .tour-stage-top h4 {
        margin: 0;
        color: #fff;
        font-size: 1.1rem;
      }

      .tour-stage-top p {
        margin: 6px 0 0;
        color: rgba(255, 255, 255, 0.62);
        font-size: 0.95rem;
      }

      .tour-counter {
        padding: 10px 14px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        white-space: nowrap;
      }

      .stage-frame {
        position: relative;
        display: grid;
        place-items: center;
        min-height: 540px;
        border-radius: 24px;
        overflow: hidden;
        background:
          radial-gradient(circle at 18% 12%, rgba(239, 126, 33, 0.16), transparent 24%),
          radial-gradient(circle at 80% 20%, rgba(22, 61, 112, 0.22), transparent 26%),
          #0b1117;
        border: 1px solid rgba(255, 255, 255, 0.06);
      }

      .stage-frame img {
        max-width: min(100%, 880px);
        max-height: 500px;
        object-fit: contain;
        cursor: zoom-in;
        transform: translateY(0);
        transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
      }

      .stage-frame img.is-animating {
        animation: stage-swap-in 0.55s var(--ease-smooth);
      }

      .stage-frame.is-phone img {
        max-height: 500px;
      }

      .stage-frame.is-tablet img {
        max-height: 470px;
      }

      .stage-frame.is-desktop img {
        max-height: 440px;
      }

      .stage-frame:hover img {
        transform: translateY(-4px) scale(1.01);
        filter: saturate(1.04);
      }

      .thumb-row {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        margin-top: 16px;
        width: 100%;
        max-width: 100%;
      }

      .thumb {
        display: grid;
        gap: 10px;
        padding: 10px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid transparent;
        color: rgba(255, 255, 255, 0.78);
        cursor: pointer;
        transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
        text-align: left;
        animation: card-rise-in 0.45s var(--ease-smooth) both;
        animation-delay: var(--thumb-delay, 0ms);
      }

      .thumb:hover,
      .thumb:focus-visible {
        transform: translateY(-1px);
        border-color: rgba(255, 255, 255, 0.18);
        outline: none;
      }

      .thumb.active {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(239, 126, 33, 0.8);
        color: #fff;
      }

      .thumb img {
        width: 100%;
        aspect-ratio: 1.4 / 1;
        object-fit: cover;
        border-radius: 12px;
        transition: transform 0.3s ease, filter 0.3s ease;
      }

      .thumb.active img {
        transform: scale(1.03);
        filter: saturate(1.04);
      }

      .thumb strong {
        display: block;
        font-size: 0.97rem;
      }

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

      .feature-card {
        position: relative;
        overflow: hidden;
        padding: 26px;
        border-radius: 26px;
        background: rgba(255, 255, 255, 0.7);
        border: 1px solid rgba(24, 36, 43, 0.08);
        box-shadow: 0 18px 44px rgba(24, 36, 43, 0.07);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }

      .feature-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 24px 50px rgba(24, 36, 43, 0.12);
      }

      .feature-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--brand), var(--accent), var(--teal));
      }

      .feature-card h3 {
        margin: 0 0 10px;
        font-size: 1.3rem;
        letter-spacing: -0.03em;
      }

      .feature-card p {
        margin: 0;
        color: var(--muted);
        line-height: 1.72;
      }

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

      .workflow-card {
        padding: 24px;
        border-radius: 24px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(235, 242, 239, 0.68));
        border: 1px solid rgba(24, 36, 43, 0.08);
      }

      .workflow-step {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(22, 61, 112, 0.08);
        color: var(--accent);
        font-weight: 800;
      }

      .workflow-card h3 {
        margin: 18px 0 10px;
        font-size: 1.25rem;
        letter-spacing: -0.03em;
      }

      .workflow-card p {
        margin: 0;
        color: var(--muted);
        line-height: 1.7;
      }

      .privacy-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
        gap: 18px;
      }

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

      .news-card {
        display: grid;
        border-radius: 26px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.8);
        border: 1px solid rgba(24, 36, 43, 0.08);
        box-shadow: 0 18px 44px rgba(24, 36, 43, 0.08);
      }

      .news-card-image {
        display: block;
        aspect-ratio: 16 / 9;
        overflow: hidden;
      }

      .news-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .news-card-body {
        display: grid;
        gap: 12px;
        padding: 22px;
      }

      .news-card-date {
        color: var(--teal);
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
      }

      .news-card h3 {
        margin: 0;
        font-size: 1.4rem;
        line-height: 1.08;
        letter-spacing: -0.03em;
      }

      .news-card p {
        margin: 0;
        color: var(--muted);
        line-height: 1.7;
      }

      .news-card-link {
        color: var(--accent);
        font-weight: 700;
      }

      .news-empty {
        margin: 0;
        color: var(--muted);
      }

      .news-single-main {
        padding: 24px 0 80px;
      }

      .news-single-section {
        padding-top: 28px;
      }

      .news-single-container {
        display: grid;
      }

      .news-single-nav {
        gap: 18px;
      }

      .news-single-actions {
        margin-left: auto;
      }

      .news-back-link,
      .news-single-back-inline {
        white-space: nowrap;
      }

      .news-single-article {
        max-width: 880px;
        margin: 0 auto;
        padding: clamp(30px, 4vw, 44px);
        border-radius: 32px;
        background: rgba(255, 255, 255, 0.82);
        border: 1px solid rgba(24, 36, 43, 0.08);
        box-shadow: 0 26px 54px rgba(23, 34, 44, 0.1);
        backdrop-filter: blur(18px) saturate(150%);
      }

      .news-single-intro {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        margin-bottom: 18px;
      }

      .news-single-back-inline {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-weight: 700;
        color: var(--accent);
      }

      .news-single-back-inline::before {
        content: "";
        width: 9px;
        height: 9px;
        border-left: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg);
      }

      .news-single-title {
        margin: 0 0 26px;
        font-size: clamp(2.2rem, 4vw, 3.6rem);
        line-height: 0.98;
        letter-spacing: -0.045em;
      }

      .news-single-image {
        margin: 0 0 28px;
        border-radius: 26px;
        overflow: hidden;
        background: rgba(22, 61, 112, 0.06);
      }

      .news-single-image img {
        width: 100%;
        height: auto;
      }

      .news-single-content {
        color: var(--ink);
        font-size: 1.08rem;
        line-height: 1.8;
      }

      .news-single-content > *:first-child {
        margin-top: 0;
      }

      .news-single-content > *:last-child {
        margin-bottom: 0;
      }

      .news-single-content h2,
      .news-single-content h3,
      .news-single-content h4 {
        margin: 2.1em 0 0.7em;
        line-height: 1.12;
        letter-spacing: -0.03em;
      }

      .news-single-content p,
      .news-single-content ul,
      .news-single-content ol,
      .news-single-content blockquote {
        margin: 0 0 1.15em;
      }

      .news-single-content a {
        color: var(--accent);
        text-decoration: underline;
        text-decoration-thickness: 1.5px;
        text-underline-offset: 0.14em;
      }

      .privacy-card {
        padding: 28px;
        border-radius: 28px;
        background: rgba(255, 255, 255, 0.76);
        border: 1px solid rgba(24, 36, 43, 0.08);
        box-shadow: 0 18px 44px rgba(24, 36, 43, 0.08);
      }

      .privacy-card h3 {
        margin: 0 0 12px;
        font-size: 1.5rem;
        letter-spacing: -0.03em;
      }

      .privacy-card p {
        margin: 0;
        color: var(--muted);
        line-height: 1.75;
      }

      .privacy-stack {
        display: grid;
        gap: 14px;
      }

      .privacy-option {
        padding: 18px 20px;
        border-radius: 22px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(235, 242, 239, 0.7));
        border: 1px solid rgba(24, 36, 43, 0.08);
      }

      .privacy-option strong {
        display: block;
        margin-bottom: 8px;
        font-size: 1.05rem;
        letter-spacing: -0.02em;
      }

      .privacy-option span {
        color: var(--muted);
        line-height: 1.65;
      }

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

      .privacy-list li {
        display: grid;
        grid-template-columns: 22px 1fr;
        gap: 12px;
        align-items: start;
        color: var(--ink);
      }

      .privacy-list li::before {
        content: "";
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: rgba(22, 130, 111, 0.1);
        color: var(--teal);
        font-weight: 800;
      }

      .faq-shell {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
        gap: 18px;
      }

      .faq-list {
        display: grid;
        gap: 14px;
      }

      .faq-item {
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.78);
        border: 1px solid rgba(24, 36, 43, 0.08);
        box-shadow: 0 18px 44px rgba(24, 36, 43, 0.08);
        overflow: hidden;
        transition: transform 0.24s ease, box-shadow 0.24s ease;
      }

      .faq-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 24px 52px rgba(24, 36, 43, 0.1);
      }

      .faq-question {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        padding: 22px 24px;
        border: 0;
        background: transparent;
        color: var(--ink);
        text-align: left;
        cursor: pointer;
      }

      .faq-question strong {
        font-size: 1.08rem;
        letter-spacing: -0.02em;
      }

      .faq-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: rgba(22, 61, 112, 0.08);
        color: var(--accent);
        font-size: 1.3rem;
        font-weight: 500;
        flex-shrink: 0;
        transition: transform 0.2s ease, background 0.2s ease;
      }

      .faq-item.open .faq-icon {
        transform: rotate(45deg);
        background: rgba(239, 126, 33, 0.16);
      }

      .faq-answer {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.22s ease;
      }

      .faq-item.open .faq-answer {
        grid-template-rows: 1fr;
      }

      .faq-answer-inner {
        overflow: hidden;
      }

      .faq-answer p {
        margin: 0;
        padding: 0 24px 24px;
        color: var(--muted);
        line-height: 1.75;
        white-space: pre-line;
      }

      .faq-side {
        padding: 28px;
        border-radius: 28px;
        background:
          radial-gradient(circle at 90% 15%, rgba(239, 126, 33, 0.18), transparent 24%),
          linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(232, 241, 237, 0.8));
        border: 1px solid rgba(24, 36, 43, 0.08);
        box-shadow: 0 18px 44px rgba(24, 36, 43, 0.08);
      }

      .faq-side h3 {
        margin: 0 0 12px;
        font-size: 1.55rem;
        letter-spacing: -0.03em;
      }

      .faq-side p {
        margin: 0;
        color: var(--muted);
        line-height: 1.75;
      }

      .faq-side .btn {
        margin-top: 20px;
      }

      .contact-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.84fr);
        gap: 18px;
      }

      .contact-grid.contact-grid-single {
        grid-template-columns: minmax(0, 860px);
        justify-content: center;
      }

      .contact-card,
      .contact-side {
        padding: 28px;
        border-radius: 28px;
        border: 1px solid rgba(24, 36, 43, 0.08);
        box-shadow: 0 18px 44px rgba(24, 36, 43, 0.08);
      }

      .contact-card {
        background: rgba(255, 255, 255, 0.82);
      }

      .contact-side {
        background:
          radial-gradient(circle at 92% 18%, rgba(22, 130, 111, 0.16), transparent 24%),
          linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(235, 242, 239, 0.72));
      }

      .contact-side h3,
      .contact-card h3 {
        margin: 0 0 12px;
        font-size: 1.55rem;
        letter-spacing: -0.03em;
      }

      .contact-side p,
      .contact-card p {
        margin: 0;
        color: var(--muted);
        line-height: 1.75;
      }

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

      .contact-honeypot {
        position: absolute;
        left: -9999px;
        width: 1px;
        height: 1px;
        overflow: hidden;
      }

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

      .form-field {
        display: grid;
        gap: 8px;
      }

      .form-field label {
        font-weight: 700;
        letter-spacing: -0.01em;
      }

      .form-field input,
      .form-field textarea {
        width: 100%;
        border: 1px solid rgba(24, 36, 43, 0.12);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.9);
        padding: 14px 16px;
        color: var(--ink);
        transition: border-color 0.18s ease, box-shadow 0.18s ease;
      }

      .form-field textarea {
        min-height: 160px;
        resize: vertical;
      }

      .form-field input:focus,
      .form-field textarea:focus {
        outline: none;
        border-color: rgba(22, 61, 112, 0.28);
        box-shadow: 0 0 0 4px rgba(22, 61, 112, 0.08);
      }

      .contact-help,
      .contact-status {
        font-size: 0.95rem;
      }

      .contact-status {
        min-height: 1.4em;
        color: var(--teal);
        font-weight: 600;
      }

      .contact-status.is-error {
        color: #b54735;
      }

      .contact-status.is-success {
        color: var(--teal);
      }

      .contact-status.is-sending {
        color: var(--accent);
      }

      .cta-panel {
        position: relative;
        overflow: hidden;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 28px;
        align-items: center;
        padding: 34px;
        border-radius: 34px;
        background:
          radial-gradient(circle at 18% 12%, rgba(239, 126, 33, 0.34), transparent 24%),
          radial-gradient(circle at 88% 22%, rgba(22, 130, 111, 0.28), transparent 26%),
          linear-gradient(135deg, #15212d 0%, #132b43 52%, #133531 100%);
        color: #fff;
        box-shadow: 0 30px 80px rgba(19, 33, 45, 0.28);
      }

      .cta-panel::before {
        content: "";
        position: absolute;
        inset: -20%;
        background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.13) 48%, transparent 76%);
        transform: translateX(-65%);
        animation: panel-sheen 10s linear infinite;
        pointer-events: none;
      }

      .cta-panel > * {
        position: relative;
        z-index: 1;
      }

      .cta-panel h2 {
        margin: 0 0 12px;
        font-size: clamp(2rem, 3vw, 3rem);
        line-height: 0.98;
        letter-spacing: -0.04em;
      }

      .cta-panel p {
        margin: 0;
        max-width: 48ch;
        color: rgba(255, 255, 255, 0.78);
        line-height: 1.75;
      }

      .store-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
      }

      .store-badge {
        display: inline-flex;
        width: auto;
        max-width: 100%;
        border-radius: 18px;
        line-height: 0;
        transition: transform 0.24s ease, opacity 0.18s ease;
      }

      .store-badge-image {
        display: block;
        width: auto;
        height: 80px;
        max-width: 100%;
        border-radius: 18px;
        box-shadow: 0 20px 34px rgba(0, 0, 0, 0.2);
        transition: box-shadow 0.24s ease, filter 0.24s ease;
      }

      .store-badge:hover,
      .store-badge:focus-visible {
        transform: translateY(-4px);
        outline: none;
      }

      .store-badge:not(.disabled):hover,
      .store-badge:not(.disabled):focus-visible {
        opacity: 1;
      }

      .store-badge:not(.disabled):hover .store-badge-image,
      .store-badge:not(.disabled):focus-visible .store-badge-image {
        box-shadow: 0 26px 42px rgba(0, 0, 0, 0.3);
      }

      .store-badge.disabled {
        opacity: 0.58;
        cursor: not-allowed;
      }

      .store-badge.disabled .store-badge-image {
        filter: saturate(0.72) brightness(0.94);
      }

      .store-badge.disabled:hover,
      .store-badge.disabled:focus-visible {
        transform: none;
      }

      .footer {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 24px;
        padding: 28px 0 12px;
        color: var(--muted);
      }

      .footer a {
        color: var(--accent);
        font-weight: 700;
      }

      .footer-copy-group {
        min-width: 0;
        width: 100%;
      }

      #footerCopy {
        display: block;
        color: var(--muted);
        font-size: clamp(1rem, 1.2vw, 1.08rem);
        line-height: 1.45;
        letter-spacing: -0.015em;
      }

      .footer-note-row {
        padding: 0 0 38px;
      }

      .footer-note {
        margin: 0;
        max-width: 80ch;
        line-height: 1.6;
      }

      .footer-note-subtle {
        color: rgba(94, 105, 115, 0.9);
        font-size: 0.84rem;
        letter-spacing: 0;
      }

      .footer-meta {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
        justify-content: flex-end;
        justify-self: end;
        white-space: nowrap;
      }

      .reveal {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(24px) scale(0.985);
        transition:
          opacity 0.55s var(--ease-smooth),
          transform 0.55s var(--ease-smooth),
          filter 0.55s var(--ease-smooth);
        transition-delay: var(--reveal-delay, 0ms);
      }

      .reveal.show {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0) scale(1);
      }

      @keyframes free-pill-pulse {
        0%,
        100% {
          box-shadow: 0 0 0 rgba(239, 126, 33, 0);
          transform: translateY(0);
        }

        50% {
          box-shadow: 0 16px 28px rgba(239, 126, 33, 0.14);
          transform: translateY(-1px);
        }
      }

      @keyframes pill-sheen {
        0%,
        12% {
          transform: translateX(-130%);
        }

        22%,
        100% {
          transform: translateX(130%);
        }
      }

      @keyframes glow-pulse-orange {
        0%,
        100% {
          opacity: 0.58;
          filter: blur(18px);
        }

        50% {
          opacity: 0.84;
          filter: blur(26px);
        }
      }

      @keyframes glow-pulse-blue {
        0%,
        100% {
          opacity: 0.5;
          filter: blur(20px);
        }

        50% {
          opacity: 0.72;
          filter: blur(28px);
        }
      }

      @keyframes stage-swap-in {
        0% {
          opacity: 0;
          filter: blur(14px);
          transform: translateY(18px) scale(0.985);
        }

        100% {
          opacity: 1;
          filter: blur(0);
          transform: translateY(0) scale(1);
        }
      }

      @keyframes point-rise-in {
        0% {
          opacity: 0;
          transform: translateY(12px);
        }

        100% {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes card-rise-in {
        0% {
          opacity: 0;
          transform: translateY(12px) scale(0.985);
        }

        100% {
          opacity: 1;
          transform: translateY(0) scale(1);
        }
      }

      @keyframes panel-sheen {
        0% {
          transform: translateX(-80%);
        }

        100% {
          transform: translateX(80%);
        }
      }

      .lightbox {
        position: fixed;
        inset: 0;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 24px;
        background: rgba(11, 17, 24, 0.9);
        z-index: 80;
      }

      .lightbox.open {
        display: flex;
      }

      .lightbox-panel {
        position: relative;
        width: min(1200px, 100%);
        max-height: calc(100vh - 60px);
        padding: 18px;
        border-radius: 28px;
        background: rgba(17, 24, 33, 0.94);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
      }

      .lightbox-close {
        position: absolute;
        top: 14px;
        right: 14px;
        width: 42px;
        height: 42px;
        border: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        font-size: 1.3rem;
        cursor: pointer;
      }

      .lightbox img {
        width: 100%;
        max-height: calc(100vh - 120px);
        object-fit: contain;
        border-radius: 18px;
      }

      .lightbox-caption {
        display: flex;
        justify-content: space-between;
        gap: 18px;
        margin-top: 14px;
        color: rgba(255, 255, 255, 0.78);
      }

      @media (max-width: 1120px) {
        .hero-grid,
        .tour-layout,
        .cta-panel {
          grid-template-columns: 1fr;
        }

        .visual-stage {
          min-height: 560px;
        }

        .device-card.desktop {
          left: 40px;
        }

        .feature-grid,
        .workflow,
        .news-grid,
        .privacy-grid,
        .faq-shell,
        .contact-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }
      }

      @media (max-width: 860px) {
        body.caratrip-landing-page {
          padding-top: 104px;
        }

        body.caratrip-news-single {
          padding-top: 104px;
        }

        .topbar {
          position: fixed;
          top: 0;
          left: 0;
          right: 0;
          z-index: 80;
          padding-top: 10px;
          background: transparent;
          border-bottom: 0;
          backdrop-filter: none;
        }

        .hero-grid {
          gap: 28px;
        }

        .nav {
          flex-wrap: wrap;
          align-items: center;
          position: relative;
          padding: 12px 14px;
          border-radius: 28px;
          background: rgba(255, 255, 255, 0.78);
          border: 1px solid rgba(24, 36, 43, 0.08);
          box-shadow: 0 20px 40px rgba(23, 34, 44, 0.1);
          backdrop-filter: blur(18px) saturate(150%);
        }

        .news-single-article {
          padding: 26px 22px;
          border-radius: 28px;
        }

        .news-single-intro {
          align-items: flex-start;
          flex-direction: column;
        }

        .news-single-actions {
          width: 100%;
          margin-left: 0;
        }

        .news-back-link {
          width: 100%;
          justify-content: center;
        }

        .nav-links {
          order: 4;
          width: 100%;
          display: grid;
          gap: 10px;
          max-height: 0;
          opacity: 0;
          overflow: hidden;
          padding-top: 0;
          pointer-events: none;
          transform: translateY(-12px);
          transition:
            max-height 0.38s var(--ease-smooth),
            opacity 0.24s ease,
            transform 0.38s var(--ease-smooth),
            padding-top 0.38s var(--ease-smooth);
        }

        .nav-download-panel {
          position: static;
          min-width: 0;
          margin-top: 8px;
          padding: 0;
          border: 0;
          box-shadow: none;
          background: transparent;
          backdrop-filter: none;
        }

        .nav-download-link {
          background: rgba(255, 255, 255, 0.86);
          border: 1px solid rgba(24, 36, 43, 0.08);
          box-shadow: 0 12px 24px rgba(23, 34, 44, 0.06);
        }

        .nav-actions {
          margin-left: auto;
          align-items: center;
        }

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

        body.menu-open {
          overflow: hidden;
        }

        body.menu-open .topbar {
          background: transparent;
          box-shadow: none;
        }

        body.menu-open .nav {
          background: rgba(255, 255, 255, 0.94);
          box-shadow: 0 26px 44px rgba(23, 34, 44, 0.12);
        }

        body.menu-open .nav-links {
          max-height: calc(100dvh - 128px);
          opacity: 1;
          padding-top: 14px;
          margin-top: 6px;
          overflow-y: auto;
          overscroll-behavior: contain;
          pointer-events: auto;
          transform: translateY(0);
          border-top: 1px solid rgba(24, 36, 43, 0.08);
        }

        .nav-links a {
          opacity: 0;
          transform: translateY(10px);
          background: rgba(255, 255, 255, 0.86);
          border: 1px solid rgba(24, 36, 43, 0.08);
          box-shadow: 0 12px 24px rgba(23, 34, 44, 0.06);
          transition:
            transform 0.3s var(--ease-smooth),
            opacity 0.22s ease,
            background 0.2s ease,
            color 0.2s ease;
        }

        body.menu-open .nav-links a {
          opacity: 1;
          transform: translateY(0);
        }

        body.menu-open .nav-links a:nth-child(1) {
          transition-delay: 30ms;
        }

        body.menu-open .nav-links a:nth-child(2) {
          transition-delay: 60ms;
        }

        body.menu-open .nav-links a:nth-child(3) {
          transition-delay: 90ms;
        }

        body.menu-open .nav-links a:nth-child(4) {
          transition-delay: 120ms;
        }

        body.menu-open .nav-links a:nth-child(5) {
          transition-delay: 150ms;
        }

        body.menu-open .nav-links a:nth-child(6) {
          transition-delay: 180ms;
        }

        body.menu-open .nav-links a:nth-child(7) {
          transition-delay: 210ms;
        }

        body.menu-open .nav-toggle-line:nth-child(1) {
          transform: translateY(6px) rotate(45deg);
        }

        body.menu-open .nav-toggle-line:nth-child(2) {
          opacity: 0;
        }

        body.menu-open .nav-toggle-line:nth-child(3) {
          transform: translateY(-6px) rotate(-45deg);
        }

        .hero {
          padding-top: 34px;
        }

        .hero-copy-block {
          text-align: center;
          padding: 26px 22px 0;
          border-radius: 30px;
          background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(242, 247, 245, 0.52));
          border: 1px solid rgba(24, 36, 43, 0.08);
          box-shadow: 0 26px 48px rgba(23, 34, 44, 0.08);
        }

        .hero h1 {
          max-width: none;
        }

        .hero-copy-block .hero-copy,
        .hero-copy-block .hero-note {
          margin-left: auto;
          margin-right: auto;
        }

        .hero-meta,
        .feature-grid,
        .workflow,
        .news-grid,
        .privacy-grid,
        .faq-shell,
        .contact-grid,
        .thumb-row {
          grid-template-columns: 1fr;
        }

        .section-head,
        .footer {
          display: block;
        }

        .footer {
          display: grid;
          gap: 14px;
          padding-bottom: 8px;
        }

        .footer a {
          display: inline-block;
          margin-top: 0;
        }

        .footer-meta {
          display: flex;
          flex-wrap: wrap;
          gap: 10px 18px;
          margin-top: 0;
          justify-content: flex-start;
        }

        .footer-meta a {
          display: inline-block;
          margin-top: 0;
        }

        .footer-note-row {
          padding-top: 4px;
          padding-bottom: 28px;
        }

        .hero-visual {
          border-radius: 30px;
          background:
            radial-gradient(circle at 20% 10%, rgba(239, 126, 33, 0.16), transparent 32%),
            linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(235, 242, 239, 0.84));
          border: 1px solid rgba(24, 36, 43, 0.08);
          box-shadow: 0 26px 52px rgba(23, 34, 44, 0.1);
          overflow: hidden;
        }

        .visual-stage {
          min-height: 360px;
          width: min(100%, 360px);
          margin: 6px auto 0;
        }

        .device-card.phone {
          width: 168px;
          right: 12px;
          top: 10px;
          --rotate: 2deg;
        }

        .device-card.desktop {
          display: none;
        }

        .device-card.tablet {
          left: 0;
          right: 0;
          bottom: 0;
          width: min(92%, 340px);
          margin: 0 auto;
          --rotate: -1deg;
        }

        .hero-visual .device-card.tablet img {
          height: 230px;
          object-fit: cover;
          object-position: top center;
        }

        .hero-visual .device-card.phone img {
          height: 300px;
          object-fit: cover;
          object-position: top center;
        }

        .floating-chip {
          display: none;
        }

        .platform-tabs {
          display: grid;
          grid-template-columns: repeat(3, minmax(0, 1fr));
          width: 100%;
          padding: 6px;
          border: 1px solid rgba(24, 36, 43, 0.06);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
        }

        .platform-tab {
          padding: 11px 10px;
          text-align: center;
          font-weight: 800;
        }

        .tour-stage-top {
          flex-direction: column;
          align-items: flex-start;
        }

        .contact-row {
          grid-template-columns: 1fr;
        }

        .stage-frame {
          min-height: 300px;
        }

        .stage-frame.is-phone img {
          max-height: 290px;
        }

        .stage-frame.is-tablet img,
        .stage-frame.is-desktop img {
          max-height: 250px;
        }

        .thumb-row {
          display: flex;
          gap: 12px;
          overflow-x: auto;
          padding-inline: max(12px, calc(50% - 88px));
          scroll-behavior: smooth;
          scroll-padding-inline: 12px;
          padding-bottom: 6px;
          scroll-snap-type: x mandatory;
          scrollbar-width: none;
          -webkit-overflow-scrolling: touch;
          overscroll-behavior-x: contain;
        }

        .thumb-row::-webkit-scrollbar {
          display: none;
        }

        .thumb {
          min-width: 154px;
          flex: 0 0 154px;
          padding: 8px;
          scroll-snap-align: center;
        }

        .thumb img {
          aspect-ratio: 1 / 0.78;
        }

        .thumb strong {
          font-size: 0.84rem;
          line-height: 1.18;
        }

        .thumb span {
          font-size: 0.72rem;
        }

        .cta-panel {
          gap: 20px;
        }

        .store-badges {
          width: 100%;
        }

        .store-badge {
          flex: 0 0 auto;
          max-width: 100%;
        }
      }

      @media (max-width: 580px) {
        .container {
          width: min(var(--container), calc(100% - 24px));
        }

        .news-single-main {
          padding-bottom: 56px;
        }

        .news-single-article {
          padding: 22px 18px;
          border-radius: 24px;
        }

        .cta-panel {
          padding: 28px 20px 24px;
          gap: 22px;
          text-align: center;
          border-radius: 30px;
          background:
            radial-gradient(circle at 22% 14%, rgba(239, 126, 33, 0.24), transparent 24%),
            radial-gradient(circle at 82% 18%, rgba(22, 130, 111, 0.22), transparent 26%),
            linear-gradient(145deg, #142033 0%, #15304a 54%, #1d4c49 100%);
          box-shadow: 0 28px 56px rgba(19, 33, 45, 0.26);
        }

        .cta-panel p {
          margin-inline: auto;
        }

        .store-badges {
          flex-direction: row;
          align-items: center;
          justify-content: center;
          width: 100%;
          gap: 10px;
        }

        .topbar {
          padding-top: 8px;
        }

        .nav {
          padding: 10px 10px;
          gap: 10px;
          border-radius: 24px;
        }

        .brand {
          font-size: 0.98rem;
          gap: 10px;
        }

        .brand-logo {
          width: 38px;
          height: 38px;
        }

        .nav-actions {
          gap: 8px;
          justify-content: flex-end;
        }

        .lang-switch {
          padding: 4px;
          background: rgba(22, 61, 112, 0.08);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
        }

        .lang-toggle {
          padding: 8px 10px;
          font-size: 0.9rem;
        }

        .btn-ghost {
          width: auto;
          padding: 10px 14px;
          font-size: 0.94rem;
          border-radius: 14px;
        }

        .nav-actions .btn-ghost {
          display: none;
        }

        .hero-actions {
          flex-direction: column;
          margin-top: 20px;
        }

        .hero-store-badges {
          margin-top: 14px;
        }

        .hero-actions .btn,
        .faq-side .btn {
          width: 100%;
        }

        .hero-actions .btn-secondary,
        .hero-note,
        .hero-meta {
          display: none;
        }

        .hero-copy-block {
          padding: 20px 16px 18px;
          border-radius: 24px;
        }

        .hero h1 {
          margin-top: 16px;
          font-size: clamp(2.35rem, 12vw, 3.2rem);
          line-height: 0.98;
        }

        .hero-copy {
          font-size: 1rem;
          line-height: 1.6;
          max-width: 28ch;
        }

        .eyebrow {
          width: 100%;
          justify-content: center;
          text-align: center;
          line-height: 1.35;
        }

        .hero-pills {
          justify-content: center;
          gap: 8px;
        }

        .hero-meta .meta-card {
          padding: 16px 15px;
          border-radius: 20px;
          background: rgba(255, 255, 255, 0.82);
          box-shadow: 0 14px 32px rgba(23, 34, 44, 0.07);
        }

        .visual-stage {
          min-height: 258px;
          width: min(100%, 300px);
          margin-top: 12px;
        }

        .hero-visual::before {
          content: "";
          position: absolute;
          left: 50%;
          bottom: 8px;
          width: 210px;
          height: 74px;
          transform: translateX(-50%);
          border-radius: 999px;
          background: radial-gradient(circle, rgba(239, 126, 33, 0.22), rgba(22, 61, 112, 0.08) 58%, transparent 76%);
          filter: blur(18px);
          pointer-events: none;
        }

        .device-card.phone {
          left: 0;
          right: 0;
          top: 0;
          width: min(192px, 54vw);
          margin: 0 auto;
          --rotate: 0deg;
          z-index: 2;
        }

        .device-card.tablet {
          display: none;
        }

        .hero-visual .device-card.phone img {
          height: 246px;
          object-fit: cover;
          object-position: top center;
        }

        .hero-meta {
          margin-top: 22px;
        }

        .tour-shell,
        .cta-panel {
          padding: 14px;
        }

        .tour-shell {
          position: relative;
          border-radius: 24px;
          background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(241, 246, 243, 0.94));
          box-shadow: 0 24px 44px rgba(23, 34, 44, 0.09);
        }

        .tour-shell::after {
          content: "";
          position: absolute;
          inset: 0;
          border-radius: inherit;
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.56);
          pointer-events: none;
        }

        .tour-layout {
          gap: 14px;
        }

        .tour-copy {
          display: none;
        }

        .tour-copy,
        .feature-card,
        .workflow-card {
          padding: 20px;
        }

        .tour-copy {
          border-radius: 22px;
          background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 248, 246, 0.88));
          box-shadow: 0 16px 30px rgba(23, 34, 44, 0.06);
        }

        .section {
          padding: 42px 0;
        }

        .section-head {
          margin-bottom: 20px;
          text-align: center;
        }

        #tour .section-head {
          margin-bottom: 14px;
        }

        #tour .section-head p {
          display: none;
        }

        .section-head h1,
        .section-head h2 {
          font-size: clamp(1.85rem, 9vw, 2.4rem);
          line-height: 1.02;
        }

        .section-head p {
          margin-top: 12px;
        }

        .tour-copy h3 {
          font-size: 1.55rem;
          line-height: 1.08;
        }

        .tour-stage {
          padding: 10px;
          border-radius: 22px;
          border: 1px solid rgba(255, 255, 255, 0.08);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 34px rgba(7, 11, 17, 0.22);
        }

        .tour-stage-top {
          gap: 8px;
          margin-bottom: 8px;
        }

        .tour-stage-top h4 {
          font-size: 0.96rem;
          line-height: 1.22;
        }

        .tour-stage-top p {
          display: none;
        }

        .stage-frame {
          min-height: 210px;
          border-radius: 18px;
        }

        .stage-frame img {
          max-width: 100%;
        }

        .stage-frame.is-phone img {
          max-height: 220px;
        }

        .stage-frame.is-tablet img,
        .stage-frame.is-desktop img {
          max-height: 190px;
        }

        .tour-counter {
          padding: 7px 9px;
          font-size: 0.8rem;
        }

        .thumb {
          min-width: 112px;
          flex-basis: 112px;
          padding: 7px;
          border-radius: 14px;
          background: rgba(255, 255, 255, 0.08);
          scroll-snap-align: center;
        }

        .thumb-row {
          padding-inline: max(6px, calc(50% - 56px));
        }

        .thumb img {
          aspect-ratio: 1 / 0.62;
          border-radius: 10px;
        }

        .thumb strong {
          display: block;
          font-size: 0.78rem;
          line-height: 1.15;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
        }

        .thumb span {
          display: none;
        }

        .tour-point {
          padding: 11px 12px;
          grid-template-columns: 32px 1fr;
          gap: 10px;
        }

        .tour-point-index {
          width: 32px;
          height: 32px;
        }

        .tour-point span:last-child {
          font-size: 0.95rem;
          line-height: 1.55;
        }

        .privacy-card,
        .privacy-option,
        .faq-side,
        .contact-card,
        .contact-side {
          padding: 20px;
        }

        .faq-question {
          padding: 18px 18px;
        }

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

        .cta-panel h2 {
          font-size: clamp(1.8rem, 8vw, 2.3rem);
        }

        .store-badge {
          flex: 0 0 auto;
          width: auto;
          margin-inline: 0;
        }

        .store-badge-image {
          height: 44px;
          border-radius: 10px;
          box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
        }

        .contact-link {
          width: 100%;
        }

        .footer-note-subtle {
          font-size: 0.78rem;
        }
      }

      @media (prefers-reduced-motion: reduce) {
        html {
          scroll-behavior: auto;
        }

        *,
        *::before,
        *::after {
          animation: none !important;
          transition: none !important;
        }
      }
