:root {
    --ink: #10213d;
    --ink-soft: #51627c;
    --navy: #092957;
    --navy-deep: #061d40;
    --blue: #176bff;
    --blue-light: #eaf2ff;
    --orange: #ff8a3d;
    --paper: #f5f7fb;
    --white: #ffffff;
    --line: #dde5f0;
    --shadow: 0 24px 70px rgba(15, 38, 74, 0.12);
    --radius: 22px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
body::selection { color: #fff; background: var(--blue); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 48px), 820px); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 9999; padding: 10px 16px; border-radius: 8px; color: #fff; background: var(--blue); }
.skip-link:focus { top: 16px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 82px;
    border-bottom: 1px solid rgba(219, 228, 241, .72);
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(18px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand img { width: 236px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 36px; font-size: 14px; font-weight: 650; }
.site-nav > a:not(.nav-cta) { position: relative; padding: 28px 0 24px; color: #43536d; }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 19px; height: 2px; background: var(--blue); transition: right .25s ease; }
.site-nav > a:hover, .site-nav > a.is-active { color: var(--ink); }
.site-nav > a:hover::after, .site-nav > a.is-active::after { right: 0; }
.nav-cta { display: inline-flex; align-items: center; gap: 16px; padding: 11px 12px 11px 19px; border-radius: 999px; color: #fff; background: var(--ink); transition: .25s ease; }
.nav-cta span { display: grid; width: 27px; height: 27px; place-items: center; border-radius: 50%; color: var(--ink); background: #fff; }
.nav-cta:hover { transform: translateY(-2px); background: var(--blue); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: #eef3fa; }
.nav-toggle span:not(.sr-only) { display: block; width: 21px; height: 2px; margin: 4px auto; background: var(--ink); transition: .25s ease; }

.hero { position: relative; min-height: 760px; padding: 88px 0 0; overflow: hidden; background: linear-gradient(180deg, #f7f9fd 0%, #fff 84%); }
.hero::before { content: "IELTS"; position: absolute; left: 2vw; bottom: -138px; color: rgba(11, 48, 98, .025); font-size: clamp(180px, 27vw, 430px); font-weight: 900; letter-spacing: -.09em; line-height: 1; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb-one { width: 390px; height: 390px; right: 4%; top: 8%; background: radial-gradient(circle at 35% 30%, rgba(91, 174, 255, .26), rgba(23, 107, 255, .02) 68%); }
.hero-orb-two { width: 300px; height: 300px; left: -120px; top: 20%; background: radial-gradient(circle, rgba(255, 160, 88, .14), rgba(255,255,255,0) 70%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 80px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 22px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .18em; }
.eyebrow > span { width: 27px; height: 2px; background: currentColor; }
.eyebrow.light { color: #80b5ff; }
.hero h1 { margin: 0; font-size: clamp(56px, 6.1vw, 88px); font-weight: 850; line-height: 1.06; letter-spacing: -.055em; }
.hero h1 span { position: relative; color: var(--blue); }
.hero h1 span::after { content: ""; position: absolute; left: 2%; right: 0; bottom: -9px; height: 7px; border-radius: 50%; background: var(--orange); transform: rotate(-1.2deg) scaleX(.96); }
.hero-lead { max-width: 570px; margin: 35px 0 32px; color: var(--ink-soft); font-size: 18px; line-height: 1.9; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 24px; min-height: 54px; padding: 0 24px; border: 1px solid transparent; border-radius: 13px; font-size: 15px; font-weight: 750; cursor: pointer; transition: .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--blue); box-shadow: 0 12px 30px rgba(23, 107, 255, .22); }
.button-primary:hover { background: #075cf0; box-shadow: 0 18px 40px rgba(23, 107, 255, .28); }
.button-ghost { border-color: #ccd7e6; color: var(--ink); background: rgba(255,255,255,.7); }
.button-ghost:hover { border-color: var(--ink); background: #fff; }
.button-light { color: var(--navy); background: #fff; }
.trust-row { display: flex; gap: 22px; margin-top: 32px; color: #65758d; font-size: 13px; }
.trust-row i { display: inline-grid; width: 18px; height: 18px; margin-right: 5px; place-items: center; border-radius: 50%; color: #fff; background: #1cab79; font-size: 10px; font-style: normal; }

.hero-visual { position: relative; min-height: 570px; }
.hero-grid-lines { position: absolute; inset: 20px -60px 0 20px; z-index: -1; opacity: .7; background-image: linear-gradient(rgba(14, 62, 122, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(14, 62, 122, .07) 1px, transparent 1px); background-size: 36px 36px; mask-image: linear-gradient(to bottom right, #000, transparent 70%); transform: rotate(-4deg); }
.score-card { position: absolute; width: min(100%, 440px); height: 520px; left: 44px; top: 6px; padding: 27px 31px; overflow: hidden; border: 1px solid rgba(255,255,255,.5); border-radius: 35px; color: #fff; background: linear-gradient(145deg, #123f7a, #072854 68%, #071b39); box-shadow: 0 42px 90px rgba(5, 33, 73, .3); transform: rotate(3.2deg); }
.hero-photo-card { position: absolute; width: min(100%, 440px); height: 520px; left: 44px; top: 6px; padding: 10px; overflow: hidden; border-radius: 35px; background: rgba(255,255,255,.8); box-shadow: 0 42px 90px rgba(5,33,73,.24); transform: rotate(2deg); }
.hero-photo-card img { width: 100%; height: 100%; border-radius: 27px; object-fit: cover; }
.score-card::after { content: ""; position: absolute; width: 330px; height: 330px; right: -165px; top: -140px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; box-shadow: 0 0 0 46px rgba(255,255,255,.025), 0 0 0 94px rgba(255,255,255,.02); }
.score-card-head { display: flex; align-items: center; gap: 12px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.mini-brand { display: grid; width: 35px; height: 35px; place-items: center; border-radius: 10px; background: var(--blue); font-weight: 900; }
.score-card-head i { width: 8px; height: 8px; margin-left: auto; border-radius: 50%; background: #62e5b2; box-shadow: 0 0 0 5px rgba(98,229,178,.12); }
.focus-ring { position: relative; display: grid; width: 188px; height: 188px; margin: 38px auto 36px; place-items: center; border-radius: 50%; background: conic-gradient(#4f9cff 0 82%, rgba(255,255,255,.1) 82%); }
.focus-ring::before { content: ""; position: absolute; inset: 13px; border-radius: 50%; background: #0b2f62; }
.focus-ring::after { content: ""; position: absolute; inset: 30px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.focus-ring div { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.focus-ring strong { font-size: 58px; line-height: 1; letter-spacing: -.07em; }
.focus-ring span { margin-top: 8px; color: #9fc3f1; font-size: 12px; }
.skill-bars { display: grid; gap: 17px; }
.skill-bars > div { display: grid; grid-template-columns: 72px 1fr 34px; align-items: center; gap: 12px; font-size: 11px; }
.skill-bars > div > span { color: #afc8e9; }
.skill-bars > div > i { height: 4px; overflow: hidden; border-radius: 99px; background: rgba(255,255,255,.12); }
.skill-bars b { display: block; width: var(--w); height: 100%; border-radius: inherit; background: linear-gradient(90deg, #3c8cff, #84bdff); }
.skill-bars em { color: #8eacd2; font-style: normal; text-align: right; }
.floating-note { position: absolute; z-index: 4; display: flex; align-items: center; gap: 13px; padding: 13px 18px 13px 13px; border: 1px solid rgba(255,255,255,.9); border-radius: 16px; background: rgba(255,255,255,.89); box-shadow: 0 20px 50px rgba(12, 42, 83, .16); backdrop-filter: blur(14px); }
.floating-note > span { display: grid; width: 39px; height: 39px; place-items: center; border-radius: 11px; color: #fff; background: var(--orange); font-size: 11px; font-weight: 800; }
.floating-note div { display: flex; flex-direction: column; }
.floating-note b { font-size: 13px; }
.floating-note small { color: #7a899f; font-size: 11px; }
.note-one { left: 0; top: 160px; transform: rotate(-3deg); }
.note-two { right: -8px; bottom: 74px; transform: rotate(2deg); }
.note-two > span { background: #19aa86; }
.hero-foot { position: relative; z-index: 3; display: flex; align-items: center; justify-content: space-between; margin-top: 12px; padding: 28px 0; border-top: 1px solid var(--line); color: #64738b; font-size: 14px; }
.hero-foot p { margin: 0; }
.hero-foot strong { color: var(--ink); }
.hero-foot a { display: flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 700; }
.hero-foot a span { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid #cbd6e4; border-radius: 50%; }

.section { padding: 116px 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 55px; }
.section-heading h2, .about-copy h2, .method-copy h2 { margin: 0; font-size: clamp(38px, 4.3vw, 60px); line-height: 1.14; letter-spacing: -.045em; }
.section-heading > p { width: min(100%, 400px); margin: 0 0 6px; color: var(--ink-soft); }
.products-section { background: var(--white); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; }
.product-card { --accent: #176bff; position: relative; min-height: 425px; padding: 26px 25px 23px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.product-card:hover { z-index: 2; border-color: transparent; box-shadow: var(--shadow); transform: translateY(-9px); }
.accent-blue { --accent: #176bff; --accent-soft: #e7f0ff; }
.accent-violet { --accent: #7b5cff; --accent-soft: #eeeaff; }
.accent-orange { --accent: #ff7a3d; --accent-soft: #fff0e8; }
.accent-teal { --accent: #14a88a; --accent-soft: #e3f8f3; }
.product-topline { display: flex; justify-content: space-between; color: var(--accent); font-size: 10px; font-weight: 850; letter-spacing: .15em; }
.product-topline em { color: #a1aec0; font-size: 12px; font-style: normal; letter-spacing: 0; }
.product-symbol { position: relative; height: 98px; margin-top: 26px; border-radius: 18px; background: var(--accent-soft); }
.product-cover { height: 98px; margin-top: 26px; overflow: hidden; border-radius: 18px; background: var(--accent-soft); }
.product-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card:hover .product-cover img { transform: scale(1.05); }
.product-card h3 { margin: 25px 0 9px; font-size: 22px; letter-spacing: -.03em; }
.product-card > p { min-height: 72px; margin: 0; color: #63728a; font-size: 13px; line-height: 1.8; }
.card-footer { display: flex; align-items: end; justify-content: space-between; margin-top: 21px; padding-top: 18px; border-top: 1px solid var(--line); }
.card-footer strong { font-size: 27px; line-height: 1; letter-spacing: -.04em; }
.card-footer small { margin-right: 2px; font-size: 13px; }
.card-footer a { display: flex; align-items: center; gap: 10px; color: var(--accent); font-size: 13px; font-weight: 800; }
.card-footer a span { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; color: #fff; background: var(--accent); }
.product-symbol .wave { position: absolute; bottom: 27px; width: 6px; border-radius: 8px; background: var(--accent); }
.product-symbol .w1 { left: 28%; height: 24px; }.product-symbol .w2 { left: 39%; height: 44px; }.product-symbol .w3 { left: 50%; height: 60px; }.product-symbol .w4 { left: 61%; height: 38px; }.product-symbol .w5 { left: 72%; height: 20px; }
.product-symbol .line { position: absolute; left: 24%; height: 5px; border-radius: 6px; background: var(--accent); }
.product-symbol .l1 { top: 25px; width: 52%; }.product-symbol .l2 { top: 39px; width: 41%; }.product-symbol .l3 { top: 55px; width: 52%; opacity: .5; }.product-symbol .l4 { top: 69px; width: 30%; opacity: .5; }
.product-symbol .pen { position: absolute; left: 48%; top: 17px; width: 12px; height: 58px; border-radius: 8px 8px 3px 3px; background: var(--accent); transform: rotate(43deg); }
.product-symbol .pen::after { content: ""; position: absolute; bottom: -9px; left: 1px; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 11px solid var(--accent); }
.product-symbol .pen-line { position: absolute; left: 25%; bottom: 25px; height: 4px; border-radius: 5px; background: var(--accent); opacity: .35; }
.product-symbol .p1 { width: 38%; }.product-symbol .p2 { bottom: 16px; width: 51%; }
.product-symbol .bubble { position: absolute; border: 4px solid var(--accent); border-radius: 50%; }
.product-symbol .b1 { width: 50px; height: 42px; left: 28%; top: 23px; }.product-symbol .b2 { width: 40px; height: 34px; right: 24%; top: 38px; opacity: .55; }
.product-symbol .bubble-dot { position: absolute; width: 5px; height: 5px; left: 41%; top: 42px; border-radius: 50%; background: var(--accent); box-shadow: 11px 0 var(--accent), 22px 0 var(--accent); }
.forecast-note { display: flex; align-items: center; gap: 30px; margin-top: 34px; padding: 23px 28px; border-radius: 15px; background: #f5f8fc; }
.forecast-note span { flex: 0 0 auto; color: var(--navy); font-size: 13px; font-weight: 800; }
.forecast-note p { margin: 0; color: #68778f; font-size: 13px; }

.method-section { position: relative; overflow: hidden; color: #fff; background: var(--navy); }
.method-section::before { content: ""; position: absolute; width: 640px; height: 640px; left: -350px; top: -270px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.018), 0 0 0 140px rgba(255,255,255,.012); }
.method-grid { position: relative; display: grid; grid-template-columns: .75fr 1.25fr; gap: 110px; }
.method-copy { position: sticky; top: 140px; align-self: start; }
.method-copy > p:not(.eyebrow) { margin: 24px 0 36px; color: #a9c1df; }
.text-link { display: inline-flex; gap: 30px; padding-bottom: 7px; border-bottom: 1px solid rgba(255,255,255,.3); font-size: 14px; font-weight: 750; }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 60px 1fr; gap: 27px; padding: 34px 0; border-top: 1px solid rgba(255,255,255,.14); }
.process-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.process-list li > span { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: #81b7ff; font-size: 11px; font-weight: 850; }
.process-list h3 { margin: 0 0 7px; font-size: 21px; }
.process-list p { margin: 0; color: #a9bdd8; font-size: 14px; }

.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }
.about-visual { position: relative; display: grid; height: 540px; place-items: center; overflow: hidden; border-radius: 32px; background: linear-gradient(145deg, #eff4fb, #dfe9f7); }
.about-visual::before { content: ""; position: absolute; width: 420px; height: 420px; border: 1px solid rgba(23,107,255,.12); border-radius: 50%; box-shadow: 0 0 0 62px rgba(23,107,255,.035), 0 0 0 124px rgba(23,107,255,.02); }
.about-monogram { position: relative; z-index: 2; color: var(--navy); font-size: 144px; font-weight: 900; letter-spacing: -.14em; line-height: 1; transform: translateX(-7px); }
.about-monogram span { color: var(--blue); }
.about-caption { position: absolute; z-index: 3; left: 28px; right: 28px; bottom: 27px; display: flex; justify-content: space-between; padding: 17px 20px; border: 1px solid rgba(255,255,255,.8); border-radius: 14px; background: rgba(255,255,255,.73); backdrop-filter: blur(12px); font-size: 12px; }
.about-caption span { color: #65758e; }
.about-copy h2 { margin-bottom: 26px; }
.about-lead { color: var(--ink); font-size: 20px; font-weight: 700; line-height: 1.65; }
.about-copy > p:not(.eyebrow):not(.about-lead) { color: var(--ink-soft); }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; margin-top: 31px; }
.values > div { padding: 20px 17px; border: 1px solid var(--line); border-radius: 14px; }
.values strong, .values span { display: block; }
.values strong { margin-bottom: 6px; color: var(--blue); font-size: 17px; }
.values span { color: #748299; font-size: 11px; }

.cta-section { padding: 0 0 100px; }
.cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; min-height: 230px; padding: 52px 60px; overflow: hidden; border-radius: 30px; color: #fff; background: linear-gradient(120deg, #176bff, #0e55d4); }
.cta-inner::after { content: ""; position: absolute; width: 330px; height: 330px; right: 19%; top: -190px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; box-shadow: 0 0 0 48px rgba(255,255,255,.05), 0 0 0 96px rgba(255,255,255,.03); }
.cta-inner > * { position: relative; z-index: 2; }
.cta-inner p { margin: 0 0 5px; color: #bcd6ff; font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.cta-inner h2 { margin: 0; font-size: clamp(32px, 4vw, 50px); letter-spacing: -.04em; }

.page-hero { position: relative; overflow: hidden; color: #fff; background: var(--navy); }
.compact-hero { padding: 92px 0 100px; }
.compact-hero::after { content: "04"; position: absolute; right: 7%; bottom: -140px; color: rgba(255,255,255,.035); font-size: 350px; font-weight: 900; letter-spacing: -.1em; line-height: 1; }
.compact-hero h1 { max-width: 800px; margin: 0; font-size: clamp(50px, 6vw, 78px); line-height: 1.08; letter-spacing: -.055em; }
.compact-hero h1 span { color: #70aaff; }
.compact-hero > .container > p:last-child { max-width: 550px; margin: 27px 0 0; color: #b0c4df; }
.detail-products { background: #f5f7fb; }
.detail-product { --accent: #176bff; display: grid; grid-template-columns: 78px 1.3fr 1fr 170px; gap: 30px; align-items: center; margin-bottom: 18px; padding: 37px 34px; border: 1px solid transparent; border-radius: 22px; background: #fff; transition: .25s ease; }
.detail-product:hover { border-color: color-mix(in srgb, var(--accent) 25%, white); box-shadow: 0 20px 55px rgba(20,42,77,.09); transform: translateY(-3px); }
.detail-number { display: grid; width: 60px; height: 60px; place-items: center; border-radius: 17px; color: var(--accent); background: var(--accent-soft); font-size: 13px; font-weight: 850; }
.detail-cover { width: 70px; height: 70px; overflow: hidden; border-radius: 17px; background: var(--accent-soft); }
.detail-cover img { width: 100%; height: 100%; object-fit: cover; }
.detail-eyebrow { color: var(--accent); font-size: 10px; font-weight: 850; letter-spacing: .16em; }
.detail-main h2 { margin: 5px 0 8px; font-size: 27px; letter-spacing: -.03em; }
.detail-main p { margin: 0; color: #68778e; font-size: 13px; }
.detail-list { padding-left: 30px; border-left: 1px solid var(--line); }
.detail-list > span, .detail-buy > span { color: #8794a8; font-size: 11px; font-weight: 700; }
.detail-list ul { margin: 10px 0 0; padding: 0; list-style: none; }
.detail-list li { position: relative; margin: 3px 0; padding-left: 14px; color: #42526b; font-size: 12px; }
.detail-list li::before { content: ""; position: absolute; left: 0; top: .78em; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.detail-buy { display: flex; flex-direction: column; align-items: flex-start; }
.detail-buy strong { margin: 4px 0 14px; font-size: 26px; letter-spacing: -.04em; }
.detail-buy small { font-size: 13px; }
.detail-buy .button { width: 100%; min-height: 46px; padding: 0 16px; }
.purchase-explainer { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 42px; }
.purchase-explainer > div { padding: 29px; border-top: 2px solid var(--blue); background: #fff; }
.purchase-explainer span { color: var(--blue); font-size: 11px; font-weight: 850; }
.purchase-explainer h3 { margin: 8px 0; font-size: 17px; }
.purchase-explainer p { margin: 0; color: #6d7b91; font-size: 12px; }

.checkout-section { min-height: calc(100vh - 82px); padding: 70px 0 95px; background: linear-gradient(115deg, var(--navy) 0 48%, #f5f7fb 48%); }
.checkout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.checkout-summary { color: #fff; }
.back-link { display: inline-block; margin-bottom: 50px; color: #a9c4e7; font-size: 13px; }
.checkout-summary h1 { margin: 0 0 30px; font-size: 52px; letter-spacing: -.05em; }
.selected-product { --accent: #176bff; padding: 29px; border: 1px solid rgba(255,255,255,.16); border-radius: 22px; background: rgba(255,255,255,.075); backdrop-filter: blur(12px); }
.checkout-product-image { width: 100%; height: 150px; margin-bottom: 20px; border-radius: 14px; object-fit: cover; }
.selected-product > div:first-child { display: flex; justify-content: space-between; color: #8dbbff; font-size: 10px; font-weight: 850; letter-spacing: .14em; }
.selected-product > div:first-child em { color: #7f9abe; font-style: normal; }
.selected-product h2 { margin: 20px 0 8px; font-size: 25px; }
.selected-product > p { color: #b8cae2; font-size: 13px; }
.selected-product ul { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 15px; margin: 20px 0; padding: 0; list-style: none; }
.selected-product li { color: #c6d5e8; font-size: 11px; }
.selected-product li::before { content: "✓"; margin-right: 6px; color: #62dcb0; }
.summary-total { display: flex; align-items: end; justify-content: space-between; margin-top: 24px; padding-top: 21px; border-top: 1px solid rgba(255,255,255,.15); }
.summary-total span { color: #b7c9e1; font-size: 12px; }
.summary-total strong { font-size: 34px; line-height: 1; }
.summary-total small { font-size: 14px; }
.secure-note { color: #8fa9cc; font-size: 11px; text-align: center; }
.checkout-form-wrap { padding: 22px 0; }
.form-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 29px; }
.form-heading span { font-size: 27px; font-weight: 800; letter-spacing: -.03em; }
.form-heading em { color: #8996a9; font-size: 11px; font-style: normal; }
.checkout-form { display: grid; gap: 18px; }
.checkout-form label:not(.consent), .admin-login-card label { display: grid; gap: 7px; }
.checkout-form label > span, .admin-login-card label > span { color: #40506a; font-size: 12px; font-weight: 750; }
.checkout-form label em { color: #9aa6b8; font-style: normal; font-weight: 500; }
input, textarea, select { width: 100%; border: 1px solid #d9e1ec; border-radius: 11px; outline: none; color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s; }
input { height: 50px; padding: 0 15px; }
textarea { min-height: 95px; padding: 12px 15px; resize: vertical; }
select { height: 36px; padding: 0 8px; }
input:focus, textarea:focus, select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(23,107,255,.1); }
.consent { display: grid; grid-template-columns: 18px 1fr; align-items: start; gap: 10px; color: #67758b; font-size: 11px; line-height: 1.7; }
.consent input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--blue); }
.consent a { color: var(--blue); }
.pay-button { width: 100%; min-height: 56px; justify-content: space-between; }
.pay-button:disabled { cursor: not-allowed; filter: grayscale(.65); opacity: .55; transform: none; box-shadow: none; }
.form-footnote { margin: -7px 0 0; color: #8996aa; font-size: 10px; text-align: center; }
.alert { padding: 14px 16px; border-radius: 11px; font-size: 12px; }
.alert-error { border: 1px solid #fac7c7; color: #9c2929; background: #fff0f0; }
.alert-warning { border: 1px solid #f0d595; color: #76560e; background: #fff8e6; }
.alert-success { border: 1px solid #a9e2cc; color: #176844; background: #edfff7; }

.legal-hero { padding: 80px 0 70px; color: #fff; background: var(--navy); }
.legal-hero h1 { margin: 0; font-size: clamp(42px, 5vw, 66px); letter-spacing: -.05em; }
.legal-hero > .container > p:last-child { margin: 18px 0 0; color: #9db7d8; font-size: 12px; }
.legal-content { padding-top: 75px; }
.prose { color: #46566e; }
.prose h2 { margin: 42px 0 12px; color: var(--ink); font-size: 22px; letter-spacing: -.02em; }
.prose p { margin: 0 0 16px; }
.legal-notice { padding: 23px 25px; border-left: 3px solid var(--blue); border-radius: 0 13px 13px 0; background: #f2f6fc; }
.legal-notice strong { color: var(--blue); }
.legal-notice p { margin: 6px 0 0; font-size: 13px; }

.result-section { min-height: calc(100vh - 82px); display: grid; place-items: center; padding: 70px 0; background: #f4f7fb; }
.result-card { padding: 48px; border-radius: 25px; background: #fff; box-shadow: var(--shadow); text-align: center; }
.result-icon { display: grid; width: 70px; height: 70px; margin: 0 auto 26px; place-items: center; border-radius: 50%; color: #fff; background: var(--blue); font-size: 31px; font-weight: 900; }
.status-paid .result-icon, .status-fulfilled .result-icon { background: #1cab79; }
.status-error .result-icon { background: #e74b4b; }
.result-card .eyebrow { justify-content: center; }
.result-card h1 { margin: 0; font-size: 40px; letter-spacing: -.04em; }
.result-card > p:not(.eyebrow) { color: #6d7a90; }
.result-card dl { margin: 29px 0; padding: 10px 25px; border-radius: 15px; background: #f6f8fb; text-align: left; }
.result-card dl div { display: flex; justify-content: space-between; gap: 20px; padding: 11px 0; border-bottom: 1px solid #e5eaf2; }
.result-card dl div:last-child { border: 0; }
.result-card dt { color: #8290a5; font-size: 12px; }
.result-card dd { margin: 0; font-size: 12px; font-weight: 750; text-align: right; overflow-wrap: anywhere; }
.result-actions { display: flex; justify-content: center; gap: 10px; }
.poll-note { font-size: 11px; }

.admin-body .site-header, .admin-body .site-footer { display: none; }
.admin-shell { min-height: 100vh; display: grid; place-items: center; padding: 40px 20px; background: #eef3f9; }
.admin-login-card { width: min(100%, 420px); padding: 40px; border-radius: 22px; background: #fff; box-shadow: var(--shadow); }
.admin-login-card img { width: 240px; margin-bottom: 30px; }
.admin-login-card h1 { margin: 0; font-size: 31px; }
.admin-login-card > p { margin: 3px 0 25px; color: #7b899d; font-size: 13px; }
.admin-login-card form { display: grid; gap: 16px; }
.admin-login-card .button { width: 100%; }
.admin-login-card > a { display: inline-block; margin-top: 25px; color: #6f7d91; font-size: 12px; }
.admin-page { min-height: 100vh; padding: 50px 0; background: #f3f6fa; }
.admin-container { width: min(calc(100% - 40px), 1400px); }
.admin-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 30px; }
.admin-head p { margin: 0; color: var(--blue); font-size: 10px; font-weight: 850; letter-spacing: .16em; }
.admin-head h1 { margin: 2px 0 0; font-size: 38px; }
.admin-head > div:last-child { display: flex; gap: 9px; }
.admin-head a { padding: 8px 13px; border: 1px solid #d9e1ec; border-radius: 8px; background: #fff; font-size: 12px; }
.order-stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin: 22px 0; }
.order-stats > div { display: flex; align-items: center; justify-content: space-between; padding: 18px; border-radius: 13px; background: #fff; }
.order-stats span { color: #718097; font-size: 12px; }
.order-stats strong { font-size: 23px; }
.table-wrap { overflow-x: auto; border-radius: 15px; background: #fff; }
table { width: 100%; border-collapse: collapse; font-size: 12px; }
th { padding: 15px; color: #758399; background: #eaf0f7; text-align: left; white-space: nowrap; }
td { min-width: 130px; padding: 15px; border-bottom: 1px solid #e7ecf3; vertical-align: top; }
td strong, td small { display: block; }
td small { margin-top: 4px; color: #7e8ba0; }
.note-cell { max-width: 260px; white-space: normal; }
.status-pill { display: inline-flex; padding: 4px 9px; border-radius: 999px; font-size: 10px; font-weight: 750; background: #eef2f7; }
.status-pill.status-paid { color: #096947; background: #e9fbf4; }.status-pill.status-fulfilled { color: #0f55bb; background: #eaf2ff; }.status-pill.status-refunded { color: #7c4bb2; background: #f4eaff; }.status-pill.status-closed { color: #7a8390; background: #eef0f3; }.status-pill.status-pending { color: #9b6111; background: #fff5de; }
.status-form { display: flex; gap: 6px; min-width: 180px; }
.status-form button { border: 0; border-radius: 7px; color: #fff; background: var(--blue); cursor: pointer; }
.empty-cell { padding: 50px; color: #8491a4; text-align: center; }

.site-footer { padding: 70px 0 22px; color: #dbe7f7; background: #061b39; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr 1fr; gap: 80px; padding-bottom: 50px; }
.footer-brand img { width: 235px; }
.footer-brand p { max-width: 340px; margin: 20px 0 0; color: #8fa8c8; font-size: 13px; }
.footer-grid h2 { margin: 3px 0 17px; color: #fff; font-size: 13px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 8px; }
.footer-grid a, .footer-grid span { color: #8fa8c8; font-size: 12px; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #7189a8; font-size: 10px; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 16px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
    .site-nav { gap: 22px; }
    .hero-grid { gap: 30px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .product-card > p { min-height: 48px; }
    .detail-product { grid-template-columns: 64px 1fr 1fr; }
    .detail-buy { grid-column: 2 / 4; flex-direction: row; align-items: center; justify-content: space-between; padding-top: 19px; border-top: 1px solid var(--line); }
    .detail-buy strong { margin: 0 auto 0 10px; }
    .detail-buy .button { width: auto; }
    .checkout-grid { gap: 55px; }
}

@media (max-width: 820px) {
    .container, .narrow { width: min(calc(100% - 32px), var(--container)); }
    .site-header { height: 72px; }
    .brand img { width: 205px; }
    .nav-toggle { display: block; position: relative; z-index: 3; }
    .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    .site-nav { position: fixed; inset: 72px 0 auto; display: grid; gap: 0; padding: 18px 24px 26px; border-bottom: 1px solid var(--line); background: #fff; box-shadow: 0 22px 55px rgba(13,39,75,.13); opacity: 0; transform: translateY(-120%); pointer-events: none; transition: .3s ease; }
    .site-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .site-nav > a:not(.nav-cta) { padding: 13px 0; border-bottom: 1px solid #edf1f6; }
    .site-nav > a:not(.nav-cta)::after { display: none; }
    .nav-cta { justify-content: space-between; margin-top: 14px; }
    .hero { min-height: auto; padding-top: 62px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: clamp(49px, 13vw, 70px); }
    .hero-lead { font-size: 16px; }
    .hero-visual { min-height: 550px; width: min(100%, 520px); margin: 0 auto; }
    .score-card { left: 8%; }
    .note-two { right: 0; }
    .hero-foot { margin-top: 0; }
    .section { padding: 80px 0; }
    .section-heading { display: block; }
    .section-heading > p { margin-top: 22px; }
    .method-grid, .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .method-copy { position: static; }
    .about-visual { height: 440px; }
    .cta-inner { padding: 42px; }
    .detail-product { grid-template-columns: 58px 1fr; }
    .detail-list { grid-column: 2; padding: 17px 0 0; border-left: 0; border-top: 1px solid var(--line); }
    .detail-buy { grid-column: 2; }
    .purchase-explainer { grid-template-columns: 1fr; }
    .checkout-section { padding-top: 45px; background: linear-gradient(180deg, var(--navy) 0 46%, #f5f7fb 46%); }
    .checkout-grid { grid-template-columns: 1fr; gap: 50px; }
    .back-link { margin-bottom: 32px; }
    .checkout-form-wrap { padding: 30px 0; }
    .footer-grid { grid-template-columns: 1.2fr .8fr; gap: 45px; }
    .footer-brand { grid-column: 1 / 3; }
    .order-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .hero { padding-top: 45px; }
    .hero h1 { font-size: 47px; }
    .hero-actions .button { width: 100%; }
    .trust-row { flex-wrap: wrap; gap: 10px 16px; }
    .hero-visual { min-height: 470px; margin-top: 15px; }
    .score-card { width: 90%; height: 430px; left: 5%; padding: 22px; border-radius: 27px; }
    .focus-ring { width: 150px; height: 150px; margin: 27px auto 25px; }
    .focus-ring strong { font-size: 46px; }
    .skill-bars { gap: 12px; }
    .floating-note { padding: 10px; }
    .floating-note > span { width: 33px; height: 33px; }
    .note-one { top: 125px; left: -3px; }
    .note-two { bottom: 18px; }
    .hero-foot { display: block; }
    .hero-foot a { margin-top: 10px; }
    .section-heading h2, .about-copy h2, .method-copy h2 { font-size: 38px; }
    .product-grid { grid-template-columns: 1fr; }
    .product-card { min-height: auto; }
    .forecast-note { display: block; }
    .forecast-note p { margin-top: 8px; }
    .process-list li { grid-template-columns: 48px 1fr; gap: 15px; }
    .about-visual { height: 360px; }
    .about-monogram { font-size: 105px; }
    .about-caption { display: block; }
    .about-caption span { display: block; }
    .values { grid-template-columns: 1fr; }
    .cta-section { padding-bottom: 70px; }
    .cta-inner { display: block; padding: 35px 27px; }
    .cta-inner .button { width: 100%; margin-top: 25px; }
    .compact-hero { padding: 65px 0 70px; }
    .compact-hero h1 { font-size: 43px; }
    .detail-product { grid-template-columns: 1fr; padding: 27px 23px; }
    .detail-number { width: 48px; height: 48px; }
    .detail-list, .detail-buy { grid-column: 1; }
    .detail-buy { flex-wrap: wrap; gap: 12px; }
    .detail-buy strong { margin: 0; }
    .detail-buy .button { width: 100%; }
    .selected-product ul { grid-template-columns: 1fr; }
    .checkout-summary h1 { font-size: 43px; }
    .result-card { padding: 35px 22px; }
    .result-card h1 { font-size: 32px; }
    .result-actions { flex-direction: column; }
    .result-card dl { padding-inline: 15px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: 1; }
    .footer-bottom { display: block; }
    .footer-bottom div { margin-top: 8px; }
    .admin-login-card { padding: 28px 22px; }
    .admin-head { display: block; }
    .admin-head > div:last-child { margin-top: 15px; }
    .order-stats { grid-template-columns: 1fr 1fr; }
}

/* Admin v2 */
.admin-v2 { min-width: 320px; color: #1d2c45; background: #f2f5f9; }
.admin-v2 .admin-app { min-height: 100vh; }
.admin-sidebar { position: fixed; inset: 0 auto 0 0; z-index: 1100; display: flex; width: 250px; flex-direction: column; color: #dce8f8; background: #071f43; box-shadow: 15px 0 50px rgba(5,27,59,.08); }
.admin-logo { display: flex; height: 92px; align-items: center; padding: 0 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
.admin-logo img { width: 200px; max-height: 50px; object-fit: contain; object-position: left center; }
.admin-sidebar nav { display: grid; gap: 5px; padding: 23px 14px; }
.admin-sidebar nav a { display: flex; align-items: center; gap: 13px; min-height: 48px; padding: 0 15px; border-radius: 11px; color: #9fb4d0; font-size: 13px; font-weight: 650; transition: .2s ease; }
.admin-sidebar nav a span { display: grid; width: 25px; height: 25px; place-items: center; color: #86aff0; font-size: 16px; }
.admin-sidebar nav a:hover, .admin-sidebar nav a.active { color: #fff; background: rgba(45,121,255,.2); }
.admin-sidebar nav a.active { box-shadow: inset 3px 0 #3b87ff; }
.admin-sidebar-bottom { display: grid; gap: 6px; margin-top: auto; padding: 18px 29px 25px; border-top: 1px solid rgba(255,255,255,.08); }
.admin-sidebar-bottom a { color: #86a0c2; font-size: 12px; }
.admin-sidebar-bottom a:hover { color: #fff; }
.admin-main { min-height: 100vh; margin-left: 250px; }
.admin-topbar { position: sticky; top: 0; z-index: 900; display: flex; height: 72px; align-items: center; justify-content: flex-end; padding: 0 34px; border-bottom: 1px solid #e1e7ef; background: rgba(255,255,255,.91); backdrop-filter: blur(15px); }
.admin-topbar button { display: none; border: 0; background: transparent; font-size: 22px; }
.admin-topbar > div { display: flex; flex-direction: column; align-items: flex-end; }
.admin-topbar strong { font-size: 13px; }
.admin-topbar span { color: #8190a5; font-size: 10px; }
.admin-content { width: min(calc(100% - 54px), 1320px); margin: 0 auto; padding: 42px 0 80px; }
.admin-page-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 27px; }
.admin-page-head p { margin: 0 0 3px; color: #2172ed; font-size: 10px; font-weight: 850; letter-spacing: .16em; }
.admin-page-head h1 { margin: 0; font-size: 34px; line-height: 1.2; letter-spacing: -.035em; }
.admin-page-head > div > span { color: #7c899b; font-size: 12px; }
.admin-primary-link, .admin-secondary-link { display: inline-flex; min-height: 42px; align-items: center; justify-content: center; padding: 0 17px; border-radius: 10px; font-size: 12px; font-weight: 750; }
.admin-primary-link { color: #fff; background: #176bff; box-shadow: 0 9px 24px rgba(23,107,255,.2); }
.admin-secondary-link { border: 1px solid #d6dee9; background: #fff; }
.admin-panel { border: 1px solid #e2e8f0; border-radius: 17px; background: #fff; box-shadow: 0 8px 30px rgba(22,47,82,.035); }
.admin-panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.admin-panel-head h2 { margin: 0; font-size: 18px; }
.admin-panel-head p { margin: 3px 0 0; color: #8491a4; font-size: 11px; }
.admin-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin: 23px 0; }
.admin-stat-grid a { display: flex; min-height: 145px; flex-direction: column; padding: 22px; border: 1px solid #e2e8f1; border-radius: 16px; background: #fff; transition: .2s ease; }
.admin-stat-grid a:hover { border-color: #b8d0f7; box-shadow: 0 13px 38px rgba(19,48,88,.08); transform: translateY(-3px); }
.admin-stat-grid span { color: #6f7e93; font-size: 12px; }
.admin-stat-grid strong { margin: 8px 0 auto; font-size: 36px; line-height: 1; }
.admin-stat-grid em { color: #2670dd; font-size: 10px; font-style: normal; }
.admin-dashboard-grid { display: grid; grid-template-columns: 1.4fr .8fr; gap: 17px; }
.admin-dashboard-grid > .admin-panel { padding: 25px; }
.quick-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.quick-actions a { padding: 16px; border-radius: 12px; background: #f4f7fb; }
.quick-actions b, .quick-actions span { display: block; }
.quick-actions b { font-size: 13px; }
.quick-actions span { margin-top: 3px; color: #7f8da0; font-size: 10px; }
.status-panel ul { margin: 0; padding: 0; list-style: none; }
.status-panel li { display: flex; justify-content: space-between; gap: 15px; padding: 12px 0; border-bottom: 1px solid #edf1f6; font-size: 11px; }
.status-panel li:last-child { border: 0; }
.status-panel li > span { color: #76859a; }
.status-panel li b { max-width: 60%; text-align: right; overflow-wrap: anywhere; }
.status-panel li b.ok { color: #13845d; }.status-panel li b.warn { color: #b37415; }
.admin-product-list { display: grid; gap: 11px; }
.admin-product-row { display: grid; grid-template-columns: 82px 1fr 125px 105px 95px; gap: 20px; align-items: center; padding: 18px; border: 1px solid #e1e7ef; border-radius: 15px; background: #fff; }
.admin-product-thumb { --accent: #176bff; --accent-soft: #e7f0ff; display: grid; width: 76px; height: 76px; place-items: center; overflow: hidden; border-radius: 14px; color: var(--accent); background: var(--accent-soft); font-size: 14px; font-weight: 850; }
.admin-product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.admin-product-info { min-width: 0; }
.admin-product-info small { color: #2670dd; font-size: 9px; font-weight: 850; letter-spacing: .13em; }
.admin-product-info h2 { margin: 3px 0; font-size: 17px; }
.admin-product-info p { max-width: 650px; margin: 0; color: #78869a; font-size: 11px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.admin-product-price span, .admin-product-price strong, .admin-product-state small { display: block; }
.admin-product-price span { color: #8b97a8; font-size: 9px; }
.admin-product-price strong { margin-top: 3px; font-size: 20px; }
.admin-product-state small { margin-top: 7px; color: #8793a4; font-size: 9px; }
.admin-edit-link { padding: 8px 10px; border: 1px solid #dce4ef; border-radius: 8px; color: #1a63cf; background: #f7f9fc; font-size: 10px; font-weight: 750; text-align: center; }
.admin-editor-form { padding: 27px; }
.admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.admin-form-grid label:not(.inline-check) { display: grid; gap: 7px; align-content: start; }
.admin-form-grid label > span:first-child { color: #40506a; font-size: 11px; font-weight: 750; }
.admin-form-grid label > small { color: #8491a3; font-size: 9px; }
.admin-form-grid .full { grid-column: 1 / -1; }
.admin-form-grid input[type="checkbox"] { width: 17px; height: 17px; margin: 0; accent-color: #176bff; }
.switch-row, .inline-check { display: flex !important; align-items: center; gap: 8px; color: #65758b; font-size: 11px; }
.admin-form-actions { display: flex; align-items: center; gap: 19px; margin-top: 27px; padding-top: 23px; border-top: 1px solid #e8edf3; }
.admin-form-actions > a { color: #7e8b9e; font-size: 12px; }
.upload-field { padding: 18px; border: 1px dashed #cfd9e7; border-radius: 12px; background: #f8fafc; }
.upload-field > img { width: min(100%, 300px); height: 120px; margin: 5px 0; border-radius: 9px; object-fit: contain; object-position: left center; background: #fff; }
.upload-field > img.dark-preview { background: #071f43; }
.upload-field input[type="file"] { height: auto; padding: 10px; background: #fff; }
.admin-settings-form { display: grid; gap: 18px; }
.image-settings-grid { grid-template-columns: repeat(3, 1fr); }
.image-settings-grid .upload-field { grid-column: auto; }
.sticky-save { position: sticky; bottom: 16px; z-index: 10; display: flex; align-items: center; gap: 20px; padding: 14px 18px; border: 1px solid #dfe6ef; border-radius: 15px; background: rgba(255,255,255,.94); box-shadow: 0 18px 50px rgba(19,44,79,.14); backdrop-filter: blur(12px); }
.sticky-save span { color: #7a889a; font-size: 10px; }
.payment-status { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; padding: 17px; border: 1px solid #f1d291; border-radius: 12px; background: #fff9e8; }
.payment-status > span { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; color: #fff; background: #d89720; font-weight: 900; }
.payment-status.ready { border-color: #a9dfca; background: #effcf7; }.payment-status.ready > span { background: #16a171; }
.payment-status strong, .payment-status p { display: block; margin: 0; }.payment-status strong { font-size: 12px; }.payment-status p { color: #748297; font-size: 10px; }
.password-form { width: min(100%, 650px); }
.admin-v2 .order-stats { grid-template-columns: repeat(5, 1fr); }
.admin-v2 .table-wrap { overflow-x: auto; }
.admin-guest { min-height: 100vh; background: radial-gradient(circle at 20% 10%, rgba(40,119,255,.14), transparent 32%), #edf2f8; }
.admin-guest-main { min-height: 100vh; display: grid; place-items: center; padding: 38px 18px; }
.admin-login-card, .admin-setup-card { width: min(100%, 450px); padding: 39px; border: 1px solid rgba(255,255,255,.8); border-radius: 23px; background: rgba(255,255,255,.94); box-shadow: 0 28px 80px rgba(15,42,79,.15); }
.admin-setup-card { width: min(100%, 720px); }
.admin-login-card > img, .admin-setup-card > img { width: 235px; max-height: 60px; margin-bottom: 25px; object-fit: contain; object-position: left center; }
.admin-kicker { margin: 0 !important; color: #176bff !important; font-size: 9px !important; font-weight: 850; letter-spacing: .16em; }
.admin-login-card h1, .admin-setup-card h1 { margin: 2px 0 0; font-size: 30px; letter-spacing: -.04em; }
.admin-login-card > p:not(.admin-kicker), .admin-setup-card > p:not(.admin-kicker) { margin: 4px 0 22px; color: #7a889b; font-size: 11px; }
.admin-login-card form { display: grid; gap: 15px; }
.admin-login-card label { display: grid; gap: 6px; }.admin-login-card label span { font-size: 11px; font-weight: 750; }
.admin-login-card .button { width: 100%; }
.initial-login-tip { display: grid; gap: 2px; margin-top: 19px; padding: 13px 15px; border-radius: 10px; color: #43536b; background: #eef4fe; font-size: 10px; }
.initial-login-tip strong { color: #176bff; }.initial-login-tip small { margin-top: 3px; color: #7e8da2; }
.admin-login-card > a { display: inline-block; margin-top: 20px; color: #718096; font-size: 10px; }

@media (max-width: 1000px) {
    .admin-sidebar { transform: translateX(-102%); transition: .25s ease; }.admin-sidebar.open { transform: translateX(0); }
    .admin-main { margin-left: 0; }.admin-topbar { justify-content: space-between; }.admin-topbar button { display: block; }
    .admin-stat-grid { grid-template-columns: repeat(2, 1fr); }.admin-product-row { grid-template-columns: 76px 1fr 110px; }
    .admin-product-state { grid-column: 2; }.admin-edit-link { grid-column: 3; grid-row: 2; }.image-settings-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
    .admin-content { width: min(calc(100% - 26px), 1320px); padding-top: 27px; }.admin-page-head { display: block; }.admin-page-head > a { margin-top: 15px; }
    .admin-stat-grid, .admin-dashboard-grid, .admin-form-grid { grid-template-columns: 1fr; }.admin-form-grid .full { grid-column: 1; }
    .quick-actions { grid-template-columns: 1fr; }.admin-product-row { grid-template-columns: 66px 1fr; gap: 13px; }
    .admin-product-price, .admin-product-state, .admin-edit-link { grid-column: 2; grid-row: auto; }.admin-product-thumb { width: 62px; height: 62px; }
    .admin-v2 .order-stats { grid-template-columns: repeat(2, 1fr); }.admin-login-card, .admin-setup-card { padding: 28px 21px; }
    .sticky-save { display: block; }.sticky-save span { display: block; margin-top: 6px; }
}
