/* ══════════════════════════════════════════════════════════════════
   NODE ACCESS — LANDING PAGE ONLY
   Loaded in addition to the shared style.css. Tokens, navbar, footer,
   buttons, forms, cards etc. all come from style.css; this file only
   holds the landing page's own section layout.
   ══════════════════════════════════════════════════════════════════ */

/* .wrap itself now lives in the global style.css so nav/footer share it too */
section { padding: 88px 0; }

.eyebrow { display: flex; align-items: center; gap: 8px; font-family: var(--ph-font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ph-text-secondary); margin-bottom: 16px; }
.eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--ph-accent-1); box-shadow: 0 0 8px var(--ph-accent-1); }

.logo { display: flex; align-items: center; gap: 10px; font-family: var(--ph-font-heading); font-weight: 700; font-size: 18px; letter-spacing: .02em; }
.logo .bars { display: flex; align-items: flex-end; gap: 2px; height: 16px; }
.logo .bars span { width: 3px; background: var(--ph-accent-1); border-radius: 1px; }
.logo .bars span:nth-child(1) { height: 6px; } .logo .bars span:nth-child(2) { height: 10px; } .logo .bars span:nth-child(3) { height: 13px; } .logo .bars span:nth-child(4) { height: 16px; }

.nav-cta { font-size: 14px; padding: 9px 18px; }

/* HERO */
.hero { padding: 96px 0 72px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(600px 400px at 75% 20%, rgba(255, 176, 32, .07), transparent 70%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; position: relative; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { font-size: clamp(34px, 4.6vw, 52px); margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--ph-accent-1); }
.hero p.sub { color: var(--ph-text-secondary); font-size: 18px; max-width: 46ch; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.hero-note { font-family: var(--ph-font-mono); font-size: 12.5px; color: var(--ph-text-secondary); }

/* MODEM PANEL */
.modem { background: var(--ph-bg-surface); border: 1px solid var(--ph-border); border-radius: 10px; padding: 22px; box-shadow: 0 20px 60px rgba(0, 0, 0, .45); }
.modem-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--ph-border); margin-bottom: 16px; }
.modem-title { font-family: var(--ph-font-mono); font-size: 12px; letter-spacing: .1em; color: var(--ph-text-secondary); }
.leds { display: flex; gap: 14px; }
.led { display: flex; align-items: center; gap: 6px; font-family: var(--ph-font-mono); font-size: 10.5px; color: var(--ph-text-secondary); }
.led i { width: 8px; height: 8px; border-radius: 50%; background: var(--ph-success); box-shadow: 0 0 6px var(--ph-success); font-style: normal; }
.led.net i { animation: blink 1.4s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }
.modem-rows { display: grid; gap: 12px; }
.mrow { display: flex; justify-content: space-between; align-items: center; font-family: var(--ph-font-mono); font-size: 13.5px; }
.mrow .k { color: var(--ph-text-secondary); }
.mrow .v { color: var(--ph-text-main); }
.mrow .v.amber { color: var(--ph-accent-1); }
.sig { display: flex; align-items: flex-end; gap: 3px; height: 14px; }
.sig span { width: 4px; background: var(--ph-success); border-radius: 1px; display: block; }
.sig span:nth-child(1) { height: 5px; } .sig span:nth-child(2) { height: 8px; } .sig span:nth-child(3) { height: 11px; } .sig span:nth-child(4) { height: 14px; }
.rotate-bar { height: 4px; background: var(--ph-border); border-radius: 2px; overflow: hidden; margin-top: 6px; }
.rotate-bar i { display: block; height: 100%; background: var(--ph-accent-1); width: 40%; transition: width 1s linear; }
.modem-foot { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--ph-border); font-family: var(--ph-font-mono); font-size: 11.5px; color: var(--ph-text-secondary); }

/* TRUST STRIP */
.trust { border-top: 1px solid var(--ph-border); border-bottom: 1px solid var(--ph-border); background: var(--ph-bg-surface-2); padding: 20px 0; }
.trust-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; font-family: var(--ph-font-mono); font-size: 13px; color: var(--ph-text-secondary); }
.trust-inner b { color: var(--ph-text-main); font-weight: 500; }

/* COMPARISON */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
@media (max-width: 760px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-card { background: var(--ph-bg-surface); border: 1px solid var(--ph-border); border-radius: 10px; padding: 30px; }
.compare-card.win { border-color: rgba(255, 176, 32, .45); }
.compare-card h3 { font-size: 19px; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.compare-card ul { list-style: none; display: grid; gap: 12px; color: var(--ph-text-secondary); font-size: 15px; margin: 0; padding: 0; }
.compare-card li { padding-left: 24px; position: relative; }
.compare-card li::before { position: absolute; left: 0; font-family: var(--ph-font-mono); }
.compare-card.win li::before { content: '+'; color: var(--ph-success); }
.compare-card.lose li::before { content: '−'; color: var(--ph-danger); }
.tag { font-family: var(--ph-font-mono); font-size: 10.5px; padding: 3px 8px; border-radius: 4px; letter-spacing: .08em; }
.tag.a { background: rgba(255, 176, 32, .12); color: var(--ph-accent-1); }
.tag.b { background: rgba(255, 92, 92, .1); color: var(--ph-danger); }
h2 { font-size: clamp(26px, 3.4vw, 36px); }
.sec-sub { color: var(--ph-text-secondary); max-width: 56ch; margin-top: 12px; }

/* PRICING */
#pricing { background: var(--ph-bg-surface-2); border-top: 1px solid var(--ph-border); border-bottom: 1px solid var(--ph-border); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 40px; align-items: start; }
@media (max-width: 860px) { .pricing-grid { grid-template-columns: 1fr; } }
.countries { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.country { display: flex; align-items: center; gap: 9px; background: var(--ph-bg-surface); border: 1px solid var(--ph-border); border-radius: 8px; padding: 11px 13px; cursor: pointer; font-size: 14px; transition: border-color .15s, background .15s; text-align: left; color: var(--ph-text-main); font-family: inherit; }
.country:hover { border-color: var(--ph-text-secondary); }
.country.active { border-color: var(--ph-accent-1); background: rgba(255, 176, 32, .07); }
.country:focus-visible { outline: 2px solid var(--ph-accent-1); outline-offset: 2px; }
.country .flag { font-size: 18px; }
.country .pop { color: var(--ph-accent-1); font-size: 12px; margin-left: 2px; }
.country .p { margin-left: auto; font-family: var(--ph-font-mono); font-size: 12px; color: var(--ph-text-secondary); }
.plan-badge { display: inline-block; font-family: var(--ph-font-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: #0B1220; background: var(--ph-accent-1); padding: 4px 10px; border-radius: 5px; margin-bottom: 14px; }
.plan-card { background: var(--ph-bg-surface); border: 1px solid var(--ph-accent-1); border-radius: 10px; padding: 32px; position: sticky; top: 88px; }
.plan-card .loc { display: flex; align-items: center; gap: 10px; font-family: var(--ph-font-heading); font-size: 20px; font-weight: 600; margin-bottom: 6px; }
.plan-card .carrier { font-family: var(--ph-font-mono); font-size: 12.5px; color: var(--ph-text-secondary); margin-bottom: 22px; }
.price { font-family: var(--ph-font-heading); font-size: 44px; font-weight: 700; margin-bottom: 2px; }
.price small { font-size: 16px; color: var(--ph-text-secondary); font-weight: 500; }
.plan-feats { list-style: none; display: grid; gap: 11px; margin: 24px 0 28px; padding: 0; font-size: 14.5px; color: var(--ph-text-secondary); }
.plan-feats li { padding-left: 22px; position: relative; }
.plan-feats li::before { content: '✓'; position: absolute; left: 0; color: var(--ph-success); font-family: var(--ph-font-mono); }
.plan-card .btn { width: 100%; text-align: center; }
.plan-note { text-align: center; margin-top: 12px; font-family: var(--ph-font-mono); font-size: 12px; color: var(--ph-text-secondary); }

/* FEATURES */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
@media (max-width: 860px) { .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .feat-grid { grid-template-columns: 1fr; } }
.feat { background: var(--ph-bg-surface); border: 1px solid var(--ph-border); border-radius: 10px; padding: 26px; }
.feat .ic { width: 38px; height: 38px; border-radius: 8px; background: rgba(255, 176, 32, .1); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feat .ic svg { width: 19px; height: 19px; stroke: var(--ph-accent-1); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feat h3 { font-size: 16.5px; margin-bottom: 8px; }
.feat p { font-size: 14px; color: var(--ph-text-secondary); }

/* FAQ */
.faq-list { margin-top: 36px; display: grid; gap: 12px; max-width: 760px; }
.faq { background: var(--ph-bg-surface); border: 1px solid var(--ph-border); border-radius: 10px; overflow: hidden; }
.faq summary { padding: 18px 22px; cursor: pointer; font-weight: 600; font-size: 15.5px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-family: var(--ph-font-mono); color: var(--ph-accent-1); font-size: 18px; flex-shrink: 0; }
.faq[open] summary::after { content: '−'; }
.faq .a { padding: 0 22px 20px; color: var(--ph-text-secondary); font-size: 14.5px; }

/* GUIDES */
.guides-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
@media (max-width: 820px) { .guides-grid { grid-template-columns: 1fr; } }
.guide { background: var(--ph-bg-surface); border: 1px solid var(--ph-border); border-radius: 10px; padding: 24px; transition: border-color .15s; display: block; }
.guide:hover { border-color: var(--ph-accent-1); }
.guide .cat { font-family: var(--ph-font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ph-accent-1); margin-bottom: 12px; }
.guide h3 { font-size: 16.5px; margin-bottom: 10px; }
.guide p { font-size: 13.5px; color: var(--ph-text-secondary); }

/* CTA */
.cta-final { text-align: center; }
.cta-final h2 { margin-bottom: 14px; }
.cta-final p { color: var(--ph-text-secondary); margin-bottom: 30px; }

.status-dot { display: inline-flex; align-items: center; gap: 7px; }
.status-dot i { width: 7px; height: 7px; border-radius: 50%; background: var(--ph-success); box-shadow: 0 0 6px var(--ph-success); font-style: normal; }

.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-grid h4 { font-family: var(--ph-font-mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ph-text-secondary); margin-bottom: 14px; }
.foot-grid ul { list-style: none; display: grid; gap: 9px; font-size: 14px; color: var(--ph-text-secondary); margin: 0; padding: 0; }
.foot-desc { font-size: 13.5px; color: var(--ph-text-secondary); max-width: 32ch; margin-top: 12px; }
.foot-bottom { border-top: 1px solid var(--ph-border); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-family: var(--ph-font-mono); font-size: 12px; color: var(--ph-text-secondary); }
