:root {
    --bg: #050510;
    --bg-soft: #0c0c1c;
    --panel: rgba(255, 255, 255, 0.08);
    --panel-strong: rgba(255, 255, 255, 0.14);
    --line: rgba(255, 255, 255, 0.16);
    --text: #f7f7ff;
    --muted: rgba(247, 247, 255, 0.68);
    --muted-2: rgba(247, 247, 255, 0.48);
    --accent: #b86cff;
    --accent-2: #46d9ff;
    --accent-3: #ff6fd8;
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background: var(--bg);
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        "Hiragino Sans",
        "Hiragino Kaku Gothic ProN",
        "Yu Gothic",
        Meiryo,
        sans-serif;
    overflow-x: hidden;
}

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

button {
    font: inherit;
}

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

.page-bg {
    position: fixed;
    inset: 0;
    z-index: -5;
    background:
        radial-gradient(circle at 18% 8%, rgba(184, 108, 255, 0.28), transparent 32%),
        radial-gradient(circle at 84% 16%, rgba(70, 217, 255, 0.20), transparent 28%),
        radial-gradient(circle at 50% 80%, rgba(255, 111, 216, 0.16), transparent 34%),
        linear-gradient(180deg, #050510 0%, #0b0818 48%, #050510 100%);
}

.page-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 70%);
    pointer-events: none;
}

.lp-header {
    position: fixed;
    top: 18px;
    left: 50%;
    z-index: 50;
    width: min(calc(100% - 32px), var(--max));
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    background: rgba(8, 8, 20, 0.68);
    backdrop-filter: blur(22px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 170px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.brand span {
    font-size: 15px;
}

.brand:not(.brand-text-only) span {
    display: none;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
}

.header-nav a {
    padding: 9px 14px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 13px;
    transition: 0.2s ease;
}

.header-nav a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 142px;
    padding: 11px 16px;
    border-radius: 999px;
    color: #090914;
    background: #ffffff;
    font-size: 13px;
    font-weight: 800;
    transition: 0.2s ease;
}

.header-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 34px rgba(255, 255, 255, 0.18);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 152px 20px 88px;
    display: grid;
    place-items: center;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: min(100%, var(--max));
    text-align: center;
}

.eyebrow,
.section-kicker {
    margin: 0 0 18px;
    color: var(--accent-2);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-title {
    margin: 0 auto;
    max-width: 920px;
    font-size: clamp(38px, 6.2vw, 78px);
    line-height: 1.08;
    letter-spacing: -0.015em;
    font-weight: 780;
}

.hero-lead {
    margin: 28px auto 0;
    max-width: 780px;
    color: var(--muted);
    font-size: clamp(16px, 2vw, 21px);
    line-height: 1.9;
    letter-spacing: 0.02em;
}

.hero-actions {
    margin-top: 38px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 850;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.primary-btn {
    color: #080812;
    background: linear-gradient(135deg, #ffffff, #d8c6ff);
    box-shadow: 0 20px 48px rgba(184, 108, 255, 0.22);
}

.secondary-btn {
    color: var(--text);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
}

.primary-btn:hover,
.secondary-btn:hover {
    transform: translateY(-2px);
}

.primary-btn:hover {
    box-shadow: 0 26px 58px rgba(184, 108, 255, 0.30);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.12);
}

.hero-device {
    margin: 72px auto 0;
    width: min(100%, 980px);
}

.device-frame {
    position: relative;
    overflow: hidden;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 36px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
        rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow);
    backdrop-filter: blur(24px);
}

.device-frame::before {
    content: "";
    position: absolute;
    inset: -1px;
    background:
        radial-gradient(circle at 18% 0%, rgba(184, 108, 255, 0.32), transparent 28%),
        radial-gradient(circle at 80% 0%, rgba(70, 217, 255, 0.22), transparent 26%);
    pointer-events: none;
}

.device-topbar {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 8px;
    padding: 14px 16px;
}

.device-topbar span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.38);
}

.device-content {
    position: relative;
    z-index: 2;
    padding: 28px;
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(12, 12, 28, 0.94), rgba(18, 10, 38, 0.94)),
        #0c0c1c;
}

.launcher-preview-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
}

.launcher-preview-head p {
    margin: 0 0 8px;
    color: var(--muted-2);
    font-size: 13px;
    font-weight: 800;
}

.launcher-preview-head h2 {
    margin: 0;
    font-size: clamp(28px, 5vw, 54px);
    letter-spacing: -0.02em;
}

.mini-user {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 25%, #fff, transparent 18%),
        linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 10px 28px rgba(70, 217, 255, 0.18);
}

.launcher-grid-preview {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.launcher-grid-preview article {
    min-height: 190px;
    padding: 22px 18px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04));
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.launcher-grid-preview img {
    width: 82px;
    height: 82px;
    object-fit: contain;
    margin: 0 0 18px;
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.28));
}

.launcher-grid-preview strong {
    display: block;
    font-size: 19px;
    line-height: 1.2;
    /* letter-spacing: -0.02em; */
    text-align: center;
}

.launcher-grid-preview span {
    display: block;
    margin-top: 8px;
    color: var(--muted-2);
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.7;
    pointer-events: none;
}

.hero-glow-1 {
    top: 18%;
    left: 8%;
    width: 280px;
    height: 280px;
    background: rgba(184, 108, 255, 0.26);
}

.hero-glow-2 {
    right: 5%;
    bottom: 20%;
    width: 340px;
    height: 340px;
    background: rgba(70, 217, 255, 0.18);
}

.tools-section,
.screens-section,
.plans-section {
    padding: 110px 20px;
}

.section-head {
    width: min(100%, var(--max));
    margin: 0 auto 46px;
    text-align: center;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.section-head p:not(.section-kicker) {
    margin: 22px auto 0;
    max-width: 720px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.9;
}

.tool-icon-row {
    width: min(100%, var(--max));
    margin: 0 auto;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 6px 4px 24px;
    scrollbar-width: none;
}

.tool-icon-row::-webkit-scrollbar {
    display: none;
}

.tool-pill {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 10px 16px 10px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: 0.2s ease;
}

.tool-pill img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.tool-pill span {
    white-space: nowrap;
    font-size: 14px;
    font-weight: 800;
}

.tool-pill:hover,
.tool-pill.is-active {
    color: var(--text);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.tool-showcase {
    width: min(100%, var(--max));
    margin: 28px auto 0;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 22px;
    align-items: stretch;
}

.tool-copy,
.tool-visual {
    min-height: 520px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(22px);
    box-shadow: var(--shadow);
}

.tool-copy {
    padding: clamp(28px, 5vw, 54px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tool-label {
    margin: 0 0 14px;
    color: var(--accent-2);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tool-copy h3 {
    margin: 0;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 0.96;
    letter-spacing: -0.02em;
}

.tool-copy p:not(.tool-label) {
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.9;
}

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

.feature-list li {
    position: relative;
    padding-left: 28px;
    color: rgba(247, 247, 255, 0.82);
    line-height: 1.7;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 18px rgba(70, 217, 255, 0.35);
}

.text-link {
    margin-top: 34px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: #ffffff;
    font-weight: 900;
}

.text-link span {
    transition: transform 0.2s ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

.tool-visual {
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    isolation: isolate;
}

.tool-visual::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.10), transparent 26%),
        linear-gradient(135deg, rgba(184, 108, 255, 0.12), rgba(70, 217, 255, 0.10));
    z-index: -2;
}

.tool-visual>img {
    width: min(42vw, 280px);
    height: min(42vw, 280px);
    object-fit: contain;
    filter: drop-shadow(0 26px 55px rgba(0, 0, 0, 0.45));
    animation: floatIcon 4.4s ease-in-out infinite;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.8;
    z-index: -1;
}

.orb-a {
    width: 190px;
    height: 190px;
    left: 12%;
    top: 18%;
    background: rgba(184, 108, 255, 0.30);
}

.orb-b {
    width: 230px;
    height: 230px;
    right: 10%;
    bottom: 12%;
    background: rgba(70, 217, 255, 0.22);
}

.floating-card {
    position: absolute;
    min-width: 150px;
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    background: rgba(5, 5, 16, 0.48);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.30);
}

.floating-card span {
    display: block;
    color: var(--muted-2);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.floating-card strong {
    display: block;
    margin-top: 6px;
    font-size: 18px;
}

.card-a {
    left: 36px;
    bottom: 58px;
}

.card-b {
    right: 40px;
    top: 52px;
}

.screen-stack {
    width: min(100%, var(--max));
    margin: 0 auto;
    display: grid;
    gap: 34px;
}

.screen-card {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 26px;
    align-items: center;
    padding: clamp(18px, 3vw, 28px);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.045));
    backdrop-filter: blur(22px);
    box-shadow: var(--shadow);
}

.screen-card.reverse {
    grid-template-columns: 1.28fr 0.72fr;
}

.screen-card.reverse .screen-copy {
    order: 2;
}

.screen-card.reverse .screenshot-frame {
    order: 1;
}

.screen-copy {
    padding: clamp(18px, 3vw, 30px);
}

.screen-copy span {
    color: var(--accent-2);
    font-weight: 900;
    letter-spacing: 0.12em;
}

.screen-copy h3 {
    margin: 18px 0 0;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.screen-copy p {
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
}

.screenshot-frame {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(184, 108, 255, 0.22), rgba(70, 217, 255, 0.12)),
        rgba(255, 255, 255, 0.05);
}

.screenshot-frame::before {
    content: "Screenshot";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.32);
    font-size: clamp(28px, 4vw, 54px);
    font-weight: 900;
    letter-spacing: -0.02em;
}

.screenshot-frame img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.screenshot-frame.no-image img {
    display: none;
}

.message-section {
    padding: 100px 20px;
}

.message-inner {
    width: min(100%, 980px);
    margin: 0 auto;
    padding: clamp(36px, 7vw, 74px);
    border: 1px solid var(--line);
    border-radius: 44px;
    text-align: center;
    background:
        radial-gradient(circle at 20% 20%, rgba(184, 108, 255, 0.18), transparent 30%),
        radial-gradient(circle at 80% 30%, rgba(70, 217, 255, 0.14), transparent 30%),
        rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow);
}

.message-inner h2 {
    margin: 0;
    font-size: clamp(40px, 7vw, 82px);
    line-height: 1.02;
    letter-spacing: -0.02em;
}

.message-inner p:not(.section-kicker) {
    margin: 28px auto 0;
    max-width: 760px;
    color: var(--muted);
    font-size: 18px;
    line-height: 2;
}

.benefit-strip {
    width: min(100%, var(--max));
    margin: 0 auto 26px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.benefit-card {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background:
        radial-gradient(circle at 20% 0%, rgba(184, 108, 255, 0.22), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04));
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(22px);
}

.benefit-card::after {
    content: "";
    position: absolute;
    right: -54px;
    bottom: -54px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(70, 217, 255, 0.12);
    filter: blur(4px);
    pointer-events: none;
}

.benefit-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    border-radius: 18px;
    color: #070710;
    background: linear-gradient(135deg, #ffffff, #d7c4ff);
    font-size: 24px;
    font-weight: 900;
    box-shadow: 0 16px 34px rgba(184, 108, 255, 0.22);
}

.benefit-card h3 {
    margin: 0;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.benefit-card h3 small {
    margin-left: 2px;
    color: var(--muted);
    font-size: 0.48em;
    vertical-align: super;
}

.benefit-card p {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.benefit-note {
    width: min(100%, var(--max));
    margin: 0 auto 36px;
    color: var(--muted-2);
    font-size: 12px;
    line-height: 1.7;
    text-align: right;
}

.cta-panel {
    width: min(100%, 920px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding: clamp(26px, 5vw, 44px);
    border: 1px solid var(--line);
    border-radius: 36px;
    background:
        linear-gradient(135deg, rgba(184, 108, 255, 0.18), rgba(70, 217, 255, 0.10)),
        rgba(255, 255, 255, 0.07);
    box-shadow: var(--shadow);
}

.cta-panel h3 {
    margin: 0;
    font-size: clamp(28px, 4vw, 48px);
    letter-spacing: -0.055em;
}

.cta-panel p {
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.lp-footer {
    width: min(calc(100% - 40px), var(--max));
    margin: 0 auto;
    padding: 34px 0 42px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--muted-2);
}

.lp-footer strong {
    display: block;
    color: var(--text);
}

.lp-footer span {
    display: block;
    margin-top: 5px;
    font-size: 13px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 18px;
    font-size: 13px;
}

.footer-links a:hover {
    color: var(--text);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

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

.sp-only {
    display: none;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-14px) rotate(2deg);
    }
}

@media (max-width: 900px) {
    .lp-header {
        top: 12px;
        width: calc(100% - 22px);
    }

    .brand {
        min-width: auto;
    }

    .header-nav {
        display: none;
    }

    .header-cta {
        min-width: auto;
        padding-inline: 14px;
    }

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

    .launcher-grid-preview {
        grid-template-columns: repeat(2, 1fr);
    }

    .tool-showcase,
    .screen-card,
    .screen-card.reverse {
        grid-template-columns: 1fr;
    }

    .screen-card.reverse .screen-copy,
    .screen-card.reverse .screenshot-frame {
        order: initial;
    }

    .tool-copy,
    .tool-visual {
        min-height: auto;
    }

    .tool-visual {
        min-height: 420px;
    }

    .cta-panel,
    .lp-footer {
        flex-direction: column;
        align-items: flex-start;
    }

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

@media (max-width: 560px) {
    .sp-only {
        display: block;
    }

    .lp-header {
        padding: 10px;
    }

    .brand img {
        width: 36px;
        height: 36px;
    }

    .header-cta {
        font-size: 12px;
    }

    .hero-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-title {
        font-size: clamp(34px, 11vw, 54px);
        line-height: 1.12;
        letter-spacing: -0.045em;
    }

    .hero-lead {
        font-size: 15px;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    .device-content {
        padding: 18px;
    }

    .launcher-grid-preview {
        gap: 10px;
    }

    .launcher-grid-preview article {
        min-height: 142px;
        padding: 14px;
    }

    .launcher-grid-preview img {
        width: 48px;
        height: 48px;
    }

    .tools-section,
    .screens-section,
    .plans-section {
        padding: 82px 16px;
    }

    .tool-copy,
    .screen-copy {
        padding: 24px;
    }

    .tool-visual {
        min-height: 340px;
    }

    .floating-card {
        display: none;
    }

    .screenshot-frame,
    .screenshot-frame img {
        min-height: 260px;
    }

    .message-section {
        padding: 76px 16px;
    }
}

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

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* クーポン欄 */
.coupon-banner {
    width: min(100%, 920px);
    margin: 0 auto 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 34px;
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 111, 216, 0.24), transparent 34%),
        radial-gradient(circle at 90% 10%, rgba(70, 217, 255, 0.18), transparent 34%),
        linear-gradient(135deg, rgba(184, 108, 255, 0.20), rgba(255, 255, 255, 0.06));
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(22px);
}

.coupon-copy {
    min-width: 0;
}

.coupon-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    color: #090914;
    background: linear-gradient(135deg, #ffffff, #d7c4ff);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.coupon-copy h3 {
    margin: 18px 0 0;
    font-size: clamp(30px, 4.8vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.coupon-copy p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.coupon-code-box {
    flex: 0 0 auto;
    min-width: 230px;
    padding: 20px 22px;
    border: 1px dashed rgba(255, 255, 255, 0.34);
    border-radius: 24px;
    background: rgba(5, 5, 16, 0.42);
    text-align: center;
}

.coupon-code-box span {
    display: block;
    color: var(--muted-2);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.coupon-code-box strong {
    display: block;
    margin-top: 8px;
    color: #ffffff;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.1;
    letter-spacing: 0.08em;
    font-family:
        "SFMono-Regular",
        Consolas,
        "Liberation Mono",
        monospace;
}

.coupon-condition {
    width: min(100%, 920px);
    margin: -18px auto 34px;
    color: var(--muted-2);
    font-size: 12px;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .coupon-banner {
        flex-direction: column;
        align-items: stretch;
    }

    .coupon-code-box {
        min-width: 0;
    }
}

.floating-card.status-beta {
    border-color: rgba(184, 108, 255, 0.34);
}

.floating-card.status-ready {
    border-color: rgba(70, 217, 255, 0.38);
}

.floating-card.status-dev {
    border-color: rgba(255, 255, 255, 0.18);
    opacity: 0.86;
}

/* =========================================
   Benefit cards - mobile layout fix
========================================= */

@media (max-width: 720px) {
    .benefit-strip {
        width: min(100%, 920px);
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 18px;
    }

    .benefit-card {
        min-height: auto;
        padding: 18px;
        border-radius: 22px;

        display: grid;
        grid-template-columns: 48px 1fr;
        grid-template-areas:
            "icon title"
            "icon text";
        column-gap: 14px;
        align-items: start;
    }

    .benefit-icon {
        grid-area: icon;
        width: 48px;
        height: 48px;
        margin: 0;
        border-radius: 16px;
        font-size: 22px;
    }

    .benefit-card h3 {
        grid-area: title;
        margin: 0;
        font-size: 22px;
        line-height: 1.25;
        letter-spacing: -0.015em;
    }

    .benefit-card p {
        grid-area: text;
        margin: 8px 0 0;
        font-size: 13px;
        line-height: 1.7;
    }

    .benefit-note {
        margin: 0 auto 28px;
        text-align: left;
    }
}

/* =========================================
   Price Section
========================================= */

.price-section {
    padding: 110px 20px;
}

.price-panel {
    width: min(100%, 980px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: stretch;
    padding: clamp(26px, 5vw, 46px);
    border: 1px solid var(--line);
    border-radius: 38px;
    background:
        radial-gradient(circle at 12% 0%, rgba(184, 108, 255, 0.22), transparent 34%),
        radial-gradient(circle at 92% 12%, rgba(70, 217, 255, 0.18), transparent 36%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04));
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
}

.price-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    color: #080812;
    background: linear-gradient(135deg, #ffffff, #d7c4ff);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.price-copy h3 {
    margin: 20px 0 0;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.price-lead {
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
}

.price-box {
    position: relative;
    overflow: hidden;
    display: grid;
    align-content: center;
    min-height: 280px;
    padding: clamp(24px, 4vw, 34px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(5, 5, 16, 0.62), rgba(5, 5, 16, 0.34)),
        rgba(255, 255, 255, 0.06);
}

.price-box::before {
    content: "";
    position: absolute;
    inset: -60px;
    background:
        radial-gradient(circle at 80% 20%, rgba(70, 217, 255, 0.22), transparent 30%),
        radial-gradient(circle at 20% 80%, rgba(184, 108, 255, 0.18), transparent 32%);
    pointer-events: none;
}

.normal-price-row,
.campaign-price-row,
.price-tax-note {
    position: relative;
    z-index: 1;
}

.normal-price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    color: var(--muted-2);
}

.normal-price-row span {
    font-size: 13px;
    font-weight: 800;
}

.normal-price-row strong {
    position: relative;
    display: inline-block;
    color: rgba(247, 247, 255, 0.62);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 850;
    letter-spacing: -0.02em;
}

.price-panel[data-campaign-active="true"] .normal-price-row strong::after {
    content: "";
    position: absolute;
    left: -4px;
    right: -4px;
    top: 52%;
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 111, 216, 0.86);
    transform: rotate(-4deg);
}

.campaign-price-row {
    margin-top: 22px;
}

.campaign-price-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    color: #091018;
    background: linear-gradient(135deg, #ffffff, #aeeeff);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.campaign-price-row strong {
    display: block;
    margin-top: 12px;
    color: #ffffff;
    font-size: clamp(36px, 6vw, 68px);
    line-height: 1;
    letter-spacing: -0.045em;
    text-shadow: 0 0 28px rgba(70, 217, 255, 0.34);
}

.price-tax-note {
    margin: 14px 0 0;
    color: var(--muted-2);
    font-size: 12px;
    text-align: right;
}

.price-reason {
    width: min(100%, 980px);
    margin: 22px auto 0;
    padding: 24px 28px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(18px);
}

.price-reason h3 {
    margin: 0;
    font-size: clamp(20px, 3vw, 28px);
    letter-spacing: -0.015em;
}

.price-reason p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.price-note {
    width: min(100%, 980px);
    margin: 16px auto 0;
    color: var(--muted-2);
    font-size: 12px;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .price-section {
        padding: 82px 16px;
    }

    .price-panel {
        grid-template-columns: 1fr;
        border-radius: 30px;
    }

    .price-box {
        min-height: auto;
    }

    .price-tax-note {
        text-align: left;
    }
}

@media (max-width: 560px) {
    .normal-price-row {
        display: block;
    }

    .normal-price-row strong {
        margin-top: 6px;
    }

    .campaign-price-row strong {
        font-size: clamp(42px, 14vw, 62px);
    }

    .price-reason {
        padding: 20px;
    }
}

.normal-price-row.is-primary-price {
    display: block;
    text-align: center;
}

.normal-price-row.is-primary-price span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    color: #091018;
    background: linear-gradient(135deg, #ffffff, #aeeeff);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.normal-price-row.is-primary-price strong {
    display: block;
    margin-top: 14px;
    color: #ffffff;
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1;
    letter-spacing: -0.045em;
    text-shadow: 0 0 28px rgba(70, 217, 255, 0.34);
}

.price-panel[data-campaign-active="false"] .normal-price-row strong::after {
    display: none;
}