/* ==========================================================================
   RealPhonePool — visual system
   Palette and lockup derived from mark 03 "Number Shoal".
   Type: system serif for display, condensed grotesk for structure.
   ========================================================================== */

:root {
  --ink:        #08100F;
  --ink-1:      #0B1517;
  --ink-2:      #0E1B1D;
  --ink-3:      #132325;
  --ink-4:      #1A2C2E;

  --paper:      #ECEFEC;
  --paper-dim:  #C3CDCB;
  --soft:       #8A9B9B;
  --soft-2:     #617375;

  --acc:        #12857A;
  --acc-lift:   #2CB0A0;
  --acc-deep:   #0C5B54;

  --brass:      #C6A972;
  --brass-lift: #E3CB9B;
  --brass-dim:  rgba(198, 169, 114, .34);

  --line:       rgba(236, 239, 236, .085);
  --line-2:     rgba(236, 239, 236, .16);
  --line-3:     rgba(236, 239, 236, .30);

  --mk-ink:     #ECEFEC;
  --mk-soft:    #8A9B9B;
  --mk-acc:     #2CB0A0;

  --serif: "Constantia", "Charter", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --grotesk: "Bahnschrift", "DIN Alternate", "Avenir Next Condensed", "Franklin Gothic Medium", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --text: "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono: "Cascadia Mono", "Consolas", "SF Mono", "Roboto Mono", monospace;

  --shell: 1320px;
  --rail: 268px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }

/* The `hidden` attribute must win. Any explicit `display` on a class (grid,
   flex, block) silently overrides the UA's [hidden]{display:none}, which
   leaves "hidden" panels taking up space. */
[hidden] { display: none !important; }

html, body { height: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--text);
  font-size: 15px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1100px 620px at 12% -8%, rgba(18, 133, 122, .16), transparent 62%),
    radial-gradient(900px 700px at 108% 18%, rgba(198, 169, 114, .07), transparent 60%),
    radial-gradient(760px 520px at 50% 118%, rgba(18, 133, 122, .09), transparent 66%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .12;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='180' height='180' filter='url(%23n)' opacity='.55'/></svg>");
}

::selection { background: rgba(44, 176, 160, .28); color: #fff; }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select { font: inherit; color: inherit; }
img { max-width: 100%; display: block; }

:focus-visible {
  outline: 1px solid var(--acc-lift);
  outline-offset: 3px;
}

/* ---------- primitives ------------------------------------------------- */

.label {
  font-family: var(--grotesk);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--soft);
}

.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -.012em; }

.rule {
  height: 1px;
  background: linear-gradient(90deg, var(--line-2), transparent 72%);
  border: 0;
  margin: 0;
}

.mark { display: block; width: 100%; height: 100%; }
.brand-mark { display: block; flex: none; }

/* wordmark lockup ------------------------------------------------------- */
.wordmark {
  font-family: var(--grotesk);
  font-stretch: 87.5%;
  letter-spacing: -.012em;
  line-height: 1;
  white-space: nowrap;
}
.wordmark i { font-style: normal; color: var(--soft); font-weight: 400; }
.wordmark b { color: var(--paper); font-weight: 700; }
.wordmark em { font-style: normal; color: var(--acc-lift); font-weight: 700; }

/* ---------- shell ------------------------------------------------------ */

.shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: var(--rail) minmax(0, 1fr);
  min-height: 100vh;
}

/* ---------- rail ------------------------------------------------------- */

.rail {
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 30px 0 22px;
  background: linear-gradient(180deg, rgba(11, 21, 23, .92), rgba(8, 16, 15, .96));
  border-right: 1px solid var(--line);
  backdrop-filter: blur(6px);
}

.rail-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 26px 26px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
  width: 100%;
  text-align: left;
}
.rail-brand .brand-mark { width: 34px; height: 34px; flex: none; }
.rail-brand .wordmark { font-size: 20px; }
.rail-brand small {
  display: block;
  font-family: var(--grotesk);
  font-size: 8.5px;
  letter-spacing: .34em;
  color: var(--soft-2);
  margin-top: 5px;
  font-stretch: 87.5%;
}

.rail-nav { display: flex; flex-direction: column; gap: 1px; padding: 0 14px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--line-2) transparent; }
.rail-nav::-webkit-scrollbar { width: 4px; }
.rail-nav::-webkit-scrollbar-track { background: transparent; }
.rail-nav::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 2px; }

.rail-nav > button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px 10px 16px;
  font-family: var(--grotesk);
  font-stretch: 87.5%;
  font-size: 13px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--paper-dim);
  border-radius: 2px;
  transition: color .18s var(--ease), background .18s var(--ease);
}
.rail-nav > button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 2px;
  height: 0;
  background: var(--acc-lift);
  transition: height .22s var(--ease);
}
.rail-nav > button .nav-glyph {
  width: 15px;
  height: 15px;
  flex: none;
  color: currentColor;
  opacity: .85;
}
.rail-nav > button:hover { color: var(--paper); background: rgba(236, 239, 236, .05); }
.rail-nav > button.active { color: var(--paper); background: rgba(44, 176, 160, .07); }
.rail-nav > button.active::before { height: 20px; }
.rail-nav > button.active .nav-glyph { opacity: 1; color: var(--acc-lift); }
.rail-nav > button[disabled] { color: var(--soft-2); cursor: not-allowed; opacity: .55; }
.rail-nav > button[disabled]:hover { background: none; }

.rail-foot { margin-top: auto; padding: 20px 20px 0; }

.support-card {
  display: grid;
  grid-template-columns: 34px 1fr 14px;
  align-items: center;
  gap: 13px;
  width: 100%;
  text-align: left;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: linear-gradient(160deg, rgba(19, 35, 37, .8), rgba(11, 21, 23, .5));
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.support-card:hover, .support-card.active { border-color: var(--brass-dim); background: rgba(198, 169, 114, .06); }
/* icon in a framed tile so the card reads as a considered object, not a stray glyph */
.support-card .support-glyph {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--brass-dim);
  border-radius: 2px;
  background: rgba(198, 169, 114, .07);
  color: var(--brass);
}
.support-card .support-glyph svg { width: 17px; height: 17px; }
.support-card small {
  display: block;
  font-family: var(--grotesk);
  font-size: 8.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--soft-2);
}
.support-card strong {
  display: block;
  font-family: var(--grotesk);
  font-stretch: 87.5%;
  font-size: 14.5px;
  letter-spacing: .06em;
  color: var(--paper);
  margin: 3px 0 2px;
}
.support-card > span > span { display: block; font-size: 11.5px; line-height: 1.35; color: var(--soft); }

/* ---------- live chat --------------------------------------------------- */

.chat { position: fixed; right: 24px; bottom: 24px; z-index: 70; display: grid; justify-items: end; gap: 12px; }

.chat-bubble {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #F2FBF9;
  background: linear-gradient(180deg, var(--acc), var(--acc-deep));
  border: 1px solid rgba(44, 176, 160, .5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), 0 14px 34px rgba(5, 40, 37, .55);
  position: relative;
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.chat-bubble:hover { transform: translateY(-2px); background: linear-gradient(180deg, var(--acc-lift), var(--acc)); }
.chat-bubble i {
  position: absolute;
  top: 3px; right: 3px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--brass);
  border: 2px solid #08100F;
}

.chat-panel {
  width: min(392px, calc(100vw - 32px));
  display: flex;
  flex-direction: column;
  height: min(620px, calc(100vh - 108px));
  max-height: calc(100vh - 108px);
  border: 1px solid var(--line-2);
  border-radius: 3px;
  overflow: hidden;
  background: linear-gradient(180deg, #10201F, #0A1415);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .62);
  animation: rise .3s var(--ease) both;
}
.chat-panel > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 16, 15, .55);
}
.chat-panel > header strong {
  display: block;
  font-family: var(--grotesk);
  font-stretch: 87.5%;
  font-size: 14.5px;
  letter-spacing: .05em;
}
.chat-panel > header small { display: block; margin-top: 2px; font-size: 11.5px; color: var(--acc-lift); }
.chat-head-actions { display: flex; gap: 6px; flex: none; }
.chat-panel > header button {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--soft);
  flex: none;
  transition: color .18s var(--ease), border-color .18s var(--ease), transform .22s var(--ease);
}
.chat-panel > header button:hover { color: var(--paper); border-color: var(--line-2); }
/* chevron points up to grow the panel, down to shrink it back */
#chatExpand svg { transform: rotate(-90deg); transition: transform .24s var(--ease); }
.chat-panel.tall #chatExpand svg { transform: rotate(90deg); }
/* max-height must move too, or it clamps the expand to the normal height */
.chat-panel.tall { height: calc(100vh - 84px); max-height: calc(100vh - 84px); }

.chat-body {
  flex: 1;
  /* min-height:0 lets the flex item actually shrink inside the panel instead of
     overflowing it; the panel height is the constraint, not the content. */
  min-height: 0;
  overflow-y: auto;
  padding: 16px;
  display: grid;
  gap: 10px;
  align-content: start;
  scrollbar-width: thin;
  scrollbar-color: var(--line-2) transparent;
}
/* wide enough to actually grab and drag */
.chat-body::-webkit-scrollbar { width: 9px; }
.chat-body::-webkit-scrollbar-track { background: rgba(236, 239, 236, .03); }
.chat-body::-webkit-scrollbar-thumb { background: var(--line-3); border-radius: 5px; border: 2px solid transparent; background-clip: content-box; }
.chat-body::-webkit-scrollbar-thumb:hover { background: var(--soft-2); background-clip: content-box; }

/* Replaces the identity fields once the contact is on file. */
.chat-contact-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(236, 239, 236, .03);
  font-size: 12.5px;
  color: var(--soft);
}
.chat-contact-note b { color: var(--acc-lift); font-weight: 600; }
.chat-contact-note button {
  font-family: var(--grotesk);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--soft-2);
  flex: none;
  transition: color .18s var(--ease);
}
.chat-contact-note button:hover { color: var(--paper); }
.chat-welcome {
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-left: 2px solid var(--brass-dim);
  border-radius: 2px;
  background: rgba(198, 169, 114, .05);
}
.chat-welcome strong { display: block; font-family: var(--serif); font-weight: 400; font-size: 16.5px; letter-spacing: -.012em; margin-bottom: 3px; }
.chat-welcome span { font-size: 12.5px; line-height: 1.45; color: var(--soft); }

.chat-message { max-width: 84%; padding: 10px 13px; border-radius: 3px; }
.chat-message p { margin: 0; font-size: 13.5px; line-height: 1.5; overflow-wrap: anywhere; }
.chat-message time { display: block; margin-top: 5px; font-family: var(--grotesk); font-size: 9px; letter-spacing: .16em; opacity: .6; }
.chat-message.customer { justify-self: end; background: linear-gradient(170deg, var(--acc), var(--acc-deep)); color: #F2FBF9; border-bottom-right-radius: 1px; }
.chat-message.admin { justify-self: start; background: rgba(236, 239, 236, .06); border: 1px solid var(--line); border-bottom-left-radius: 1px; }

.chat-panel form { flex: none; border-top: 1px solid var(--line); padding: 12px 14px 14px; display: grid; gap: 9px; }
.chat-identity { display: grid; gap: 7px; }
.chat-identity input, .chat-composer textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(8, 16, 15, .7);
  outline: none;
  font-family: var(--text);
  font-size: 13.5px;
  color: var(--paper);
}
.chat-identity input:focus, .chat-composer textarea:focus { border-color: var(--acc); }
.chat-identity small { font-size: 11px; color: var(--soft-2); }
.chat-composer { display: grid; grid-template-columns: minmax(0, 1fr) 42px; gap: 8px; align-items: end; }
.chat-composer textarea { resize: none; min-height: 42px; max-height: 110px; line-height: 1.45; }
.chat-composer button {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 2px;
  color: #F2FBF9;
  background: linear-gradient(180deg, var(--acc), var(--acc-deep));
  border: 1px solid rgba(44, 176, 160, .5);
  transition: background .2s var(--ease), opacity .2s var(--ease);
}
.chat-composer button:hover:not(:disabled) { background: linear-gradient(180deg, var(--acc-lift), var(--acc)); }
.chat-composer button:disabled { opacity: .4; cursor: not-allowed; }
.chat-error { font-size: 12.5px; color: #E8A0A0; }

@media (max-width: 620px) {
  .chat { right: 14px; bottom: 14px; }
  .chat-panel { max-height: calc(100vh - 110px); }
}

/* ---------- topbar ----------------------------------------------------- */

.workspace { min-width: 0; display: flex; flex-direction: column; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 20px 52px;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 16, 15, .78);
  backdrop-filter: blur(14px) saturate(130%);
}

/* Reads as a button, not three stray hairlines: bordered chip, always labelled,
   44px tall so it is a real tap target. */
.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--line-2);
  border-radius: 2px;
  background: rgba(236, 239, 236, .04);
  font-family: var(--grotesk);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--paper-dim);
  flex: none;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.menu-toggle:hover { border-color: var(--line-3); background: rgba(236, 239, 236, .08); }
.menu-toggle span.bars { display: grid; gap: 4px; }
.menu-toggle span.bars i { display: block; width: 17px; height: 1.5px; background: currentColor; border-radius: 1px; }

.page-identity { display: flex; align-items: center; gap: 15px; min-width: 0; margin-right: auto; }
.page-identity .brand-mark { width: 32px; height: 32px; flex: none; opacity: .9; }
.page-identity .label { display: block; margin-bottom: 2px; font-size: 9.5px; }
.page-identity h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -.015em;
  line-height: 1.14;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topup {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 16px;
  border: 1px solid var(--brass-dim);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(198, 169, 114, .1), rgba(198, 169, 114, .03));
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.topup:hover { border-color: rgba(198, 169, 114, .68); background: rgba(198, 169, 114, .1); }
.topup strong {
  font-family: var(--grotesk);
  font-stretch: 87.5%;
  font-size: 12.5px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--brass-lift);
}
.coin-strip { display: flex; }
.coin-strip i {
  width: 19px; height: 19px;
  margin-left: -5px;
  border-radius: 50%;
  border: 1px solid rgba(8, 16, 15, .85);
  display: grid; place-items: center;
}
.coin-strip i:first-child { margin-left: 0; }

.account { position: relative; }
.account > button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px 6px 6px;
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: border-color .2s var(--ease);
}
.account > button:hover { border-color: var(--line-2); }
.account .brand-mark { width: 24px; height: 24px; }
.account .caret { display: grid; gap: 3px; }
.account .caret i { display: block; width: 11px; height: 1px; background: var(--soft); }

.account-pop {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: 268px;
  padding: 16px;
  border: 1px solid var(--line-2);
  border-radius: 3px;
  background: linear-gradient(170deg, #10201F, #0A1415);
  box-shadow: 0 26px 60px rgba(0, 0, 0, .62);
}
.account-pop .who { display: flex; gap: 12px; align-items: center; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.account-pop .who .brand-mark { width: 30px; height: 30px; flex: none; }
.account-pop .who strong { display: block; font-family: var(--grotesk); font-stretch: 87.5%; font-size: 14px; letter-spacing: .03em; }
.account-pop .who small { color: var(--soft); font-size: 11.5px; }
.account-pop nav { display: grid; padding-top: 8px; }
.account-pop nav button {
  text-align: left;
  padding: 9px 8px;
  border-radius: 2px;
  font-family: var(--grotesk);
  font-size: 12.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--soft);
  transition: color .16s var(--ease), background .16s var(--ease);
}
.account-pop nav button:hover { color: var(--paper); background: rgba(236, 239, 236, .04); }

/* ---------- content ---------------------------------------------------- */

.content {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 54px 52px 110px;
}

.view { display: none; }
.view.active { display: block; animation: rise .42s var(--ease) both; }

@keyframes rise {
  from { opacity: 0; transform: translateY(9px); }
  to { opacity: 1; transform: none; }
}

/* section chrome -------------------------------------------------------- */

.section { margin-top: 84px; }
.section:first-child { margin-top: 0; }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 30px; }
.section-head .index {
  font-family: var(--grotesk);
  font-size: 10.5px;
  letter-spacing: .3em;
  color: var(--brass);
  display: block;
  margin-bottom: 12px;
}
.section-head h2, .section-head h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 33px;
  line-height: 1.15;
  letter-spacing: -.017em;
}
.section-head p { margin: 11px 0 0; color: var(--soft); max-width: 62ch; }

.hairline {
  height: 1px;
  background: linear-gradient(90deg, var(--line-2) 0%, var(--line) 40%, transparent 88%);
  margin: 0 0 30px;
}

/* buttons --------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 2px;
  font-family: var(--grotesk);
  font-stretch: 87.5%;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: transform .18s var(--ease), background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(180deg, var(--acc), var(--acc-deep));
  color: #F2FBF9;
  border: 1px solid rgba(44, 176, 160, .5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), 0 10px 26px rgba(9, 60, 55, .4);
}
.btn-primary:hover { background: linear-gradient(180deg, var(--acc-lift), var(--acc)); }

.btn-ghost {
  border: 1px solid var(--line-2);
  color: var(--paper-dim);
}
.btn-ghost:hover { border-color: var(--line-3); color: var(--paper); background: rgba(236, 239, 236, .035); }

.btn-brass {
  border: 1px solid var(--brass-dim);
  color: var(--brass-lift);
  background: rgba(198, 169, 114, .05);
}
.btn-brass:hover { border-color: rgba(198, 169, 114, .7); background: rgba(198, 169, 114, .12); }

/* Text links are led by a drawn hairline that extends on hover — no arrowheads,
   no glyph fonts, so the mark stays crisp at any size. */
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--grotesk);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--acc-lift);
  padding: 2px 0;
}
.btn-link .lead {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: .55;
  transition: width .26s var(--ease), opacity .26s var(--ease);
}
.btn-link:hover .lead { width: 40px; opacity: 1; }

/* drawn plus, becomes a cross when the disclosure opens */
.plus { position: relative; display: block; width: 12px; height: 12px; flex: none; }
.plus::before, .plus::after {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 12px; height: 1px;
  background: currentColor;
  transition: transform .26s var(--ease);
}
.plus::after { transform: rotate(90deg); }

.chev { display: grid; place-items: center; color: var(--soft-2); transition: transform .2s var(--ease), color .2s var(--ease); }
.support-card:hover .chev { transform: translateX(2px); color: var(--brass); }

.field-glyph { display: grid; place-items: center; color: var(--soft-2); flex: none; }
.field:focus-within .field-glyph { color: var(--acc-lift); }

.pc-sign { position: relative; display: block; width: 11px; height: 11px; }
.pc-sign::before { content: ""; position: absolute; left: 0; top: 50%; width: 11px; height: 1px; background: currentColor; }
.pc-sign.plus-sign::after { content: ""; position: absolute; left: 50%; top: 0; width: 1px; height: 11px; background: currentColor; }

/* ---------- hero ------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 74px 60px 66px;
  background:
    linear-gradient(122deg, rgba(19, 35, 37, .96) 0%, rgba(11, 21, 23, .9) 46%, rgba(8, 16, 15, .96) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass-dim) 22%, rgba(44, 176, 160, .5) 58%, transparent);
}
.hero-watermark {
  position: absolute;
  right: -46px;
  top: 50%;
  translate: 0 -50%;
  width: 430px;
  height: 430px;
  opacity: .10;
  pointer-events: none;
  --mk-ink: #ECEFEC;
  --mk-acc: #2CB0A0;
}
.hero-inner { position: relative; max-width: 60ch; }
.hero h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.06;
  letter-spacing: -.026em;
}
.hero h2 b { font-weight: 400; color: var(--paper); }
.hero h2 em { font-style: italic; color: var(--acc-lift); }
.hero p { color: var(--paper-dim); font-size: 16.5px; max-width: 58ch; }

.hero-services { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hero-services span, .hero-services .hero-chip-link {
  padding: 7px 15px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: var(--grotesk);
  font-size: 11px;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--paper-dim);
  background: rgba(236, 239, 236, .022);
}
/* the hardware chip leads to the device page, so it carries the brass cue */
.hero-services .hero-chip-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-color: var(--brass-dim);
  color: var(--brass-lift);
  background: rgba(198, 169, 114, .06);
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}
.hero-services .hero-chip-link:hover {
  border-color: rgba(198, 169, 114, .7);
  background: rgba(198, 169, 114, .13);
  transform: translateY(-1px);
}

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

/* ---------- ledger metrics --------------------------------------------- */

.ledger {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 3px;
  margin-top: 26px;
  background: rgba(11, 21, 23, .5);
}
.ledger > div {
  padding: 28px 30px;
  border-right: 1px solid var(--line);
}
.ledger > div:last-child { border-right: 0; }
.ledger strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 39px;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--paper);
}
.ledger span {
  display: block;
  margin-top: 11px;
  font-family: var(--grotesk);
  font-size: 10px;
  letter-spacing: .21em;
  text-transform: uppercase;
  color: var(--soft);
}
.ledger > div::after {
  content: "";
  display: block;
  width: 26px;
  height: 1px;
  margin-top: 16px;
  background: var(--brass-dim);
}

/* ---------- lockbar ---------------------------------------------------- */

.lockbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 26px;
  padding: 22px 30px;
  border: 1px solid var(--line);
  border-left: 2px solid var(--brass-dim);
  border-radius: 2px;
  background: linear-gradient(100deg, rgba(198, 169, 114, .05), rgba(11, 21, 23, .3) 55%);
}
.lockbar p { margin: 0; color: var(--paper-dim); max-width: 64ch; }
.lockbar .actions { display: flex; gap: 10px; }

/* ---------- feature cards ---------------------------------------------- */

.cards { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 32px 30px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: linear-gradient(168deg, rgba(19, 35, 37, .62), rgba(10, 19, 20, .62));
  transition: border-color .26s var(--ease), transform .26s var(--ease), background .26s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  height: 1px;
  width: 42px;
  background: var(--brass);
  transition: width .38s var(--ease);
}
.card:hover { border-color: var(--line-2); transform: translateY(-3px); background: linear-gradient(168deg, rgba(24, 43, 45, .7), rgba(11, 21, 23, .7)); }
.card:hover::before { width: 100%; background: linear-gradient(90deg, var(--brass), rgba(44, 176, 160, .8) 70%, transparent); }
.card > .label { margin-bottom: 16px; }
.card strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 23px;
  line-height: 1.24;
  letter-spacing: -.014em;
  color: var(--paper);
}
.card p { color: var(--soft); margin: 12px 0 26px; font-size: 14.5px; }
.card .btn-link { margin-top: auto; align-self: flex-start; }
.card.muted { opacity: .72; }
.card.muted:hover { transform: none; }

/* ---------- reviews ---------------------------------------------------- */

.quotes { display: grid; gap: 1px; grid-template-columns: repeat(3, 1fr); background: var(--line); border: 1px solid var(--line); border-radius: 3px; overflow: hidden; }
.quote { padding: 32px 30px; background: var(--ink-1); position: relative; transition: background .24s var(--ease); }
.quote:hover { background: var(--ink-2); }
.quote .stars { color: var(--brass); letter-spacing: .22em; font-size: 12px; }
.quote strong {
  display: block;
  margin: 15px 0 12px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: -.012em;
}
.quote p { margin: 0; color: var(--soft); font-size: 14px; }
.quote small {
  display: block;
  margin-top: 20px;
  font-family: var(--grotesk);
  font-size: 9.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--soft-2);
}

/* ---------- inventory / country grid ----------------------------------- */

.modem-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 26px;
}
.modem-divider::before, .modem-divider::after { content: ""; height: 1px; background: var(--line-2); flex: 1; }
.modem-divider span {
  font-family: var(--grotesk);
  font-size: 10px;
  letter-spacing: .24em;
  color: var(--brass);
  text-align: center;
}

.filters { display: flex; gap: 10px; flex: none; }
.field {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(8, 16, 15, .6);
  transition: border-color .2s var(--ease);
}
.field:focus-within { border-color: var(--acc); }
.field span { color: var(--soft-2); }
.field input, .field select {
  background: none;
  border: 0;
  outline: none;
  font-size: 13.5px;
  color: var(--paper);
  min-width: 150px;
}
.field select { min-width: 130px; cursor: pointer; }
.field select option { background: #0E1B1D; color: var(--paper); }

.country-grid { display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(268px, 1fr)); }

.country {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(11, 21, 23, .48);
  text-align: left;
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}
.country:not(.out):hover { border-color: rgba(44, 176, 160, .42); background: rgba(18, 133, 122, .07); transform: translateY(-2px); }
.iso {
  display: block;
  width: 42px;
  height: 30px;
  border: 1px solid var(--line-2);
  border-radius: 2px;
  overflow: hidden;
  background: rgba(8, 16, 15, .5);
  flex: none;
}
.iso .fi {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 1;
  background-size: cover;
  background-position: 50%;
}
.iso .fi::before { content: none; }
.country.out .iso { filter: grayscale(1) brightness(.72); border-color: var(--line); }
.country .who strong { display: block; font-size: 14.5px; font-weight: 600; letter-spacing: .005em; }
.country .who small { display: block; color: var(--soft-2); font-size: 11px; font-family: var(--grotesk); letter-spacing: .13em; text-transform: uppercase; margin-top: 2px; }
.country .cost { text-align: right; }
.country .cost small { display: block; font-family: var(--grotesk); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--soft-2); }
.country .cost strong { font-family: var(--serif); font-size: 20px; font-weight: 400; letter-spacing: -.02em; }
.country .cost em { font-style: normal; color: var(--soft); font-size: 12px; }
.country .state {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-family: var(--grotesk);
  font-size: 9.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--acc-lift);
}
.country .state i { width: 5px; height: 5px; border-radius: 50%; background: var(--acc-lift); box-shadow: 0 0 0 3px rgba(44, 176, 160, .15); }
.country.out { cursor: not-allowed; opacity: .62; }
.country.out .state { color: var(--soft-2); }
.country.out .state i { background: var(--soft-2); box-shadow: none; }

/* ---------- number cards (modem 2) ------------------------------------- */

.number-grid { display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.number-card {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(11, 21, 23, .48);
  text-align: left;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.number-card:hover { border-color: rgba(44, 176, 160, .42); transform: translateY(-2px); }
.number-card strong { display: block; font-family: var(--mono); font-size: 15px; letter-spacing: .02em; }
.number-card small { display: block; color: var(--soft-2); font-size: 11.5px; }
.number-card b { display: block; margin-top: 5px; font-family: var(--grotesk); font-size: 9.5px; letter-spacing: .15em; text-transform: uppercase; color: var(--acc-lift); font-weight: 500; }

/* ---------- verification ----------------------------------------------- */

.split-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, .8fr);
  gap: 46px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 52px 50px;
  background: linear-gradient(122deg, rgba(19, 35, 37, .9), rgba(8, 16, 15, .92));
  position: relative;
  overflow: hidden;
}
.split-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(44, 176, 160, .55) 40%, var(--brass-dim) 78%, transparent);
}
.split-hero h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.08;
  letter-spacing: -.024em;
}
.split-hero p { color: var(--paper-dim); }
.note {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 8px;
  padding: 10px 16px;
  border: 1px solid var(--brass-dim);
  border-radius: 2px;
  background: rgba(198, 169, 114, .05);
  color: var(--brass-lift);
  font-size: 13.5px;
}
.note::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--brass); }

.stat-stack { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 3px; overflow: hidden; }
.stat-stack > div { padding: 24px 26px; background: rgba(11, 21, 23, .75); }
.stat-stack strong { display: block; font-family: var(--serif); font-size: 34px; font-weight: 400; letter-spacing: -.028em; }
.stat-stack span { display: block; margin-top: 6px; font-family: var(--grotesk); font-size: 10px; letter-spacing: .21em; text-transform: uppercase; color: var(--soft); }

.service-grid { display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(262px, 1fr)); }
.service {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(11, 21, 23, .5);
  text-align: left;
  transition: border-color .22s var(--ease), transform .22s var(--ease), background .22s var(--ease);
}
.service:hover { border-color: rgba(44, 176, 160, .4); transform: translateY(-2px); background: rgba(18, 133, 122, .06); }
.service-top { display: flex; align-items: flex-start; gap: 13px; }
.service-dots { display: flex; flex: none; }
.service-dots i {
  position: relative;
  width: 34px; height: 34px;
  margin-left: -10px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: #F4F6F4;
  display: grid; place-items: center;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .35);
}
.service-dots i:first-child { margin-left: 0; }
.service-dots i img { width: 22px; height: 22px; object-fit: contain; }

/* original coin artwork */
.coin-art { width: 100%; height: 100%; object-fit: contain; }
.coin-strip i { background: #F4F6F4; padding: 2px; overflow: hidden; }
.coin-strip i.coin-btc, .coin-strip i.coin-xmr { padding: 0; }
.service-top strong { flex: 1; font-size: 14.5px; font-weight: 600; line-height: 1.3; }
.service-top em {
  font-style: normal;
  flex: none;
  font-family: var(--grotesk);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--soft-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 9px;
}
.service-bottom { display: flex; justify-content: space-between; gap: 14px; border-top: 1px solid var(--line); padding-top: 14px; }
.service-bottom small { display: block; font-family: var(--grotesk); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--soft-2); }
.service-bottom b { font-family: var(--serif); font-size: 19px; font-weight: 400; letter-spacing: -.02em; }
.service-bottom > span:last-child { text-align: right; }
.service-bottom > span:last-child b { font-family: var(--grotesk); font-size: 13px; color: var(--paper-dim); letter-spacing: .02em; }

.service.view-all {
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  border-style: dashed;
  border-color: var(--line-2);
  background: rgba(198, 169, 114, .035);
}
.service.view-all::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--brass);
  transition: width .3s var(--ease);
}
.service.view-all:hover::before { width: 56px; }
.service.view-all strong { font-family: var(--serif); font-size: 20px; font-weight: 400; }
.service.view-all span { color: var(--soft); font-size: 13.5px; }

/* ---------- numbered steps --------------------------------------------- */

.steps { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.step { padding-top: 22px; border-top: 1px solid var(--line-2); }
.step b {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--brass);
  line-height: 1;
  margin-bottom: 14px;
}
.step strong { display: block; font-size: 15.5px; font-weight: 600; margin-bottom: 8px; letter-spacing: .005em; }
.step h4 { margin: 0 0 8px; font-family: var(--serif); font-weight: 400; font-size: 20px; letter-spacing: -.012em; }
.step p { margin: 0; color: var(--soft); font-size: 14px; }

/* ---------- trust strip ------------------------------------------------ */

.strip { display: grid; gap: 1px; grid-template-columns: repeat(auto-fit, minmax(196px, 1fr)); background: var(--line); border: 1px solid var(--line); border-radius: 3px; overflow: hidden; }
.strip article { display: flex; gap: 14px; align-items: flex-start; padding: 24px 24px; background: var(--ink-1); }
.strip .glyph { width: 22px; height: 22px; flex: none; color: var(--acc-lift); margin-top: 2px; }
.strip strong { display: block; font-size: 14.5px; font-weight: 600; }
.strip small { display: block; color: var(--soft); font-size: 12.5px; margin-top: 3px; }
.strip .num { font-family: var(--serif); font-size: 20px; color: var(--brass); line-height: 1; flex: none; }

/* ---------- pricing ---------------------------------------------------- */

.tabs { display: inline-flex; gap: 3px; padding: 4px; border: 1px solid var(--line); border-radius: 3px; background: rgba(8, 16, 15, .6); margin-bottom: 26px; }
.tabs button {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 20px;
  border-radius: 2px;
  font-family: var(--grotesk);
  font-size: 12px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--soft);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.tabs button small { font-size: 9.5px; letter-spacing: .12em; color: var(--brass); }
.tabs button.active { background: rgba(44, 176, 160, .13); color: var(--paper); }

.price-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); }
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: linear-gradient(170deg, rgba(19, 35, 37, .55), rgba(10, 19, 20, .6));
  transition: border-color .24s var(--ease), transform .24s var(--ease);
}
.plan:hover { border-color: var(--line-2); transform: translateY(-3px); }
.plan.featured { border-color: var(--brass-dim); background: linear-gradient(170deg, rgba(198, 169, 114, .09), rgba(10, 19, 20, .72)); }
.plan .flag-tag {
  position: absolute;
  top: -1px; right: 22px;
  padding: 5px 12px;
  font-family: var(--grotesk);
  font-size: 9px;
  letter-spacing: .2em;
  color: #08100F;
  background: var(--brass);
  border-radius: 0 0 2px 2px;
}
.plan > .label { margin-bottom: 12px; }
.plan h4 { margin: 0 0 16px; font-family: var(--serif); font-weight: 400; font-size: 22px; letter-spacing: -.014em; }
.plan .amount { display: flex; align-items: baseline; gap: 8px; }
.plan .amount strong { font-family: var(--serif); font-size: 44px; font-weight: 400; letter-spacing: -.034em; line-height: 1; }
.plan .amount small { color: var(--soft); font-size: 13px; }
.plan > p { color: var(--soft-2); font-size: 12.5px; margin: 12px 0 20px; font-family: var(--grotesk); letter-spacing: .04em; }
.plan ul { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 9px; }
.plan li { position: relative; padding-left: 20px; font-size: 13.5px; color: var(--paper-dim); }
.plan li::before { content: ""; position: absolute; left: 0; top: 9px; width: 10px; height: 1px; background: var(--acc-lift); }
.plan footer { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.plan footer small { display: block; font-family: var(--grotesk); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--soft-2); margin-bottom: 4px; }
.plan footer strong { font-size: 13.5px; font-weight: 600; }

/* ---------- FAQ -------------------------------------------------------- */

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 4px;
  cursor: pointer;
  list-style: none;
  transition: color .2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary strong { font-family: var(--serif); font-weight: 400; font-size: 19px; letter-spacing: -.012em; }
.faq summary .plus { color: var(--brass); }
.faq details[open] summary .plus::after { transform: rotate(0deg); }
.faq summary:hover strong { color: var(--acc-lift); }
.faq details p { margin: 0 0 22px; color: var(--soft); max-width: 82ch; font-size: 14.5px; }

/* ---------- device preview (real phones) -------------------------------- */

.device-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 48px;
  align-items: center;
}
.device-stage {
  position: relative;
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: radial-gradient(120% 90% at 50% 0%, rgba(18, 133, 122, .16), rgba(8, 16, 15, .9) 68%);
  display: grid;
  place-items: center;
  overflow: hidden;
}
/* The hardware cutouts are transparent PNGs — no frame, no plate, no fade
   behind them, so they read as real devices in the room, not as a photo. */
#view-real-phones .device-stage {
  border: 0;
  background: none;
  overflow: visible;
  min-height: 440px;
}
#view-real-phones .device-stage::after { content: none; }
/* The real device cutouts from the original build, with the same breathing
   motion, stagger and drop shadow so the hardware reads identically here. */
.hero-product {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: clamp(2px, 1vw, 14px);
  width: min(112%, 900px);
  margin-inline: -6%;
}
.phone-float {
  display: grid;
  place-items: end center;
  will-change: transform;
  animation: hardware-breathe 7s ease-in-out infinite;
}
.phone-float-android { animation-delay: .8s; }
.phone-float img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 34px 30px rgba(0, 0, 0, .5));
}
@keyframes hardware-breathe {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .phone-float { animation: none; transform: none; }
  .live-pill::before { animation: none; }
}
.live-pill {
  position: absolute;
  z-index: 3;
  bottom: 7%;
  right: 4%;
  padding: 7px 16px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(8, 16, 15, .8);
  backdrop-filter: blur(6px);
  font-family: var(--grotesk);
  font-size: 9.5px;
  letter-spacing: .22em;
  color: var(--paper-dim);
}
.live-pill::before { content: ""; display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--acc-lift); margin-right: 9px; vertical-align: middle; animation: pulse 2.4s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }

/* browser peek ----------------------------------------------------------- */

.peek { border: 1px solid var(--line); border-radius: 3px; overflow: hidden; background: rgba(10, 19, 20, .7); }
.peek-bar { display: flex; align-items: center; gap: 14px; padding: 12px 18px; border-bottom: 1px solid var(--line); background: rgba(8, 16, 15, .8); }
.peek-bar .dots { display: flex; gap: 6px; }
.peek-bar .dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--line-3); display: block; }
.peek-bar strong { font-family: var(--grotesk); font-size: 12px; letter-spacing: .06em; color: var(--paper-dim); }
.peek-bar small { color: var(--soft-2); font-size: 12px; font-family: var(--mono); }
.peek-bar em {
  margin-left: auto;
  font-style: normal;
  font-family: var(--grotesk);
  font-size: 9px;
  letter-spacing: .22em;
  color: var(--brass);
  border: 1px solid var(--brass-dim);
  padding: 3px 9px;
  border-radius: 2px;
}
.peek-body { padding: 28px 30px 32px; }
.peek-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 24px; }
.peek-head h3 { margin: 6px 0 4px; font-family: var(--serif); font-weight: 400; font-size: 24px; letter-spacing: -.016em; }
.peek-head p { margin: 0; color: var(--soft); font-size: 13.5px; }
.peek-head .seg { display: flex; gap: 2px; padding: 3px; border: 1px solid var(--line); border-radius: 2px; }
.peek-head .seg span { padding: 6px 13px; font-family: var(--grotesk); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--soft-2); border-radius: 2px; }
.peek-head .seg span.on { background: rgba(44, 176, 160, .14); color: var(--paper); }

.mini-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 2px; overflow: hidden; margin-bottom: 18px; }
.mini-metrics article { padding: 16px 18px; background: var(--ink-1); }
.mini-metrics span { display: block; font-family: var(--grotesk); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--soft-2); }
.mini-metrics strong { display: block; margin-top: 6px; font-family: var(--serif); font-size: 26px; font-weight: 400; letter-spacing: -.026em; }

.fleet { display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(214px, 1fr)); }
.fleet article { padding: 16px; border: 1px solid var(--line); border-radius: 2px; background: rgba(11, 21, 23, .6); }
.fleet header { display: flex; justify-content: space-between; align-items: center; font-family: var(--grotesk); font-size: 10px; letter-spacing: .16em; color: var(--soft-2); }
.fleet header em { font-style: normal; display: inline-flex; align-items: center; gap: 6px; color: var(--acc-lift); }
.fleet header em.offline { color: var(--soft-2); }
.fleet header em i { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.fleet .row { display: flex; gap: 12px; align-items: center; margin: 14px 0; }
/* Real handset artwork rather than a drawn slab. */
.fleet .chip { width: 40px; height: 76px; flex: none; display: grid; place-items: center; }
.fleet .chip img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 11px rgba(0, 0, 0, .6));
}
.fleet article:hover .chip img { filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .7)); }
.fleet .row strong { display: block; font-size: 13.5px; font-weight: 600; }
.fleet .row small { display: block; color: var(--soft-2); font-size: 11px; }
.fleet .row mark { display: inline-block; margin-top: 5px; background: none; color: var(--brass); font-family: var(--grotesk); font-size: 10px; letter-spacing: .1em; }
.fleet footer { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; padding-top: 12px; border-top: 1px solid var(--line); font-family: var(--grotesk); font-size: 10.5px; letter-spacing: .12em; color: var(--soft-2); }
/* the label gives way first so values like "Renewal due" are never clipped */
.fleet footer span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fleet footer strong { flex: none; white-space: nowrap; color: var(--paper); font-size: 13px; letter-spacing: .02em; }

/* ---------- travel ------------------------------------------------------ */

/* ---------- region maps ------------------------------------------------- */
/* Structure follows the portal's RegionMap: artwork over a blurred halo inside
   a hairline ring. Palette moved from the portal's yellow to the brand teal,
   with the ring in brass. */
.map-art { position: relative; display: grid; place-items: center; min-width: 0; min-height: 0; }
.map-art img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(44, 176, 160, .3));
  transition: transform .3s var(--ease), filter .3s var(--ease);
}
.map-art > i {
  position: absolute;
  z-index: 0;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(44, 176, 160, .17);
  filter: blur(20px);
}
.map-art > b {
  position: absolute;
  z-index: 1;
  width: 74%;
  aspect-ratio: 1;
  border: 1px solid rgba(198, 169, 114, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(198, 169, 114, .022);
}
.map-oceania img { transform: scale(1.06); }

.region-grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(252px, 1fr)); }
.region {
  position: relative;
  display: grid;
  grid-template-rows: 128px auto;
  gap: 16px;
  padding: 22px 22px 24px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: linear-gradient(165deg, rgba(19, 35, 37, .6), rgba(10, 19, 20, .6));
  text-align: left;
  overflow: hidden;
  transition: border-color .24s var(--ease), transform .24s var(--ease), background .24s var(--ease);
}
.region::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  height: 1px;
  width: 40px;
  background: var(--brass);
  transition: width .4s var(--ease);
}
.region:hover {
  border-color: rgba(44, 176, 160, .42);
  transform: translateY(-3px);
  background: linear-gradient(165deg, rgba(24, 43, 45, .72), rgba(11, 21, 23, .72));
}
.region:hover::before { width: 100%; background: linear-gradient(90deg, var(--brass), rgba(44, 176, 160, .8) 70%, transparent); }
.region:hover .map-art img { transform: scale(1.04); filter: drop-shadow(0 0 30px rgba(44, 176, 160, .45)); }
.region-copy { display: block; }
.region strong { display: block; font-family: var(--serif); font-weight: 400; font-size: 22px; letter-spacing: -.016em; }
.region small { display: block; color: var(--soft-2); font-size: 11px; font-family: var(--grotesk); letter-spacing: .12em; text-transform: uppercase; margin-top: 5px; }
.region b {
  display: block;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--brass-lift);
  letter-spacing: -.02em;
}
.region b i { font-style: normal; font-size: 14px; color: var(--soft); }

/* ---------- travel hero ------------------------------------------------- */

.travel-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(330px, 1.02fr); gap: 40px; align-items: center; }
.travel-orbit {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1.14;
  min-height: 400px;
  /* let the globe breathe past the hero padding for scale */
  margin: -12px -26px -12px 0;
}
.travel-orbit .map-art { position: absolute; inset: 0; }
.travel-orbit .map-art img { filter: drop-shadow(0 0 46px rgba(44, 176, 160, .34)); }
.travel-orbit .map-art > i { width: 58%; background: rgba(44, 176, 160, .2); filter: blur(38px); }
.travel-orbit .map-art > b { width: 66%; border-color: rgba(198, 169, 114, .18); box-shadow: 0 0 0 22px rgba(198, 169, 114, .02); }
.travel-orbit > span {
  position: relative;
  z-index: 3;
  font-family: var(--serif);
  font-size: clamp(54px, 6.4vw, 92px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--paper);
  text-shadow: 0 8px 40px rgba(4, 12, 12, .8);
}
.travel-orbit > small {
  position: relative;
  z-index: 3;
  margin-top: 8px;
  font-family: var(--grotesk);
  font-size: 10.5px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--brass);
}

@media (max-width: 1180px) {
  .travel-hero { grid-template-columns: minmax(0, 1fr); }
  .travel-orbit { min-height: 290px; aspect-ratio: 1.6; margin: 0 -10px; }
}
@media (max-width: 620px) {
  .travel-orbit { min-height: 210px; aspect-ratio: 1.5; }
}

.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(11, 21, 23, .5);
  font-size: 13px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.pill:hover { border-color: rgba(44, 176, 160, .4); background: rgba(18, 133, 122, .08); }
.pill .iso { width: 30px; height: 21px; font-size: 10px; }

.dest-grid { display: grid; gap: 8px; grid-template-columns: repeat(auto-fill, minmax(224px, 1fr)); }
.dest {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(11, 21, 23, .42);
  text-align: left;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.dest:hover { border-color: rgba(44, 176, 160, .38); background: rgba(18, 133, 122, .06); }
.dest strong { display: block; font-size: 13.5px; font-weight: 600; }
.dest small { display: block; color: var(--soft-2); font-size: 11px; }
.dest b { font-family: var(--serif); font-size: 16px; font-weight: 400; color: var(--brass-lift); letter-spacing: -.018em; }

.restore { border: 1px solid var(--line); border-radius: 3px; background: rgba(11, 21, 23, .5); margin-top: 30px; }
.restore summary { display: flex; align-items: center; gap: 16px; padding: 20px 24px; cursor: pointer; list-style: none; }
.restore summary::-webkit-details-marker { display: none; }
.restore .ring { width: 34px; height: 34px; border: 1px solid var(--brass-dim); border-radius: 50%; display: grid; place-items: center; color: var(--brass); flex: none; }
.restore strong { display: block; font-family: var(--grotesk); font-stretch: 87.5%; font-size: 15px; letter-spacing: .04em; }
.restore em { font-style: normal; color: var(--soft); font-size: 13px; }
.restore .body { padding: 0 24px 24px; border-top: 1px solid var(--line); padding-top: 20px; }
.restore .body p { margin-top: 0; color: var(--soft); }
.restore form { display: flex; gap: 10px; flex-wrap: wrap; align-items: flex-end; }
.restore label { display: grid; gap: 7px; flex: 1; min-width: 260px; }
.restore label span { font-family: var(--grotesk); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--soft-2); }
.restore input {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(8, 16, 15, .7);
  outline: none;
  font-family: var(--mono);
  font-size: 13px;
}
.restore input:focus { border-color: var(--acc); }

/* ---------- mobile esim ------------------------------------------------- */

.maintenance {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 26px;
  border: 1px solid var(--brass-dim);
  border-left: 2px solid var(--brass);
  border-radius: 2px;
  background: linear-gradient(100deg, rgba(198, 169, 114, .09), rgba(11, 21, 23, .4) 60%);
  margin-bottom: 30px;
}
.maintenance .bang {
  width: 26px; height: 26px; flex: none;
  border: 1px solid var(--brass);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--brass-lift);
  font-family: var(--serif);
  font-size: 15px;
}
.maintenance small { display: block; font-family: var(--grotesk); font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--brass); }
.maintenance strong { display: block; margin: 5px 0 6px; font-family: var(--serif); font-weight: 400; font-size: 20px; letter-spacing: -.014em; }
.maintenance p { margin: 0; color: var(--soft); font-size: 14px; }
.maintenance p button { color: var(--acc-lift); border-bottom: 1px solid rgba(44, 176, 160, .4); }

.esim-phone {
  width: 236px;
  border-radius: 26px;
  border: 1px solid var(--line-2);
  background: linear-gradient(165deg, #1C3032, #0A1516);
  padding: 12px;
  box-shadow: 0 34px 70px rgba(0, 0, 0, .55);
  position: relative;
  z-index: 2;
}
.esim-screen {
  border-radius: 18px;
  background: linear-gradient(175deg, #0B1718, #122123);
  border: 1px solid rgba(236, 239, 236, .06);
  padding: 20px 18px 22px;
}
.esim-screen .sig { display: flex; gap: 3px; align-items: flex-end; height: 12px; }
.esim-screen .sig i { width: 3px; background: var(--acc-lift); display: block; border-radius: 1px; }
.esim-screen .sig i:nth-child(1) { height: 4px; }
.esim-screen .sig i:nth-child(2) { height: 7px; }
.esim-screen .sig i:nth-child(3) { height: 10px; }
.esim-screen .sig i:nth-child(4) { height: 12px; opacity: .3; }
.esim-screen .glyph-mini { margin: 18px 0 14px; width: 34px; height: 34px; }
.esim-screen small { display: block; font-family: var(--grotesk); font-size: 9px; letter-spacing: .24em; color: var(--soft-2); }
.esim-screen > strong { display: block; margin-top: 4px; font-family: var(--serif); font-size: 24px; font-weight: 400; letter-spacing: -.02em; }
.esim-usage { display: flex; justify-content: space-between; align-items: baseline; margin-top: 22px; }
.esim-usage b { font-family: var(--serif); font-size: 19px; font-weight: 400; }
.esim-usage small { display: inline; margin-left: 6px; letter-spacing: .1em; }
.esim-usage em { font-style: normal; font-family: var(--grotesk); font-size: 12px; color: var(--acc-lift); }
.esim-bar { height: 3px; border-radius: 2px; background: rgba(236, 239, 236, .09); margin-top: 9px; overflow: hidden; }
.esim-bar i { display: block; height: 100%; width: 68%; background: linear-gradient(90deg, var(--acc), var(--acc-lift)); }
.esim-country { display: flex; align-items: center; gap: 10px; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); }
.esim-country b { display: block; font-size: 13px; }
.esim-country small { display: block; letter-spacing: .12em; }

.float-card {
  position: absolute;
  z-index: 3;
  padding: 12px 16px;
  border: 1px solid var(--line-2);
  border-radius: 2px;
  background: rgba(10, 19, 20, .92);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .5);
}
.float-card span { display: block; font-family: var(--serif); font-size: 22px; letter-spacing: -.024em; }
.float-card small { display: block; font-family: var(--grotesk); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--soft-2); }
.float-card.top { top: 30px; right: 4%; }
.float-card.bottom { bottom: 34px; left: 4%; }

.coverage-grid { display: grid; gap: 8px; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.coverage {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(11, 21, 23, .42);
}
.coverage strong { display: block; font-size: 13.5px; font-weight: 600; }
.coverage small { display: block; color: var(--soft-2); font-size: 11.5px; }
.coverage b { font-family: var(--grotesk); font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--acc-lift); }

/* ---------- blue relay -------------------------------------------------- */

.relay-hero { display: grid; grid-template-columns: 54px minmax(0, 1fr) minmax(240px, .7fr); gap: 34px; align-items: center; }
.relay-icon { width: 54px; height: 54px; display: grid; place-items: center; border: 1px solid var(--line-2); border-radius: 3px; color: var(--paper-dim); background: rgba(236, 239, 236, .03); }
.relay-icon svg { width: 26px; height: 26px; }
.brandline { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin: 0 0 16px; }
.brand-relay {
  font-family: var(--grotesk);
  font-stretch: 87.5%;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #6FA8FF;
  border: 1px solid rgba(111, 168, 255, .34);
  border-radius: 2px;
  padding: 5px 11px;
  background: rgba(111, 168, 255, .07);
}
.relay-apple { display: inline-flex; align-items: center; gap: 7px; color: var(--soft); font-family: var(--grotesk); font-size: 12px; letter-spacing: .1em; }
.relay-apple svg { width: 13px; height: 13px; }

.relay-visual {
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 22px;
  background: radial-gradient(110% 80% at 50% 0%, rgba(111, 168, 255, .16), rgba(8, 16, 15, .92) 70%);
}
.relay-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 36px rgba(0, 0, 0, .55));
}
.bubbles { display: grid; gap: 9px; }
.bubble { max-width: 82%; padding: 10px 14px; border-radius: 14px; font-size: 13px; line-height: 1.45; }
.bubble.them { background: rgba(236, 239, 236, .07); border: 1px solid var(--line); justify-self: start; border-bottom-left-radius: 4px; }
.bubble.me { background: linear-gradient(170deg, #2E7BF6, #1C5FD0); color: #fff; justify-self: end; border-bottom-right-radius: 4px; }
.bubbles .stamp { font-family: var(--grotesk); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--soft-2); justify-self: center; margin-bottom: 4px; }

.proof-row { display: grid; gap: 1px; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); background: var(--line); border: 1px solid var(--line); border-radius: 3px; overflow: hidden; }
.proof-row div { padding: 22px 24px; background: var(--ink-1); }
.proof-row strong { display: block; font-family: var(--serif); font-size: 23px; font-weight: 400; letter-spacing: -.02em; }
.proof-row span { display: block; margin-top: 6px; font-family: var(--grotesk); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--soft); }

.cap-grid { display: grid; gap: 1px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); background: var(--line); border: 1px solid var(--line); border-radius: 3px; overflow: hidden; }
.cap-grid article { padding: 26px 26px; background: var(--ink-1); }
.cap-grid strong { display: block; font-family: var(--serif); font-weight: 400; font-size: 20px; letter-spacing: -.014em; margin-bottom: 9px; }
.cap-grid p { margin: 0; color: var(--soft); font-size: 13.5px; }

.relay-plan-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.relay-plan {
  position: relative;
  text-align: left;
  padding: 28px 26px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: linear-gradient(170deg, rgba(19, 35, 37, .55), rgba(10, 19, 20, .6));
  transition: border-color .24s var(--ease), transform .24s var(--ease);
}
.relay-plan:hover { transform: translateY(-3px); border-color: var(--line-2); }
.relay-plan.selected { border-color: rgba(44, 176, 160, .55); background: linear-gradient(170deg, rgba(18, 133, 122, .14), rgba(10, 19, 20, .7)); }
.relay-plan > strong { display: block; margin: 12px 0 14px; font-family: var(--serif); font-weight: 400; font-size: 26px; letter-spacing: -.02em; }
.relay-price { display: flex; align-items: baseline; gap: 9px; margin: 0; }
.relay-price b { font-family: var(--serif); font-size: 40px; font-weight: 400; letter-spacing: -.032em; }
.relay-price i { font-style: normal; color: var(--soft); font-size: 15px; }
.relay-price span { color: var(--soft-2); font-family: var(--grotesk); font-size: 11.5px; letter-spacing: .1em; }
.setup-note { display: block; margin: 12px 0 18px; color: var(--soft-2); font-size: 12px; font-family: var(--grotesk); letter-spacing: .04em; }
.relay-plan ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.relay-plan li { position: relative; padding-left: 20px; font-size: 13.5px; color: var(--paper-dim); }
.relay-plan li::before { content: ""; position: absolute; left: 0; top: 9px; width: 10px; height: 1px; background: var(--acc-lift); }

.configurator { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(300px, .8fr); gap: 20px; }
.config-block { margin-bottom: 26px; }
.config-block > .label { display: block; margin-bottom: 14px; }
.config-block > p { margin: -6px 0 14px; color: var(--soft); font-size: 13.5px; }
.relay-country-grid { display: grid; gap: 8px; grid-template-columns: repeat(auto-fill, minmax(232px, 1fr)); }
.relay-country {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(11, 21, 23, .45);
  text-align: left;
  transition: border-color .2s var(--ease);
}
.relay-country:hover { border-color: var(--line-2); }
.relay-country.selected { border-color: rgba(44, 176, 160, .55); background: rgba(18, 133, 122, .09); }
.relay-country strong { display: block; font-size: 13.5px; font-weight: 600; }
.relay-country small { display: block; color: var(--soft-2); font-size: 11px; }
.relay-country b {
  font-family: var(--grotesk);
  font-size: 8.5px;
  letter-spacing: .16em;
  padding: 3px 7px;
  border-radius: 2px;
  border: 1px solid var(--line-2);
  color: var(--soft);
}
.relay-country.instant b { color: var(--acc-lift); border-color: rgba(44, 176, 160, .35); }

.term-grid { display: grid; gap: 8px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.term {
  position: relative;
  padding: 17px 16px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(11, 21, 23, .45);
  text-align: left;
  transition: border-color .2s var(--ease);
}
.term:hover { border-color: var(--line-2); }
.term.selected { border-color: rgba(44, 176, 160, .55); background: rgba(18, 133, 122, .09); }
.term strong { display: block; font-family: var(--grotesk); font-stretch: 87.5%; font-size: 15px; letter-spacing: .04em; }
.term b { display: inline-block; margin-top: 5px; font-family: var(--grotesk); font-size: 9px; letter-spacing: .16em; color: var(--brass); }
.term small { display: block; margin-top: 7px; color: var(--soft-2); font-size: 11px; }
.term span { display: block; margin-top: 9px; padding-top: 9px; border-top: 1px solid var(--line); }
.term span em { font-style: normal; font-family: var(--serif); font-size: 18px; letter-spacing: -.02em; }
.term span em i { font-style: normal; color: var(--soft); font-size: 13px; }
.term span > i { font-style: normal; color: var(--soft-2); font-family: var(--grotesk); font-size: 10px; letter-spacing: .14em; }

.checkout {
  align-self: start;
  position: sticky;
  top: 108px;
  padding: 26px 24px;
  border: 1px solid var(--line-2);
  border-radius: 3px;
  background: linear-gradient(170deg, rgba(24, 43, 45, .8), rgba(9, 17, 18, .9));
}
.checkout .who { display: flex; gap: 12px; align-items: center; margin: 16px 0 20px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.checkout .who strong { display: block; font-family: var(--grotesk); font-stretch: 87.5%; font-size: 16px; letter-spacing: .04em; }
.checkout .who small { color: var(--soft); font-size: 12px; }
.checkout dl { margin: 0; display: grid; gap: 11px; }
.checkout dl > div { display: flex; justify-content: space-between; gap: 16px; font-size: 13.5px; }
.checkout dt { color: var(--soft); }
.checkout dd { margin: 0; text-align: right; }
.checkout dd i { font-style: normal; color: var(--soft); }
.total { margin: 20px 0 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.total small { display: block; font-family: var(--grotesk); font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--soft-2); }
.total strong { display: block; margin: 6px 0 3px; font-family: var(--serif); font-size: 36px; font-weight: 400; letter-spacing: -.032em; }
.total strong i { font-style: normal; font-size: 19px; color: var(--soft); }
.total span { font-size: 12px; color: var(--soft-2); }
.checkout .btn { width: 100%; }

.legal { margin-top: 40px; color: var(--soft-2); font-size: 12px; text-align: center; }

/* ---------- gate -------------------------------------------------------- */

.gate {
  max-width: 620px;
  margin: 60px auto;
  padding: 56px 48px;
  border: 1px solid var(--line);
  border-radius: 3px;
  text-align: center;
  background: linear-gradient(170deg, rgba(19, 35, 37, .7), rgba(9, 17, 18, .85));
  position: relative;
  overflow: hidden;
}
.gate::before {
  content: "";
  position: absolute; inset: 0 0 auto; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass-dim) 30%, rgba(44, 176, 160, .5) 70%, transparent);
}
.gate .brand-mark { width: 54px; height: 54px; margin: 0 auto 22px; }
.gate h2 { margin: 14px 0 12px; font-family: var(--serif); font-weight: 400; font-size: 32px; letter-spacing: -.022em; }
.gate p { margin: 0 auto 28px; color: var(--soft); max-width: 46ch; }
.gate .actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

.contact-list { display: grid; gap: 10px; margin-top: 26px; text-align: left; }
.contact-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(11, 21, 23, .5);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.contact-list a:hover { border-color: var(--brass-dim); background: rgba(198, 169, 114, .05); }
.contact-list span { font-family: var(--grotesk); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--soft-2); }
.contact-list strong { font-family: var(--serif); font-weight: 400; font-size: 19px; letter-spacing: -.012em; }

/* ---------- auth overlay ------------------------------------------------ */

.overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: clamp(16px, 3vh, 32px);
  overflow-y: auto;
  overscroll-behavior: contain;
  background: rgba(4, 9, 9, .88);
  backdrop-filter: blur(6px);
}
.overlay.open { display: grid; animation: fade .28s var(--ease); }
body.auth-open { overflow: hidden; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

.auth-card {
  position: relative;
  width: min(780px, 100%);
  margin: auto;
  padding: 24px 26px 26px;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  background: #0d1818;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .58);
  animation: rise .34s var(--ease) both;
}
.auth-card::before {
  content: "";
  position: absolute; inset: 0 0 auto; height: 2px;
  background: var(--acc);
}
.auth-back {
  font-family: var(--text);
  font-size: 12px;
  letter-spacing: 0;
  color: var(--soft);
  margin-bottom: 20px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.auth-back:hover { color: var(--paper-dim); }
.auth-layout { display: grid; grid-template-columns: minmax(0, .86fr) minmax(320px, 1.14fr); gap: 34px; align-items: start; }
.auth-intro { padding: 12px 24px 8px 4px; border-right: 1px solid var(--line); }
.auth-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 34px; }
.auth-brand .brand-mark { width: 30px; height: 30px; }
.auth-brand .wordmark { font-size: 18px; }
.auth-kicker { display: block; margin-bottom: 9px; color: var(--acc-lift); font-size: 11px; font-weight: 600; }
.auth-card h1 { margin: 0 0 10px; font-family: var(--text); font-weight: 650; font-size: 27px; line-height: 1.2; letter-spacing: -.025em; }
.auth-intro > p { margin: 0; color: var(--soft); font-size: 14px; line-height: 1.55; }
.auth-panel { padding-top: 8px; }
.auth-card form { display: grid; gap: 13px; }
.auth-card label { display: grid; gap: 7px; font-family: var(--text); font-size: 12px; font-weight: 600; letter-spacing: 0; text-transform: none; color: var(--paper-dim); }
.auth-card input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  background: #081111;
  outline: none;
  font-family: var(--text);
  font-size: 14px;
  letter-spacing: normal;
  text-transform: none;
  color: var(--paper);
}
.auth-card input::placeholder { color: #536364; }
.auth-card input:focus { border-color: var(--acc-lift); box-shadow: 0 0 0 3px rgba(44, 176, 160, .1); }
.auth-card form .btn { width: 100%; min-height: 44px; margin-top: 3px; justify-content: center; }
.auth-switches { display: grid; gap: 8px; margin-top: 16px; padding-top: 15px; border-top: 1px solid var(--line); }
.auth-switches button { font-family: var(--text); font-size: 12.5px; letter-spacing: 0; color: var(--soft); text-align: left; }
.auth-switches button:hover { color: var(--acc-lift); }
.auth-error { margin: 12px 0 0; padding: 10px 12px; border: 1px solid rgba(221, 104, 94, .35); border-radius: 4px; color: #efb1aa; background: rgba(126, 34, 27, .14); font-size: 12.5px; line-height: 1.45; }
.auth-recovery { display: grid; gap: 11px; }
.auth-recovery > span { color: var(--acc-lift); font-size: 12px; font-weight: 700; }
.auth-recovery code { display: block; padding: 12px; border: 1px solid var(--line-2); border-radius: 4px; background: #081111; color: var(--paper); font: 12px/1.5 var(--mono); overflow-wrap: anywhere; user-select: all; }
.auth-recovery p { margin: 0 0 3px; color: var(--soft); font-size: 12.5px; line-height: 1.5; }
.auth-recovery .btn { width: 100%; min-height: 42px; justify-content: center; }
.no-email {
  margin-top: 24px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 12.5px;
  color: var(--soft);
  background: rgba(255, 255, 255, .02);
}
.no-email strong { color: var(--paper-dim); }

@media (max-width: 720px) {
  .overlay { place-items: start center; padding: 12px; }
  .auth-card { padding: 18px; }
  .auth-back { margin-bottom: 14px; }
  .auth-layout { grid-template-columns: minmax(0, 1fr); gap: 18px; }
  .auth-intro { padding: 0 0 17px; border-right: 0; border-bottom: 1px solid var(--line); }
  .auth-brand { margin-bottom: 20px; }
  .auth-card h1 { font-size: 24px; }
  .no-email { margin-top: 14px; }
  .auth-panel { padding-top: 0; }
}

@media (max-height: 650px) and (min-width: 721px) {
  .overlay { place-items: start center; padding-top: 12px; padding-bottom: 12px; }
  .auth-card { padding-top: 18px; padding-bottom: 18px; }
  .auth-back { margin-bottom: 12px; }
  .auth-brand { margin-bottom: 22px; }
  .no-email { margin-top: 16px; }
}

/* ---------- footer ------------------------------------------------------ */

.foot {
  border-top: 1px solid var(--line);
  padding: 34px 52px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
  max-width: var(--shell);
  margin: 0 auto;
  width: 100%;
}
.foot .wordmark { font-size: 16px; }
.foot .brand-mark { width: 26px; height: 26px; }
.foot .lock { display: flex; align-items: center; gap: 12px; }
.foot small { color: var(--soft-2); font-family: var(--grotesk); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; }

/* ---------- session visibility ----------------------------------------- */

body:not(.signed-in) [data-signed-in] { display: none !important; }
body.signed-in [data-signed-out] { display: none !important; }

.nav-group-label {
  display: block;
  margin: 18px 0 6px;
  padding: 0 16px;
  font-family: var(--grotesk);
  font-size: 9px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--brass);
}
.rail-nav > button.nav-sub { padding-left: 42px; font-size: 11.5px; letter-spacing: .11em; }
.rail-nav > button.nav-sub .nav-glyph { display: none; }
.rail-nav > button.nav-sub::after {
  content: "";
  position: absolute;
  left: 24px; top: 50%;
  translate: 0 -50%;
  width: 9px; height: 1px;
  background: var(--line-2);
}
.rail-nav > button.nav-sub.active::after { background: var(--acc-lift); }

/* ---------- PhoneCloud console ----------------------------------------- */

.pc-console {
  display: grid;
  grid-template-columns: 224px minmax(0, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  background: linear-gradient(150deg, rgba(19, 35, 37, .5), rgba(9, 17, 18, .7));
}

.pc-subnav { border-right: 1px solid var(--line); padding: 22px 14px; background: rgba(8, 16, 15, .5); }
.pc-subnav-brand { display: flex; gap: 11px; align-items: center; padding: 0 8px 18px; border-bottom: 1px solid var(--line); }
.pc-subnav-brand > span { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid var(--line-2); border-radius: 2px; color: var(--acc-lift); flex: none; }
.pc-subnav-brand small { display: block; font-family: var(--grotesk); font-size: 8px; letter-spacing: .26em; color: var(--soft-2); }
.pc-subnav-brand strong { font-family: var(--grotesk); font-stretch: 87.5%; font-size: 15px; letter-spacing: .04em; }

.pc-client { padding: 16px 8px; border-bottom: 1px solid var(--line); }
.pc-client small { display: block; font-family: var(--grotesk); font-size: 8px; letter-spacing: .24em; color: var(--soft-2); }
.pc-client strong { display: block; margin: 6px 0 6px; font-family: var(--serif); font-size: 18px; font-weight: 400; letter-spacing: -.014em; }
.pc-client span { display: inline-flex; align-items: center; gap: 7px; font-family: var(--grotesk); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--acc-lift); }
.pc-client span i { width: 5px; height: 5px; border-radius: 50%; background: var(--acc-lift); }

.pc-subnav nav { display: grid; gap: 1px; padding-top: 12px; }
.pc-subnav nav button {
  position: relative;
  display: grid;
  grid-template-columns: 26px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0 10px;
  padding: 9px 10px;
  border-radius: 2px;
  text-align: left;
  transition: background .18s var(--ease);
}
.pc-subnav nav button > span { grid-row: 1 / 3; display: grid; place-items: center; color: var(--soft-2); }
.pc-subnav nav button b { font-family: var(--grotesk); font-stretch: 87.5%; font-size: 13px; letter-spacing: .07em; color: var(--soft); font-weight: 500; }
.pc-subnav nav button small { font-size: 10.5px; color: var(--soft-2); }
.pc-subnav nav button em {
  position: absolute; right: 8px; top: 10px;
  font-style: normal;
  font-family: var(--grotesk);
  font-size: 7.5px;
  letter-spacing: .18em;
  color: var(--brass);
  border: 1px solid var(--brass-dim);
  border-radius: 2px;
  padding: 2px 5px;
}
.pc-subnav nav button:hover { background: rgba(236, 239, 236, .03); }
.pc-subnav nav button.active { background: rgba(44, 176, 160, .09); }
.pc-subnav nav button.active b { color: var(--paper); }
.pc-subnav nav button.active > span { color: var(--acc-lift); }

.pc-main { padding: 30px 32px 36px; min-width: 0; }
.pc-head { padding-bottom: 22px; margin-bottom: 26px; border-bottom: 1px solid var(--line); }
.pc-head h2 { margin: 8px 0 4px; font-family: var(--serif); font-weight: 400; font-size: 30px; letter-spacing: -.02em; }
.pc-head p { margin: 0; color: var(--soft); font-size: 14px; }

.pc-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 22px; }
.pc-section-head h3, .pc-section-head h4 { margin: 6px 0 4px; font-family: var(--serif); font-weight: 400; font-size: 23px; letter-spacing: -.016em; }
.pc-section-head p { margin: 0; color: var(--soft); font-size: 13.5px; max-width: 62ch; }
.pc-count { font-family: var(--grotesk); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--soft-2); }
.pc-note { color: var(--soft-2); font-size: 11px; font-family: var(--grotesk); letter-spacing: .1em; }

.pc-empty {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 54px 30px;
  border: 1px dashed var(--line-2);
  border-radius: 3px;
  text-align: center;
  background: rgba(8, 16, 15, .35);
}
.pc-empty > span { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--line-2); border-radius: 50%; color: var(--brass); margin-bottom: 6px; }
.pc-empty strong { font-family: var(--serif); font-weight: 400; font-size: 21px; letter-spacing: -.014em; }
.pc-empty p { margin: 0; color: var(--soft); font-size: 14px; max-width: 52ch; }
.pc-empty .btn { margin-top: 14px; }

.pc-tools { display: flex; gap: 10px; flex-wrap: wrap; margin: 16px 0 20px; }
.pc-tools .btn { padding: 9px 16px; }

/* rent builder */
.pc-rent-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 26px; margin-bottom: 26px; }
.pc-rent-head h3 { margin: 8px 0 5px; font-family: var(--serif); font-weight: 400; font-size: 25px; letter-spacing: -.018em; }
.pc-rent-head p { margin: 0; color: var(--soft); font-size: 13.5px; }
.pc-steps { display: flex; gap: 8px; list-style: none; margin: 0; padding: 0; flex: none; }
.pc-steps li { display: flex; align-items: center; gap: 8px; padding: 8px 13px; border: 1px solid var(--line); border-radius: 2px; font-family: var(--grotesk); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--soft-2); }
.pc-steps li b { font-family: var(--serif); font-size: 13px; color: var(--soft-2); }
.pc-steps li.active { border-color: rgba(44, 176, 160, .45); color: var(--paper); background: rgba(44, 176, 160, .08); }
.pc-steps li.active b { color: var(--acc-lift); }

.pc-rent-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .62fr); gap: 20px; align-items: start; }
.pc-block { margin-bottom: 26px; }
.pc-block h4 { margin: 0 0 14px; font-family: var(--grotesk); font-stretch: 87.5%; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--soft); font-weight: 600; }

.pc-device-switch { display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.pc-device {
  display: flex; gap: 14px; align-items: center; text-align: left;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(11, 21, 23, .45);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.pc-device:hover { border-color: var(--line-2); }
.pc-device.active { border-color: rgba(44, 176, 160, .5); background: rgba(18, 133, 122, .09); }
/* Real handset artwork at chip scale — the same cutouts as the hero. */
.pc-device-art { width: 38px; height: 74px; flex: none; display: grid; place-items: center; }
.pc-device-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, .55));
}
.pc-device strong { display: block; font-size: 14.5px; font-weight: 600; }
.pc-device small { display: block; color: var(--soft-2); font-size: 11px; margin-top: 2px; }
.pc-device small em { font-style: normal; color: var(--brass); font-family: var(--grotesk); letter-spacing: .1em; margin-right: 5px; }
.pc-device p { margin: 6px 0 0; font-size: 11.5px; color: var(--soft); font-family: var(--grotesk); letter-spacing: .06em; }
.pc-device p b { color: var(--acc-lift); }
.pc-device p i { display: inline-block; width: 3px; height: 3px; border-radius: 50%; background: var(--soft-2); vertical-align: middle; margin: 0 5px; }

.pc-quantity { display: flex; justify-content: space-between; align-items: center; gap: 22px; flex-wrap: wrap; }
.pc-quantity h4 { margin-bottom: 6px; }
.pc-quantity p { margin: 0; color: var(--soft); font-size: 13px; }
.pc-stepper { display: flex; align-items: center; gap: 4px; border: 1px solid var(--line); border-radius: 2px; padding: 4px; }
.pc-stepper button { width: 34px; height: 34px; border-radius: 2px; color: var(--paper-dim); font-size: 17px; transition: background .18s var(--ease); }
.pc-stepper button:hover:not(:disabled) { background: rgba(236, 239, 236, .06); }
.pc-stepper button:disabled { color: var(--soft-2); cursor: not-allowed; }
.pc-stepper strong { min-width: 40px; text-align: center; font-family: var(--serif); font-size: 21px; font-weight: 400; }

.pc-plan-grid { display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.pc-plan {
  position: relative;
  text-align: left;
  padding: 18px 17px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(11, 21, 23, .45);
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}
.pc-plan:hover { border-color: var(--line-2); transform: translateY(-2px); }
.pc-plan.active { border-color: rgba(44, 176, 160, .5); background: rgba(18, 133, 122, .09); }
.pc-plan > span { display: block; font-family: var(--grotesk); font-stretch: 87.5%; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; color: var(--paper); }
.pc-plan small { display: block; margin: 10px 0 2px; font-family: var(--grotesk); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--soft-2); }
.pc-plan strong { font-family: var(--serif); font-size: 26px; font-weight: 400; letter-spacing: -.026em; }
.pc-plan strong b { font-family: var(--grotesk); font-size: 11px; font-weight: 400; color: var(--soft); letter-spacing: .06em; }
.pc-plan p { margin: 10px 0 0; font-size: 12.5px; color: var(--soft); }
.pc-pop { position: absolute; top: -1px; right: 14px; padding: 4px 9px; font-style: normal; font-family: var(--grotesk); font-size: 8px; letter-spacing: .2em; color: #08100F; background: var(--brass); border-radius: 0 0 2px 2px; }

.pc-summary {
  position: sticky;
  top: 108px;
  padding: 22px 20px;
  border: 1px solid var(--line-2);
  border-radius: 3px;
  background: linear-gradient(170deg, rgba(24, 43, 45, .8), rgba(9, 17, 18, .9));
}
.pc-summary > header { padding-bottom: 16px; margin-bottom: 14px; border-bottom: 1px solid var(--line); }
.pc-summary > header strong { display: block; margin-top: 7px; font-family: var(--serif); font-size: 19px; font-weight: 400; letter-spacing: -.014em; }
.pc-summary > div { display: flex; justify-content: space-between; gap: 16px; padding: 7px 0; font-size: 13.5px; }
.pc-summary > div > span { color: var(--soft); }
.pc-summary > footer { margin: 16px 0 14px; padding-top: 16px; border-top: 1px solid var(--line); }
.pc-summary > footer span { display: block; font-family: var(--grotesk); font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--soft-2); }
.pc-summary > footer strong { display: block; margin: 6px 0 3px; font-family: var(--serif); font-size: 34px; font-weight: 400; letter-spacing: -.032em; }
.pc-summary > footer small { color: var(--soft-2); font-size: 12px; }

.pc-payment { display: grid; gap: 11px; padding-top: 16px; margin-top: 14px; border-top: 1px solid var(--line); }
.pc-payment-or { font-family: var(--grotesk); font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--brass); }
.pc-coins { display: grid; gap: 6px; }
.pc-coins button {
  display: flex; align-items: center; gap: 11px; text-align: left;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: border-color .18s var(--ease), background .18s var(--ease);
}
.pc-coins button:hover { border-color: var(--line-2); background: rgba(236, 239, 236, .03); }
.pc-coins button i, .pc-balance-select i {
  width: 26px; height: 26px; flex: none;
  border-radius: 50%;
  background: #F4F6F4;
  display: grid; place-items: center;
  overflow: hidden;
  padding: 3px;
}
.pc-coins button strong { display: block; font-size: 13px; font-weight: 600; }
.pc-coins button small { display: block; font-family: var(--grotesk); font-size: 10px; letter-spacing: .16em; color: var(--soft-2); }
.pc-payment > label { display: grid; gap: 7px; }
.pc-payment > label > span { font-family: var(--grotesk); font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--soft-2); }
.pc-balance-select { display: flex; align-items: center; gap: 10px; padding: 8px 11px; border: 1px solid var(--line); border-radius: 2px; background: rgba(8, 16, 15, .6); }
.pc-balance-select select { background: none; border: 0; outline: none; font-size: 13px; color: var(--paper); flex: 1; cursor: pointer; }
.pc-balance-select select option { background: #0E1B1D; }
.pc-payment-row { display: flex; justify-content: space-between; gap: 14px; font-size: 13px; }
.pc-payment-row span { color: var(--soft); }
.pc-payment-row.total strong { font-family: var(--serif); font-size: 22px; font-weight: 400; letter-spacing: -.024em; }

/* billing / spend */
.pc-spend { padding: 24px 26px; border: 1px solid var(--line); border-left: 2px solid var(--brass-dim); border-radius: 2px; background: linear-gradient(100deg, rgba(198, 169, 114, .06), rgba(11, 21, 23, .3) 60%); margin-bottom: 26px; }
.pc-spend strong { display: block; margin: 9px 0 6px; font-family: var(--serif); font-size: 38px; font-weight: 400; letter-spacing: -.032em; }
.pc-spend small { color: var(--soft); font-size: 13px; }

.pc-live { display: inline-flex; align-items: center; gap: 8px; flex: none; font-family: var(--grotesk); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--acc-lift); }
.pc-live i { width: 5px; height: 5px; border-radius: 50%; background: var(--acc-lift); box-shadow: 0 0 0 3px rgba(44, 176, 160, .14); }

.pc-coming { margin-top: 30px; padding: 30px 28px; border: 1px solid var(--line); border-radius: 3px; background: rgba(8, 16, 15, .4); }
.pc-coming h3 { margin: 12px 0 8px; font-family: var(--serif); font-weight: 400; font-size: 26px; letter-spacing: -.02em; }
.pc-coming > p { margin: 0 0 22px; color: var(--soft); max-width: 72ch; }

/* settings */
.pc-settings-hero { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; padding: 24px 26px; border: 1px solid var(--line); border-radius: 3px; background: radial-gradient(120% 100% at 100% 0%, rgba(18, 133, 122, .12), rgba(8, 16, 15, .5)); margin-bottom: 24px; }
.pc-settings-hero h3 { margin: 9px 0 7px; font-family: var(--serif); font-weight: 400; font-size: 26px; letter-spacing: -.02em; }
.pc-settings-hero p { margin: 0; color: var(--soft); font-size: 13.5px; max-width: 60ch; }

.pc-settings-layout { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(260px, .7fr); gap: 16px; align-items: start; }
.pc-stream-card, .pc-session-card { padding: 24px 24px; border: 1px solid var(--line); border-radius: 3px; background: rgba(11, 21, 23, .5); }
.pc-stream-card > header { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; padding-bottom: 20px; margin-bottom: 22px; border-bottom: 1px solid var(--line); }
.pc-stream-card h4, .pc-session-card h4 { margin: 8px 0 6px; font-family: var(--serif); font-weight: 400; font-size: 21px; letter-spacing: -.016em; }
.pc-stream-card p { margin: 0; color: var(--soft); font-size: 13px; }
.pc-tag { font-style: normal; font-family: var(--grotesk); font-size: 8.5px; letter-spacing: .2em; color: var(--brass); border: 1px solid var(--brass-dim); border-radius: 2px; padding: 4px 8px; flex: none; }

.pc-sliders { display: grid; gap: 22px; }
.pc-sliders label { display: grid; gap: 10px; }
.pc-sliders label > span { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; }
.pc-sliders b { font-family: var(--grotesk); font-stretch: 87.5%; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--soft); font-weight: 500; }
.pc-sliders label > span strong { font-family: var(--serif); font-size: 19px; font-weight: 400; letter-spacing: -.02em; color: var(--paper); }
.pc-sliders input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 2px; background: rgba(236, 239, 236, .12); border-radius: 2px; outline: none; }
.pc-sliders input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 15px; height: 15px; border-radius: 50%; background: var(--acc-lift); border: 3px solid #0A1415; box-shadow: 0 0 0 1px rgba(44, 176, 160, .5); cursor: pointer; }
.pc-sliders label small { display: flex; justify-content: space-between; gap: 12px; font-family: var(--grotesk); font-size: 9.5px; letter-spacing: .12em; color: var(--soft-2); }
.pc-sliders label small i { font-style: normal; }
.pc-sliders label small i:nth-child(2) { text-transform: uppercase; letter-spacing: .16em; }
.pc-stream-card > footer { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }

.pc-switch { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 14px 0; border-top: 1px solid var(--line); }
.pc-switch strong { display: block; font-size: 13.5px; font-weight: 600; }
.pc-switch small { display: block; color: var(--soft-2); font-size: 11.5px; }
.pc-switch input { width: 17px; height: 17px; accent-color: var(--acc); flex: none; }

.pc-users { margin-top: 4px; }
.pc-user-table { margin-top: 18px; border: 1px solid var(--line); border-radius: 3px; overflow: hidden; }
.pc-user-head, .pc-user-table article { display: grid; grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr)); gap: 14px; align-items: center; padding: 14px 18px; }
.pc-user-head { background: rgba(8, 16, 15, .6); border-bottom: 1px solid var(--line); font-family: var(--grotesk); font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--soft-2); }
.pc-user-table article { background: rgba(11, 21, 23, .4); }
.pc-identity { display: flex; align-items: center; gap: 12px; }
.pc-identity i { width: 34px; height: 34px; flex: none; border-radius: 50%; display: grid; place-items: center; font-style: normal; font-family: var(--serif); font-size: 16px; color: var(--brass-lift); border: 1px solid var(--brass-dim); background: rgba(198, 169, 114, .07); }
.pc-identity strong { display: block; font-size: 13.5px; font-weight: 600; }
.pc-identity small { display: block; color: var(--soft-2); font-size: 11px; }
.pc-user-table article > span strong { font-size: 13px; }

@media (max-width: 1180px) {
  .pc-console { grid-template-columns: minmax(0, 1fr); }
  .pc-subnav { border-right: 0; border-bottom: 1px solid var(--line); }
  .pc-subnav nav { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
  .pc-rent-layout, .pc-settings-layout { grid-template-columns: minmax(0, 1fr); }
  .pc-summary { position: static; }
}

@media (max-width: 720px) {
  .pc-main { padding: 22px 18px 28px; }
  .pc-rent-head, .pc-section-head, .pc-settings-hero { flex-direction: column; align-items: flex-start; }
  .pc-user-head { display: none; }
  .pc-user-table article { grid-template-columns: minmax(0, 1fr); }
}

/* ---------- scrim / responsive ----------------------------------------- */

.scrim { display: none; position: fixed; inset: 0; z-index: 45; background: rgba(4, 9, 9, .7); backdrop-filter: blur(3px); }
.scrim.open { display: block; }

@media (max-width: 1180px) {
  .device-hero, .relay-hero, .configurator, .split-hero { grid-template-columns: minmax(0, 1fr); }
  .relay-hero { grid-template-columns: 54px minmax(0, 1fr); }
  .relay-visual { grid-column: 1 / -1; }
  .checkout { position: static; }
  .quotes { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .shell { grid-template-columns: minmax(0, 1fr); }
  .rail {
    position: fixed;
    z-index: 50;
    left: 0; top: 0;
    width: min(282px, 82vw);
    /* Opaque drawer — the old translucent panel let the hero type read
       straight through the menu, which is what made it unreadable. */
    background: #0A1315;
    backdrop-filter: none;
    box-shadow: 24px 0 60px rgba(0, 0, 0, .55);
    transform: translateX(-101%);
    transition: transform .3s var(--ease);
  }
  .rail.open { transform: none; }
  .menu-toggle { display: flex; }
  .content, .topbar, .foot { padding-left: 24px; padding-right: 24px; }
  .hero { padding: 46px 30px 44px; }
  .split-hero { padding: 38px 28px; }
  .ledger, .mini-metrics { grid-template-columns: repeat(2, 1fr); }
  .ledger > div:nth-child(2n) { border-right: 0; }
  .ledger > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .quotes { grid-template-columns: minmax(0, 1fr); }
  .hero-watermark { opacity: .06; right: -140px; }
  .page-identity h1 { font-size: 21px; }
  .topup strong { display: none; }
}

/* Compact top bar: one row, no collisions, on narrow handsets. */
@media (max-width: 720px) {
  .topbar { gap: 12px; padding: 12px 18px; }
  .page-identity { gap: 10px; }
  .page-identity .brand-mark { display: none; }
  .page-identity .label { display: none; }
  .page-identity h1 { font-size: 18px; }
  .menu-toggle { padding: 9px 11px; letter-spacing: .14em; }
  .topup { padding: 8px 10px; }
  .coin-strip i { width: 17px; height: 17px; }
  .account > button { padding: 5px 7px 5px 5px; }
  .account .brand-mark { width: 21px; height: 21px; }
  .account-pop { width: min(268px, calc(100vw - 36px)); }
}

@media (max-width: 760px) {
  /* Anything that cannot shrink scrolls inside its own box rather than
     pushing the page sideways. */
  .peek-head { flex-direction: column; align-items: flex-start; }
  .peek-head .seg { max-width: 100%; overflow-x: auto; }
  .peek-body { padding: 20px 16px 24px; }
  .peek-bar { flex-wrap: wrap; gap: 8px 12px; }
  .peek-bar em { margin-left: 0; }
  .tabs { width: 100%; overflow-x: auto; }
  .pc-steps { width: 100%; overflow-x: auto; }
  .device-stage { min-height: 320px; }
  .float-card.top { top: 12px; right: 2%; }
  .float-card.bottom { bottom: 14px; left: 2%; }
  .contact-list a { flex-direction: column; align-items: flex-start; gap: 6px; }
  .contact-list strong { font-size: 17px; overflow-wrap: anywhere; }
  .gate { padding: 40px 22px; margin: 20px auto; }
  .hero-actions .btn, .gate .actions .btn, .lockbar .actions .btn { flex: 1 1 auto; }
}

@media (max-width: 620px) {
  .content { padding-top: 34px; }
  .section { margin-top: 58px; }
  .ledger { grid-template-columns: minmax(0, 1fr); }
  .ledger > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .ledger > div:last-child { border-bottom: 0; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .filters { width: 100%; flex-wrap: wrap; }
  .field { flex: 1; }
  .foot { justify-content: flex-start; }
  .mini-metrics { grid-template-columns: repeat(2, 1fr); }
  .split-hero { gap: 26px; }
  .hero h2 { font-size: clamp(30px, 8.4vw, 40px); }
  .country, .number-card, .dest, .coverage, .relay-country { grid-template-columns: 38px 1fr; }
  .country .cost, .number-card .cost, .dest b, .coverage b, .relay-country b { grid-column: 1 / -1; text-align: left; padding-top: 8px; border-top: 1px solid var(--line); }
  .quote { padding: 24px 20px; }
}

/* Short viewports (small phones, landscape, a docked browser pane): compact the
   drawer so the whole nav is reachable without hunting for a scrollbar. */
@media (max-height: 720px) {
  .rail { padding-top: 18px; }
  .rail-brand { padding-bottom: 16px; margin-bottom: 12px; }
  .rail-brand .brand-mark { width: 28px; height: 28px; }
  .rail-brand .wordmark { font-size: 17px; }
  .rail-brand small { display: none; }
  .rail-nav > button { padding-top: 6px; padding-bottom: 6px; font-size: 11.5px; }
  .rail-foot { padding: 12px 16px 0; }
  .support-card { grid-template-columns: 28px 1fr 12px; padding: 11px 13px; }
  /* Hide the two helper lines but keep the "Support" label — `span:last-of-type`
     matched the wrapper and blanked the whole card. */
  .support-card small, .support-card > span > span { display: none; }
  /* keep the framed tile, just smaller — a bare glyph looked unfinished */
  .support-card .support-glyph { width: 28px; height: 28px; }
  .support-card .support-glyph svg { width: 15px; height: 15px; }
  .support-card strong { margin: 0; }
}

/* Touch targets and safe areas on real handsets. */
@media (pointer: coarse) {
  .btn, .rail-nav > button, .pc-subnav nav button, .account-pop nav button { min-height: 44px; }
  .pc-stepper button { width: 44px; height: 44px; }
  .card:hover, .plan:hover, .country:not(.out):hover, .service:hover, .region:hover { transform: none; }
}

@supports (padding: max(0px)) {
  @media (max-width: 980px) {
    .content, .topbar, .foot { padding-left: max(24px, env(safe-area-inset-left)); padding-right: max(24px, env(safe-area-inset-right)); }
    .rail { padding-bottom: max(22px, env(safe-area-inset-bottom)); }
  }
}
