:root {
    --ink: #111820;
    --navy: #8f243b;
    --navy-2: #d84b61;
    --paper: #ffffff;
    --soft: #f4f6f8;
    --line: #dfe5ea;
    --muted: #65717d;
    --blue: #5f1f2f;
    --red: #d84b61;
    --gold: #c99a3d;
    --green: #6f8a52;
    --teal: #2f766d;
    --copper: #b86b45;
    --plum: #7c3b5d;
    --rose-soft: #fff4f5;
    --blue-soft: #fff1f4;
    --gold-soft: #fff8e6;
    --shadow: 0 18px 48px rgba(95,31,47,.18);
    --shadow-soft: 0 12px 30px rgba(95,31,47,.1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(180deg, #fff 0%, #f8fafc 44%, #fff 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, Meiryo, sans-serif;
    line-height: 1.75;
    letter-spacing: 0;
}

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

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

.age-gate {
    background: var(--navy);
    color: #fff;
    font-size: 13px;
}

.age-gate-inner {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.age-gate strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 28px;
    margin-right: 10px;
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: .04em;
}

.age-gate a {
    color: #f7d98b;
    font-weight: 700;
    white-space: nowrap;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255,255,255,.9);
    border-bottom: 1px solid rgba(184,36,51,.12);
    box-shadow: 0 12px 36px rgba(17,24,32,.06);
    backdrop-filter: blur(14px);
}

.header-inner {
    width: min(1160px, calc(100% - 32px));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo img {
    width: auto;
    height: 46px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 700;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 18px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    color: var(--ink);
    font-weight: 800;
    line-height: 1.25;
    box-shadow: 0 8px 20px rgba(17,24,32,.06);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(17,24,32,.12);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--teal), #56a295);
    border-color: var(--teal);
    box-shadow: 0 10px 24px rgba(47,118,109,.18);
}

.btn-red {
    color: #fff;
    background: linear-gradient(135deg, var(--red), var(--plum));
    border-color: var(--red);
}

.btn-dark {
    color: #fff;
    background: var(--navy);
    border-color: var(--navy);
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: 720px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 82% 28%, rgba(216,75,97,.34) 0%, rgba(216,75,97,0) 34%),
        linear-gradient(135deg, #5f1f2f 0%, #8f243b 54%, #4f1a28 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(120deg, rgba(255,255,255,.08) 0 1px, transparent 1px 100%);
    background-size: 56px 56px;
    opacity: .18;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(79,26,40,.94) 0%, rgba(143,36,59,.82) 37%, rgba(95,31,47,.18) 58%, rgba(95,31,47,0) 100%),
        linear-gradient(180deg, rgba(79,26,40,.04) 0%, rgba(79,26,40,.42) 100%);
}

.hero-visual {
    position: absolute;
    inset: 0;
    z-index: -3;
    overflow: hidden;
}

.hero-visual picture {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: heroPhotoFade 12s infinite;
}

.hero-visual picture:nth-child(1) {
    animation-delay: 0s;
}

.hero-visual picture:nth-child(2) {
    animation-delay: 6s;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

@keyframes heroPhotoFade {
    0%,
    42% {
        opacity: 1;
    }

    50%,
    92% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
    padding: 78px 0 92px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 42px;
    align-items: center;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 34px;
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,.34);
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: #f8e3a2;
    font-size: 13px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.hero h1 {
    max-width: 720px;
    margin: 20px 0 18px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.12;
    letter-spacing: 0;
}

.hero-lead {
    max-width: 680px;
    margin: 0;
    color: rgba(255,255,255,.86);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.registration-bonus {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 560px;
    margin-top: 18px;
    padding: 14px 16px;
    border: 1px solid rgba(248,227,162,.34);
    border-radius: 10px;
    background: rgba(255,255,255,.11);
    box-shadow: 0 18px 42px rgba(0,0,0,.18), inset 4px 0 0 rgba(201,154,61,.88);
    backdrop-filter: blur(12px);
}

.hero-bullets {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 690px;
    margin-top: 18px;
}

.hero-bullets span {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.86);
    font-size: 13px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.bonus-label {
    flex: 0 0 auto;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--navy);
    background: #f8e3a2;
    font-size: 12px;
    font-weight: 900;
}

.bonus-copy {
    color: rgba(255,255,255,.86);
    font-size: 14px;
    font-weight: 800;
}

.bonus-copy strong {
    color: #f8e3a2;
    font-size: 24px;
    line-height: 1;
    text-shadow: 0 2px 12px rgba(0,0,0,.28);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 690px;
    margin-top: 20px;
}

.stat {
    padding: 16px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(12px);
}

.stat strong {
    display: block;
    color: #f8e3a2;
    font-size: 27px;
    line-height: 1.2;
}

.stat:nth-child(2) strong {
    color: #9bd4cb;
}

.stat span {
    display: block;
    margin-top: 4px;
    color: rgba(255,255,255,.74);
    font-size: 13px;
    font-weight: 700;
}

.hero-panel {
    padding: 12px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 14px;
    background: rgba(255,255,255,.14);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.hero-panel-inner {
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
}

.hero-panel-photo {
    position: relative;
    padding: 18px;
    background:
        linear-gradient(135deg, #f7fbff, #fff8e6);
}

.online-label {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #fff;
    background: rgba(184,36,51,.92);
    font-size: 12px;
    font-weight: 800;
}

.app-preview {
    display: grid;
    gap: 10px;
}

.app-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.app-thumb {
    position: relative;
    overflow: hidden;
    width: 58px;
    height: 58px;
    border-radius: 10px;
    background: #d9e0e6;
}

.app-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px) saturate(.95);
    transform: scale(1.08);
}

.app-meta strong {
    display: block;
    color: var(--navy);
    font-size: 15px;
    line-height: 1.35;
}

.app-meta span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.app-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 2px;
}

.app-actions span {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #eef3f7;
    color: var(--navy);
    font-size: 12px;
    font-weight: 900;
}

.panel-body {
    padding: 16px;
}

.panel-body h2 {
    margin: 0 0 6px;
    font-size: 22px;
}

.panel-body p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.quick-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 14px;
}

.quick-flow span {
    padding: 8px 6px;
    border-radius: 999px;
    background: #eef3f7;
    color: var(--navy);
    text-align: center;
    font-size: 12px;
    font-weight: 800;
}

.section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 76px 0;
}

.section.alt {
    background:
        linear-gradient(135deg, rgba(238,246,255,.92) 0%, rgba(244,246,248,.96) 48%, rgba(255,248,230,.74) 100%);
}

.section.deep {
    color: #fff;
    background:
        linear-gradient(120deg, rgba(255,255,255,.08) 0 1px, transparent 1px 100%),
        linear-gradient(135deg, #5f1f2f 0%, var(--navy) 58%, #4f1a28 100%);
    background-size: 48px 48px, auto;
}

.section.deep .section-head h2 {
    color: #fff;
}

.section.deep .section-head p {
    color: rgba(255,255,255,.78);
}

.section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(120deg, rgba(143,36,59,.06) 0 1px, transparent 1px 100%);
    background-size: 44px 44px;
    opacity: .34;
    pointer-events: none;
}

#girls::before,
#about::before {
    background:
        linear-gradient(90deg, rgba(184,36,51,.04) 0 1px, transparent 1px 100%),
        linear-gradient(180deg, rgba(30,111,196,.035) 0 1px, transparent 1px 100%);
    background-size: 38px 38px;
}

.wrap {
    position: relative;
    z-index: 1;
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

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

.section-head h2 {
    position: relative;
    display: inline-block;
    margin: 0;
    color: var(--navy);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.25;
}

.section-head h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 88px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--red), var(--gold), var(--blue));
}

.section-head p {
    max-width: 560px;
    margin: 0;
    color: var(--muted);
}

.hero-lead,
.registration-bonus,
.stat,
.section-head p,
.service-card p,
.area-panel p,
.note-card p,
.flow-card p,
.safety-card p,
.point-banner p,
.price-card p,
.faq-card p,
.cta-box p {
    text-align: left;
}

.cast-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.cast-card {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 100%;
    border: 1px solid rgba(255,255,255,.68);
    border-radius: 10px;
    background: #111820;
    box-shadow: 0 16px 38px rgba(17,24,32,.15);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.cast-card:hover {
    transform: translateY(-3px);
    border-color: rgba(184,36,51,.36);
    box-shadow: 0 22px 52px rgba(17,24,32,.22);
}

.cast-photo {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #d9e0e6;
}

.cast-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(7px) saturate(.95);
    transform: scale(1.08);
}

.cast-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(17,24,32,0) 42%, rgba(17,24,32,.74) 100%),
        repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 14px);
    pointer-events: none;
}

.cast-status {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 5px 10px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 999px;
    color: #fff;
    background: rgba(47,118,109,.86);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.cast-summary {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    min-height: 58px;
    padding: 14px 14px 12px 74px;
    color: #fff;
}

.cast-age {
    position: absolute;
    left: 14px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255,255,255,.72);
    border-radius: 999px;
    background: linear-gradient(135deg, var(--red), var(--plum));
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(17,24,32,.26);
}

.cast-area {
    display: block;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,.42);
}

.cast-note {
    display: block;
    margin-top: 3px;
    color: rgba(255,255,255,.78);
    font-size: 12px;
    font-weight: 700;
}

.cast-more {
    display: block;
    margin-top: 18px;
    text-align: center;
}

.search-notes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
    counter-reset: searchNote;
}

.note-card {
    position: relative;
    overflow: hidden;
    padding: 20px 18px 18px;
    border: 1px solid rgba(184,36,51,.12);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.9)),
        linear-gradient(135deg, var(--rose-soft), var(--blue-soft));
    box-shadow: 0 14px 34px rgba(17,24,32,.08);
    counter-increment: searchNote;
}

.note-card::before {
    content: "0" counter(searchNote);
    position: absolute;
    top: 12px;
    right: 14px;
    color: rgba(184,36,51,.14);
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
}

.note-card h3 {
    position: relative;
    margin: 0 0 8px;
    color: var(--navy);
    font-size: 19px;
}

.note-card p {
    margin: 0;
    color: var(--muted);
}

.area-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 26px;
    align-items: center;
}

.map-box {
    position: relative;
    padding: 22px;
    border: 1px solid rgba(30,111,196,.16);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.9)),
        linear-gradient(135deg, #eef6ff, #fff8e6);
    box-shadow: 0 18px 44px rgba(17,24,32,.1);
}

.map-box img {
    opacity: .9;
    filter: drop-shadow(0 18px 22px rgba(17,24,32,.08));
}

.map-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 86px;
    min-height: 34px;
    padding: 6px 12px;
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(17,24,32,.18);
}

.map-hokkaido { top: 9%; right: 15%; background: #4e86c4; }
.map-tohoku { top: 37%; right: 17%; background: #3589a3; }
.map-koshinetsu { top: 50%; right: 44%; background: #5f9f6e; }
.map-kanto { top: 65%; right: 5%; background: #ba923e; }
.map-tokai { bottom: 11%; right: 27%; background: #7d9550; }
.map-kansai { bottom: 18%; left: 33%; background: #b82433; }
.map-chugoku { top: 58%; left: 7%; background: #9a7041; }
.map-kyushu { bottom: 7%; left: 2%; background: #755d9f; }

.area-panel {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border: 1px solid rgba(184,36,51,.14);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.94)),
        linear-gradient(135deg, var(--rose-soft), var(--gold-soft));
    box-shadow: 0 18px 44px rgba(17,24,32,.1);
}

.area-panel::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--teal), var(--gold));
}

.area-panel h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 25px;
}

.area-panel p {
    margin: 0 0 18px;
    color: var(--muted);
}

.area-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.area-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid rgba(17,24,32,.08);
    border-radius: 6px;
    background: rgba(255,255,255,.86);
    color: var(--navy);
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(17,24,32,.05);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.area-button:hover {
    transform: translateY(-1px);
    border-color: rgba(184,36,51,.28);
    box-shadow: 0 12px 26px rgba(17,24,32,.1);
}

.area-button::after {
    content: ">";
    color: var(--teal);
    font-weight: 900;
}

.service-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
    gap: 24px;
    align-items: stretch;
}

.service-copy {
    display: grid;
    gap: 16px;
}

.service-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border: 1px solid rgba(47,118,109,.14);
    border-radius: 10px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.94)),
        linear-gradient(135deg, var(--blue-soft), var(--gold-soft));
    box-shadow: var(--shadow-soft);
}

.service-card h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 24px;
    line-height: 1.35;
}

.service-card p {
    margin: 0;
    color: var(--muted);
}

.service-visual {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    padding: 26px;
    border-radius: 12px;
    background:
        radial-gradient(circle at 18% 20%, rgba(248,227,162,.34), rgba(248,227,162,0) 34%),
        radial-gradient(circle at 80% 15%, rgba(47,118,109,.32), rgba(47,118,109,0) 32%),
        linear-gradient(135deg, #5f1f2f, var(--navy-2));
    box-shadow: var(--shadow);
}

.service-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,.08) 0 1px, transparent 1px 100%);
    background-size: 34px 34px;
    opacity: .48;
}

.phone-mock {
    position: relative;
    z-index: 1;
    max-width: 310px;
    min-height: 520px;
    margin: 0 auto;
    padding: 16px;
    border: 8px solid #0e1722;
    border-radius: 34px;
    background: #fff;
    box-shadow: 0 24px 54px rgba(0,0,0,.34);
}

.phone-top {
    width: 74px;
    height: 6px;
    margin: 0 auto 16px;
    border-radius: 999px;
    background: #d7dde3;
}

.phone-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--navy);
    font-weight: 900;
}

.phone-chip {
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--rose-soft);
    color: var(--red);
    font-size: 11px;
    font-weight: 900;
}

.phone-list {
    display: grid;
    gap: 10px;
}

.phone-list .app-card {
    grid-template-columns: 54px minmax(0, 1fr);
    border: 1px solid rgba(17,24,32,.06);
    box-shadow: 0 10px 22px rgba(17,24,32,.08);
}

.phone-list .app-thumb {
    width: 54px;
    height: 54px;
}

.message-demo {
    display: grid;
    gap: 8px;
    margin-top: 14px;
    padding: 12px;
    border-radius: 12px;
    background: #eef6ff;
}

.message-demo span {
    display: block;
    width: fit-content;
    max-width: 86%;
    padding: 8px 10px;
    border-radius: 14px;
    color: var(--navy);
    background: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.45;
}

.message-demo span:nth-child(2) {
    justify-self: end;
    color: #fff;
    background: var(--blue);
}

.intro-grid,
.flow-grid,
.safety-grid,
.price-grid,
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.intro-grid {
    counter-reset: introCard;
}

.safety-grid {
    counter-reset: safetyCard;
}

.price-grid {
    counter-reset: priceCard;
}

.intro-card,
.flow-card,
.safety-card,
.price-card,
.faq-card {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border: 1px solid rgba(17,24,32,.08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(17,24,32,.08);
}

.intro-card,
.safety-card,
.price-card {
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.93)),
        linear-gradient(135deg, var(--blue-soft), var(--gold-soft));
}

.intro-card {
    counter-increment: introCard;
}

.safety-card {
    counter-increment: safetyCard;
}

.price-card {
    counter-increment: priceCard;
}

.intro-card::before,
.safety-card::before,
.price-card::before {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
}

.intro-card::before {
    content: "0" counter(introCard);
    color: rgba(30,111,196,.13);
}

.safety-card::before {
    content: "0" counter(safetyCard);
    color: rgba(79,134,96,.15);
}

.price-card::before {
    content: "0" counter(priceCard);
    color: rgba(184,146,74,.18);
}

.intro-card::after,
.safety-card::after,
.price-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    opacity: .9;
}

.intro-card::after {
    background: linear-gradient(90deg, var(--blue), var(--gold));
}

.safety-card::after {
    background: linear-gradient(90deg, var(--green), var(--blue));
}

.price-card::after {
    background: linear-gradient(90deg, var(--gold), var(--red));
}

.flow-card {
    position: relative;
    overflow: hidden;
}

.flow-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--blue));
    opacity: .86;
}

.flow-step-head {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    margin-bottom: 14px;
}

.flow-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(184,36,51,.2);
    border-radius: 999px;
    color: var(--red);
    background: #fff5f5;
}

.flow-icon svg {
    width: 21px;
    height: 21px;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.flow-title {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
}

.intro-card h3,
.flow-card h3,
.safety-card h3,
.price-card h3 {
    position: relative;
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 21px;
    line-height: 1.35;
}

.flow-card .flow-title h3 {
    margin: 0;
}

.intro-card p,
.flow-card p,
.safety-card p,
.price-card p {
    position: relative;
    margin: 0;
    color: var(--muted);
}

.flow-num {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    color: #fff;
    background: var(--navy);
    font-size: 14px;
    font-weight: 900;
}

.point-banner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 20px;
    align-items: center;
    margin-bottom: 18px;
    padding: 26px;
    border: 1px solid rgba(248,227,162,.28);
    border-radius: 12px;
    background:
        radial-gradient(circle at 82% 20%, rgba(248,227,162,.22), rgba(248,227,162,0) 36%),
        linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,255,255,.04));
    box-shadow: 0 20px 46px rgba(0,0,0,.22);
}

.point-banner h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.25;
}

.point-banner p {
    margin: 0;
    color: rgba(255,255,255,.78);
}

.point-gift {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 144px;
    border-radius: 12px;
    background: #fff;
    color: var(--navy);
    box-shadow: var(--shadow-soft);
    text-align: center;
    font-weight: 900;
}

.point-gift span {
    display: block;
    color: var(--red);
    font-size: 46px;
    line-height: 1.05;
}

.section.deep .price-card {
    border-color: rgba(255,255,255,.12);
    background: rgba(255,255,255,.96);
}

.price-card strong {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    min-height: 40px;
    padding: 4px 10px;
    margin-bottom: 8px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--red), var(--gold));
    font-size: 24px;
    line-height: 1.2;
}

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

.faq-card {
    border-color: rgba(30,111,196,.12);
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.94)),
        linear-gradient(135deg, var(--blue-soft), #fff);
}

.faq-card h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 19px;
    line-height: 1.45;
}

.faq-card h3::before {
    content: "Q";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-right: 8px;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    vertical-align: 1px;
}

.faq-card p {
    margin: 0;
    color: var(--muted);
}

.cta-band {
    color: #fff;
    background:
        linear-gradient(120deg, rgba(255,255,255,.08) 0 1px, transparent 1px 100%),
        linear-gradient(135deg, #5f1f2f 0%, var(--navy) 56%, #4f1a28 100%);
    background-size: 48px 48px, auto;
}

.cta-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
}

.cta-box h2 {
    margin: 0 0 8px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.28;
}

.cta-box p {
    margin: 0;
    color: rgba(255,255,255,.78);
}

.media-coverage {
    padding: 24px 16px;
    background: #fff;
    text-align: center;
}

.media-coverage-label {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
}

.media-coverage a {
    display: inline-block;
    width: min(207px, 52vw);
    opacity: .82;
    transition: opacity .2s ease;
}

.media-coverage a:hover {
    opacity: 1;
}

.media-coverage img {
    width: 100%;
    height: auto;
}

.footer-note {
    padding: 22px 0;
    color: var(--muted);
    background: #fff;
    text-align: center;
    font-size: 13px;
}

.footer-note p {
    margin: 0;
}

.footer-note .authen_text {
    margin-bottom: 8px;
    line-height: 1.65;
}

@media (max-width: 980px) {
    .nav-links {
        display: none;
    }

    .hero-inner,
    .service-layout,
    .area-layout,
    .point-banner,
    .cta-box {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    .hero::after {
        background:
            linear-gradient(180deg, rgba(79,26,40,0) 0%, rgba(79,26,40,.22) 54%, rgba(79,26,40,.82) 100%);
    }

    .hero-visual {
        position: relative;
        inset: auto;
        z-index: 0;
        order: 0;
        height: 360px;
        margin-bottom: -158px;
        overflow: hidden;
    }

    .hero-visual::after {
        content: "";
        position: absolute;
        inset: 0 0 -160px;
        background:
            linear-gradient(180deg, rgba(79,26,40,0) 10%, rgba(79,26,40,.08) 35%, rgba(79,26,40,.55) 60%, rgba(79,26,40,.9) 78%, rgba(79,26,40,1) 90%),
            linear-gradient(90deg, rgba(79,26,40,.1), rgba(79,26,40,0) 48%, rgba(79,26,40,.1));
        pointer-events: none;
    }

    .hero-visual img {
        height: 100%;
        object-position: center center;
    }

    .hero-panel {
        max-width: 420px;
    }

    .section-head {
        display: block;
    }

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

    .cast-grid,
    .intro-grid,
    .flow-grid,
    .safety-grid,
    .price-grid,
    .faq-grid,
    .search-notes {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .area-buttons {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .age-gate-inner,
    .header-inner,
    .hero-inner,
    .wrap {
        width: min(100% - 24px, 1160px);
    }

    .age-gate-inner {
        display: block;
    }

    .age-gate a {
        display: inline-block;
        margin-top: 6px;
    }

    .header-inner {
        min-height: 58px;
        padding: 8px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .header-actions {
        flex: 0 0 auto;
        margin-top: 0;
        display: flex;
        gap: 6px;
    }

    .hero-actions .btn,
    .cta-box .btn {
        width: 100%;
    }

    .logo img {
        height: 36px;
    }

    .header-actions .btn {
        width: auto;
        min-height: 34px;
        padding: 7px 10px;
        border-radius: 999px;
        font-size: 12px;
        line-height: 1;
        white-space: nowrap;
        box-shadow: none;
    }

    .header-actions .btn:first-child,
    .header-actions .btn-red {
        padding-inline: 12px;
    }

    .hero-inner {
        padding: 154px 0 64px;
    }

    .hero-inner > div {
        padding: 18px 0 0;
    }

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

    .registration-bonus {
        align-items: flex-start;
        gap: 10px;
        padding: 12px;
    }

    .bonus-label {
        font-size: 11px;
    }

    .bonus-copy {
        font-size: 13px;
    }

    .bonus-copy strong {
        font-size: 21px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .stats,
    .hero-bullets,
    .intro-grid,
    .flow-grid,
    .safety-grid,
    .price-grid,
    .faq-grid,
    .search-notes {
        grid-template-columns: 1fr;
    }

    .service-card,
    .service-visual,
    .point-banner,
    .faq-card {
        padding: 18px;
    }

    .phone-mock {
        min-height: 0;
    }

    .cast-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .cast-summary {
        min-height: 52px;
        padding: 12px 10px 10px 56px;
    }

    .cast-age {
        left: 9px;
        bottom: 9px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .cast-area {
        font-size: 15px;
    }

    .cast-note,
    .cast-status {
        font-size: 10px;
    }

    .flow-card {
        padding: 16px;
    }

    .flow-step-head {
        min-height: 38px;
        margin-bottom: 10px;
        gap: 9px;
    }

    .flow-icon {
        width: 34px;
        height: 34px;
    }

    .flow-icon svg {
        width: 18px;
        height: 18px;
    }

    .flow-title {
        flex: 1 1 auto;
        gap: 7px;
    }

    .flow-num {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }

    .flow-title h3 {
        overflow: hidden;
        font-size: 18px;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .section {
        padding: 54px 0;
    }

    .area-buttons {
        grid-template-columns: 1fr 1fr;
    }

    .map-box {
        padding: 10px;
    }

    .map-badge {
        min-width: 66px;
        min-height: 28px;
        padding: 4px 8px;
        font-size: 11px;
    }
}

.signup-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0,0,0,.36);
}

.signup-modal:target,
.signup-modal.is-open {
    display: flex;
}

.signup-modal-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.signup-modal-panel {
    position: relative;
    z-index: 1;
    width: min(960px, 100%);
    padding: 28px;
    border: 2px solid #333;
    border-radius: 8px;
    background: #fff;
    color: #111820;
    text-align: center;
    box-shadow: 0 22px 70px rgba(0,0,0,.28);
}

.signup-modal-panel p {
    margin: 0;
    font-weight: 800;
    line-height: 1.7;
}

.signup-modal-panel .modal-sub {
    margin-top: 14px;
    font-size: 15px;
}

.signup-modal-panel img {
    width: min(260px, 72vw);
    margin: 8px auto 18px;
}

.signup-modal-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.signup-modal-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 136px;
    min-height: 42px;
    padding: 9px 18px;
    border-radius: 5px;
    color: #fff;
    background: #2da7ef;
    font-weight: 900;
    line-height: 1.2;
    text-decoration: none;
}

.signup-modal-actions .modal-secondary {
    background: #777;
}

@media (max-width: 980px) {
    .hero {
        color: var(--wine, #8f243b);
        background:
            radial-gradient(circle at 92% 0%, rgba(216,75,97,.12), rgba(216,75,97,0) 36%),
            linear-gradient(180deg, #fff 0%, #fff6f8 100%);
    }

    .hero::after {
        background: none;
    }

    .hero-visual {
        margin-bottom: -28px;
    }

    .hero-visual::after {
        inset: 0;
        background: linear-gradient(180deg, rgba(255,255,255,0) 58%, rgba(255,255,255,.92) 92%, #fff 100%);
    }

    .hero-inner {
        padding-top: 28px;
    }

    .hero-inner > div {
        padding-top: 0;
    }

    .kicker {
        border-color: rgba(143,36,59,.22);
        background: var(--wine, #8f243b);
        color: #fff7dc;
        box-shadow: 0 10px 24px rgba(143,36,59,.18);
        backdrop-filter: none;
    }

    .hero h1 {
        color: var(--wine-dark, #4f1a28);
    }

    .hero-lead {
        color: #5d4d54;
    }

    .hero-bullets span,
    .stat {
        border-color: rgba(143,36,59,.12);
        background: rgba(255,255,255,.86);
        color: var(--wine-dark, #4f1a28);
        box-shadow: 0 10px 24px rgba(95,31,47,.08);
        backdrop-filter: none;
    }

    .stat strong {
        color: var(--wine, #8f243b);
    }

    .stat span {
        color: #6f6268;
    }

    .registration-bonus {
        display: inline-flex;
        width: auto;
        max-width: 100%;
        min-height: 40px;
        gap: 8px;
        margin-top: 14px;
        padding: 7px 10px;
        border-color: rgba(201,154,61,.32);
        border-radius: 999px;
        background: #fff;
        color: var(--wine-dark, #4f1a28);
        box-shadow: 0 10px 24px rgba(95,31,47,.1);
        backdrop-filter: none;
    }

    .bonus-label {
        padding: 4px 8px;
        background: var(--wine, #8f243b);
        color: #fff;
        font-size: 11px;
    }

    .bonus-copy {
        color: var(--wine-dark, #4f1a28);
        font-size: 12px;
        line-height: 1.2;
        white-space: nowrap;
    }

    .bonus-copy strong {
        color: var(--gold, #c99a3d);
        font-size: 20px;
        text-shadow: 0 1px 0 rgba(255,255,255,.75);
    }
}

@media (max-width: 360px) {
    .logo img {
        height: 32px;
    }

    .header-actions {
        gap: 5px;
    }

    .header-actions .btn {
        min-height: 32px;
        padding: 6px 8px;
        font-size: 11px;
    }

    .header-actions .btn:first-child,
    .header-actions .btn-red {
        padding-inline: 9px;
    }
}

/* Match renewed area top header buttons. */
.site-header .header-actions .btn {
    min-height: 38px;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(95,31,47,.08);
}

.site-header .header-actions .btn:first-child,
.site-header .header-actions .btn-red,
.site-header .header-actions .btn-dark {
    padding-inline: 12px;
}

@media (max-width: 640px) {
    .site-header .header-actions .btn {
        min-height: 34px;
        padding: 7px 10px;
        font-size: 12px;
        box-shadow: none;
    }
}

@media (max-width: 360px) {
    .site-header .header-actions .btn {
        min-height: 32px;
        padding: 6px 8px;
        font-size: 11px;
    }
}
