@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800&display=swap');

:root {
  --ink: #27213d;
  --ink-deep: #1d1732;
  --sky: #4b39ef;
  --sky-light: #6d53f4;
  --sky-soft: #eeebff;
  --gold: #39d2c0;
  --gold-soft: #e3fbf7;
  --sand: #c3b199;
  --paper: #f8f5ec;
  --line: #e2ddd2;
  --muted: #6f6a75;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(39, 33, 61, 0.12);
  --radius: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id], article[id] { scroll-margin-top: 100px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Tajawal', sans-serif;
  line-height: 1.8;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.skip-link { position: fixed; top: -100px; inset-inline-start: 1rem; z-index: 1000; background: var(--gold); color: var(--ink-deep); padding: .5rem 1rem; border-radius: 0 0 8px 8px; }
.skip-link:focus { top: 0; }
.shell { width: min(1160px, calc(100% - 2.5rem)); margin: 0 auto; }
.section { padding: 6.25rem 0; }
.section--compact { padding: 4.5rem 0; }
.eyebrow { display: inline-flex; align-items: center; gap: .55rem; color: var(--gold); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow::before { content: ''; width: 26px; height: 2px; background: currentColor; }
.section-heading { max-width: 710px; margin-bottom: 2.6rem; }
.section-heading h2 { margin: .65rem 0 .8rem; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.18; letter-spacing: 0; }
.section-heading p { margin: 0; color: var(--muted); font-size: 1.03rem; }
.site-header { position: sticky; top: 0; z-index: 40; background: rgba(248, 245, 236, .92); border-bottom: 1px solid rgba(226, 221, 210, .8); backdrop-filter: blur(16px); }
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; font-weight: 800; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; overflow: hidden; border-radius: 11px; background: var(--white); box-shadow: 5px 5px 0 var(--gold); }
.brand-mark img { width: 100%; height: 100%; display: block; object-fit: cover; }
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-size: 1rem; }
.brand-copy span { color: var(--muted); font-size: .7rem; font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 1.35rem; font-size: .87rem; font-weight: 700; }
.nav-links a { position: relative; color: #433d56; transition: color .2s ease; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--sky); }
.nav-links a::after { content: ''; position: absolute; inset-inline: 0; bottom: -.35rem; height: 2px; transform: scaleX(0); transform-origin: center; background: var(--sky); transition: transform .2s ease; }
.nav-links a:hover::after, .nav-links a:focus-visible::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: .65rem; }
.button { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .6rem 1rem; border: 1px solid transparent; border-radius: 10px; font-weight: 800; font-size: .85rem; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .icon-button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(2, 132, 199, .32); outline-offset: 2px; }
.button--primary { color: var(--white); background: var(--sky); box-shadow: 0 8px 20px rgba(2, 132, 199, .22); }
.button--primary:hover { background: var(--sky-light); box-shadow: 0 12px 24px rgba(75, 57, 239, .3); }
.button--ghost { color: var(--ink); background: transparent; border-color: var(--line); }
.button--ghost:hover { border-color: var(--sky); color: var(--sky); }
.button--gold { color: var(--ink-deep); background: var(--gold); box-shadow: 0 8px 20px rgba(217, 119, 6, .22); }
.button--gold:hover { background: #5ee0d0; }
.button--block { width: 100%; }
.icon-button { width: 42px; height: 42px; display: none; place-items: center; color: var(--ink); border: 1px solid var(--line); background: var(--white); border-radius: 10px; }

.hero { position: relative; isolation: isolate; overflow: hidden; min-height: 690px; display: flex; align-items: center; color: var(--white); background: var(--ink-deep); }
.hero::before { content: ''; position: absolute; inset: 0; z-index: -2; background: url('https://images.unsplash.com/photo-1511895426328-dc8714191300?auto=format&fit=crop&w=1900&q=85') center/cover; }
.hero::after { content: ''; position: absolute; inset: 0; z-index: -1; background: rgba(29, 23, 50, .86); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(300px, .75fr); gap: 4rem; align-items: center; padding: 7rem 0 6rem; }
.hero-content { max-width: 720px; }
.hero .eyebrow { color: var(--gold); }
.hero h1 { margin: 1rem 0 1.4rem; max-width: 700px; font-size: clamp(2.75rem, 6vw, 5.3rem); line-height: 1.12; letter-spacing: 0; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p { max-width: 650px; margin: 0; color: rgba(255,255,255,.78); font-size: clamp(1rem, 2vw, 1.16rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero-actions .button--ghost { color: var(--white); border-color: rgba(255,255,255,.35); }
.hero-actions .button--ghost:hover { border-color: var(--gold); color: var(--gold); }
.hero-note { display: flex; align-items: center; gap: .5rem; margin-top: 1.3rem; color: rgba(255,255,255,.6); font-size: .78rem; }
.hero-note i { color: var(--gold); }
.hero-panel { position: relative; padding: 1.4rem; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.17); border-radius: var(--radius); box-shadow: 0 24px 65px rgba(0,0,0,.22); backdrop-filter: blur(12px); }
.hero-panel::before { content: ''; position: absolute; width: 85px; height: 85px; top: -18px; inset-inline-end: -18px; border: 1px solid rgba(57,210,192,.5); border-radius: 50%; }
.hero-panel-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,.16); }
.hero-panel-head strong { font-size: .95rem; }
.status-dot { display: inline-flex; align-items: center; gap: .4rem; color: #b3f0d2; font-size: .75rem; }
.status-dot::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 4px rgba(74,222,128,.18); }
.hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; margin-top: 1rem; }
.hero-stat { padding: 1rem; background: rgba(255,255,255,.08); border-radius: 12px; }
.hero-stat strong { display: block; color: #fff; font-size: 1.5rem; }
.hero-stat span { color: rgba(255,255,255,.63); font-size: .75rem; }
.hero-trust { display: flex; align-items: center; gap: .7rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.68); font-size: .75rem; }
.avatar-stack { display: flex; direction: ltr; }
.avatar-stack span { width: 27px; height: 27px; display: grid; place-items: center; margin-inline-start: -7px; color: var(--ink); background: #d9d3ff; border: 2px solid var(--ink); border-radius: 50%; font-size: .62rem; font-weight: 800; }
.avatar-stack span:first-child { margin-inline-start: 0; background: var(--gold); }

.about-band { background: var(--white); border-bottom: 1px solid var(--line); }
.about-grid { display: grid; grid-template-columns: minmax(260px, .9fr) minmax(0, 1.1fr); gap: 4rem; align-items: start; }
.manifesto { position: relative; padding: 2rem; background: var(--ink); color: var(--white); border-radius: var(--radius); overflow: hidden; }
.manifesto::after { content: 'م'; position: absolute; inset-inline-end: -1.3rem; bottom: -3.3rem; color: rgba(255,255,255,.05); font-size: 16rem; line-height: 1; }
.manifesto h3 { position: relative; z-index: 1; margin: .75rem 0 1rem; font-size: 1.65rem; }
.manifesto p { position: relative; z-index: 1; margin: 0; color: rgba(255,255,255,.72); font-size: .94rem; }
.manifesto-sign { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.4rem; color: var(--gold); font-size: .8rem; font-weight: 800; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.value-card { padding: 1.35rem; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); }
.value-icon { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 1rem; color: var(--sky); background: var(--sky-soft); border-radius: 11px; }
.value-card:nth-child(2) .value-icon { color: var(--gold); background: var(--gold-soft); }
.value-card:nth-child(3) .value-icon { color: var(--ink); background: #efedf8; }
.value-card h3 { margin: 0 0 .45rem; font-size: 1rem; }
.value-card p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.75; }

.services-layout { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(330px, .88fr); gap: 3rem; align-items: start; }
.service-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: .85rem; }
.service-card { min-height: 210px; display: flex; flex-direction: column; justify-content: space-between; padding: 1.35rem; background: var(--white); border: 1px solid var(--line); border-radius: 14px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(75,57,239,.45); box-shadow: var(--shadow); }
.service-number { color: var(--sky); font-size: .75rem; font-weight: 800; }
.service-card h3 { margin: .8rem 0 .35rem; font-size: 1.03rem; line-height: 1.45; }
.service-card p { margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.75; }
.service-arrow { align-self: flex-start; display: inline-flex; align-items: center; gap: .3rem; margin-top: 1rem; color: var(--sky); font-size: .75rem; font-weight: 800; }
.request-card { position: sticky; top: 100px; padding: 1.6rem; background: var(--ink); color: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.request-card h3 { margin: 0 0 .45rem; font-size: 1.45rem; }
.request-card > p { margin: 0 0 1.3rem; color: rgba(255,255,255,.68); font-size: .8rem; }
.form-grid { display: grid; gap: .85rem; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
.field { display: grid; gap: .3rem; }
.field label { color: rgba(255,255,255,.84); font-size: .73rem; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid rgba(255,255,255,.2); border-radius: 9px; padding: .65rem .75rem; color: var(--white); background: rgba(255,255,255,.08); transition: border-color .2s ease, background .2s ease; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.4); }
.field select option { color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); background: rgba(255,255,255,.12); }
.field textarea { min-height: 94px; resize: vertical; }
.form-hint { margin: .1rem 0 0; color: rgba(255,255,255,.5); font-size: .7rem; }
.form-message { min-height: 1.2rem; margin: .35rem 0 0; font-size: .75rem; }
.form-message[data-state='error'] { color: #fecaca; }
.form-message[data-state='success'] { color: #bbf7d0; }

.articles-band { background: #f0ede4; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.article-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 14px; }
.article-image { aspect-ratio: 16 / 9; width: 100%; display: block; object-fit: cover; }
.article-body { padding: 1.1rem 1.15rem 1.2rem; }
.article-meta { color: var(--gold); font-size: .68rem; font-weight: 800; }
.article-card h3 { margin: .45rem 0 .4rem; font-size: 1rem; line-height: 1.5; }
.article-card p { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.7; }
.article-link { display: inline-flex; align-items: center; gap: .35rem; margin-top: .85rem; color: var(--sky); font-size: .76rem; font-weight: 800; }
.center-action { margin-top: 2rem; text-align: center; }

.app-banner { position: relative; overflow: hidden; color: var(--white); background: var(--ink); }
.app-banner::after { content: ''; position: absolute; width: 430px; height: 430px; inset-inline-end: -170px; top: -200px; border: 1px solid rgba(57,210,192,.3); border-radius: 50%; }
.app-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: center; }
.app-banner h2 { margin: .6rem 0 .7rem; font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.25; }
.app-banner p { max-width: 620px; margin: 0; color: rgba(255,255,255,.68); font-size: .95rem; }
.store-actions { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: .75rem; }
.store-button { min-width: 170px; display: inline-flex; align-items: center; gap: .65rem; padding: .75rem 1rem; color: var(--white); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 10px; }
.store-button:hover { background: rgba(255,255,255,.18); }
.store-button small { display: block; color: rgba(255,255,255,.6); font-size: .62rem; line-height: 1; }
.store-button strong { display: block; font-size: .87rem; line-height: 1.4; }

.site-footer { padding: 3.5rem 0 1.2rem; color: rgba(255,255,255,.68); background: #211b39; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.site-footer .brand { color: var(--white); }
.footer-about p { max-width: 330px; margin: 1rem 0 0; font-size: .8rem; line-height: 1.9; }
.footer-col h3 { margin: 0 0 .75rem; color: var(--white); font-size: .88rem; }
.footer-links { display: grid; gap: .4rem; font-size: .78rem; }
.footer-links a:hover { color: var(--gold); }
.footer-contact { display: grid; gap: .55rem; font-size: .78rem; }
.footer-contact a { display: inline-flex; align-items: center; gap: .4rem; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1.1rem; font-size: .7rem; }
.footer-bottom--compact { border: 0; padding-top: 0; }
.socials { display: flex; gap: .45rem; }
.socials a { width: 32px; height: 32px; display: grid; place-items: center; color: var(--white); border: 1px solid rgba(255,255,255,.18); border-radius: 8px; }
.socials a:hover { color: var(--gold); border-color: var(--gold); }

.page-hero { padding: 5rem 0 3.5rem; color: var(--white); background: var(--ink-deep); }
.page-hero h1 { margin: .8rem 0 .65rem; font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.15; }
.page-hero p { max-width: 680px; margin: 0; color: rgba(255,255,255,.68); }
.minimal-header { border-bottom: 1px solid var(--line); background: var(--white); }
.minimal-header .nav-wrap { min-height: 86px; }
.packages-main { background: var(--paper); }
.notice { padding: 1.8rem; background: var(--white); border: 1px solid var(--sand); border-inline-start: 5px solid var(--gold); border-radius: 14px; box-shadow: 0 10px 30px rgba(39,33,61,.06); }
.notice.is-hidden { display: none; }
.notice-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.notice-dismiss { display: grid; }
.notice h2 { display: flex; align-items: center; gap: .6rem; margin: 0 0 1rem; font-size: 1.3rem; }
.notice h2 i { color: var(--gold); }
.notice-columns { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 1.2rem; }
.notice h3 { margin: 0 0 .45rem; color: var(--ink); font-size: .82rem; }
.notice ul { margin: 0; padding-inline-start: 1.1rem; color: var(--muted); font-size: .76rem; }
.notice li + li { margin-top: .35rem; }
.activation-card { margin: 1.2rem 0 2.6rem; padding: 1.4rem; background: var(--ink); color: var(--white); border-radius: 14px; }
.activation-card h2 { margin: 0 0 .3rem; font-size: 1.25rem; }
.activation-card p { margin: 0 0 1rem; color: rgba(255,255,255,.65); font-size: .78rem; }
.activation-grid { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: .75rem; align-items: end; }
.activation-card .field label { color: rgba(255,255,255,.78); }
.activation-card .button { min-height: 46px; }
.account-message { margin: 1rem 0 0; padding: .75rem .9rem; color: #bff7ee; background: rgba(57,210,192,.12); border: 1px solid rgba(57,210,192,.35); border-radius: 8px; font-size: .78rem; }
.buyer-card { margin-top: 2.6rem; }
.buyer-grid { grid-template-columns: 1fr 1fr; }
.buyer-grid .order-summary { grid-column: 1 / -1; }
.order-summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 52px; padding: .8rem 1rem; color: var(--ink); background: rgba(255,255,255,.95); border-radius: 8px; }
.order-summary b { color: var(--sky); font-size: 1.05rem; }
.empty-plans { grid-column: 1 / -1; margin: 0; padding: 1rem; color: var(--muted); background: var(--white); border: 1px dashed var(--line); border-radius: 10px; text-align: center; }
.plans-loading { grid-column: 1 / -1; margin: 0; padding: 1rem; color: var(--muted); background: var(--white); border: 1px solid var(--line); border-radius: 10px; text-align: center; }
.packages-group + .packages-group { margin-top: 2.6rem; }
.packages-group-head { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.packages-group-head h2 { margin: 0; font-size: 1.4rem; }
.packages-group-head p { margin: 0; color: var(--muted); font-size: .78rem; }
.packages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .85rem; }
.packages-grid--three { grid-template-columns: repeat(3, 1fr); }
.package-card { position: relative; display: flex; flex-direction: column; min-height: 300px; padding: 1.3rem; background: var(--white); border: 1px solid var(--line); border-radius: 14px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.package-card:hover { transform: translateY(-4px); border-color: rgba(75,57,239,.45); box-shadow: var(--shadow); }
.package-card.is-featured, .package-card.is-selected { border-color: var(--gold); box-shadow: 0 10px 30px rgba(57,210,192,.16); }
.package-badge { position: absolute; top: 1rem; inset-inline-end: 1rem; padding: .2rem .45rem; color: #147e73; background: var(--gold-soft); border-radius: 5px; font-size: .62rem; font-weight: 800; }
.package-card h3 { margin: 0 0 .25rem; font-size: 1rem; }
.package-card .price { margin: .35rem 0 .85rem; color: var(--sky); font-size: 1.4rem; font-weight: 800; line-height: 1.3; }
.package-card .price small { color: var(--muted); font-size: .65rem; font-weight: 600; }
.package-card ul { flex: 1; margin: 0 0 1rem; padding-inline-start: 1.1rem; color: var(--muted); font-size: .75rem; }
.package-card li + li { margin-top: .35rem; }
.package-card .button { font-size: .77rem; }
.legal-strip { margin-top: 2.8rem; padding: 1rem 0 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .75rem; }
.legal-strip a { color: var(--sky); font-weight: 700; }
.legal-strip a:hover { text-decoration: underline; }
.toast { position: fixed; z-index: 80; inset-inline-start: 1rem; bottom: 1rem; max-width: min(380px, calc(100% - 2rem)); padding: .85rem 1rem; color: var(--white); background: var(--ink); border: 1px solid rgba(255,255,255,.15); border-radius: 10px; box-shadow: var(--shadow); opacity: 0; transform: translateY(10px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; font-size: .8rem; }
.toast.is-visible { opacity: 1; transform: translateY(0); }
.legal-page { min-height: 100vh; background: var(--paper); }
.legal-content { max-width: 850px; padding: 4rem 0 6rem; }
.legal-content h1 { margin: 0 0 .7rem; font-size: clamp(2rem, 4vw, 3.2rem); }
.legal-content .updated { color: var(--muted); font-size: .78rem; }
.legal-content article { margin-top: 2rem; padding: 1.5rem; background: var(--white); border: 1px solid var(--line); border-radius: 14px; }
.legal-content h2 { margin: 1.4rem 0 .5rem; font-size: 1.2rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--muted); font-size: .88rem; }
.result-page { min-height: 100vh; display: grid; place-items: center; padding: 1.5rem; background: var(--paper); }
.result-card { width: min(620px, 100%); padding: 3rem 2rem; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); text-align: center; }
.result-card .mark { width: 72px; height: 72px; display: grid; place-items: center; margin: 0 auto 1rem; color: var(--white); background: var(--sky); border-radius: 50%; font-size: 2rem; font-weight: 800; }
.result-card h1 { margin: .5rem 0; font-size: clamp(1.7rem, 4vw, 2.4rem); }
.result-card p { margin: 0; color: var(--muted); line-height: 1.9; }
.result-details { margin: 1.25rem 0; padding: .8rem 1rem; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 8px; font-size: .84rem; }
.result-card a { display: inline-flex; margin-top: 1.4rem; padding: .7rem 1.1rem; color: var(--white); background: var(--ink); border-radius: 8px; font-weight: 800; }

@media (max-width: 980px) {
  .hero-grid, .about-grid, .services-layout, .app-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero { min-height: auto; }
  .hero-grid { padding: 5.5rem 0 4.5rem; }
  .hero-panel { max-width: 520px; }
  .request-card { position: static; }
  .notice-columns { grid-template-columns: 1fr 1fr; }
  .notice-columns > :first-child { grid-column: 1 / -1; }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid--three { grid-template-columns: repeat(2, 1fr); }
  .store-actions { justify-content: flex-start; }
}
@media (max-width: 760px) {
  .shell { width: min(100% - 1.35rem, 600px); }
  .section { padding: 4.5rem 0; }
  .nav-wrap { min-height: 68px; }
  .icon-button { display: grid; }
  .nav-links { position: absolute; inset-inline: .7rem; top: calc(100% + .5rem); display: none; flex-direction: column; align-items: stretch; gap: 0; padding: .5rem; background: var(--white); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: .55rem .7rem; border-radius: 7px; }
  .nav-links a:hover { background: var(--sky-soft); }
  .nav-links a::after { display: none; }
  .nav-actions .button--ghost { display: none; }
  .brand-copy span { display: none; }
  .hero h1 { font-size: clamp(2.35rem, 12vw, 3.9rem); }
  .value-grid, .service-list, .article-grid, .footer-grid { grid-template-columns: 1fr; }
  .form-row, .activation-grid, .buyer-grid { grid-template-columns: 1fr; }
  .activation-grid .button { width: 100%; }
  .notice-columns { grid-template-columns: 1fr; }
  .notice-columns > :first-child { grid-column: auto; }
  .packages-grid, .packages-grid--three { grid-template-columns: 1fr; }
  .packages-group-head { display: block; }
  .packages-group-head p { margin-top: .35rem; }
  .footer-bottom { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
