@charset "UTF-8";

:root {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: #202322;
  background: #fff;
  font-synthesis: none;
  --muted: #727672;
  --line: #e9ebe8;
  --accent: #315b46;
}

* { box-sizing: border-box; }
body { margin: 0; }
button, input, select { font: inherit; }
button, a, input, select { -webkit-tap-highlight-color: transparent; }
button { color: inherit; cursor: pointer; }
button:disabled { cursor: not-allowed; }
a { color: inherit; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
h1, h2, h3, p { margin: 0; }
p { line-height: 1.6; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip { position: fixed; top: -100px; left: 16px; padding: 12px; background: white; z-index: 10; }
.skip:focus { top: 12px; }

.site-header { width: min(1040px, calc(100% - 64px)); margin: auto; height: 100px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { text-decoration: none; font-size: 23px; font-weight: 650; letter-spacing: -1px; }
.brand span { color: var(--accent); }
.text-button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; padding: 8px 0; border: 0; background: none; font-size: 13px; color: #5d625e; }
.text-button:hover { color: #202322; text-decoration: underline; text-underline-offset: 4px; }
.text-button span { color: #8b908b; }

.catalogue { width: min(744px, calc(100% - 48px)); margin: 63px auto 48px; }
.intro { text-align: center; }
.eyebrow { color: var(--muted); font-size: 10px; font-weight: 600; letter-spacing: 1.6px; line-height: 1.5; }
.intro h1 { margin-top: 14px; font-size: clamp(30px, 4vw, 40px); line-height: 1.2; font-weight: 550; letter-spacing: -1.6px; }
.intro > p:last-child { margin-top: 12px; color: var(--muted); font-size: 14px; }
.search { display: flex; align-items: center; gap: 12px; margin: 32px 0 38px; min-height: 56px; border: 1px solid #d9ded8; border-radius: 8px; padding: 0 12px 0 18px; }
.search:focus-within { border-color: var(--accent); outline: 2px solid #315b4615; }
.search > svg { width: 20px; height: 20px; flex-shrink: 0; stroke: #858c85; stroke-width: 1.6; stroke-linecap: round; }
.search input { width: 100%; min-width: 0; height: 54px; padding: 0; border: 0; outline: none; background: transparent; font-size: 15px; color: inherit; }
.search input::placeholder { color: #858b85; opacity: 1; }
.search input::-webkit-search-cancel-button { -webkit-appearance: none; }
.icon-button { flex-shrink: 0; display: inline-grid; place-items: center; width: 44px; height: 44px; padding: 0; border: 0; border-radius: 6px; background: none; font-size: 25px; font-weight: 300; line-height: 1; color: var(--muted); }
.icon-button:hover { background: #f4f5f3; color: #202322; }

.list-heading { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 8px; }
.list-heading h2 { font-size: 13px; font-weight: 550; }
.price-controls { display: flex; align-items: center; gap: 10px; }
.price-controls > span { font-size: 11px; color: var(--muted); }
.currency-select { min-height: 44px; width: 74px; padding: 8px; border: 1px solid var(--line); border-radius: 6px; background: white; color: inherit; font-size: 12px; cursor: pointer; }
.currency-select:hover { border-color: #b9c2b5; }
.dialog-tools { display: flex; align-items: center; gap: 6px; }
.currency-note { margin-top: 12px; font-size: 10px; color: var(--muted); line-height: 1.7; }
.currency-note a { text-underline-offset: 3px; }
dialog .currency-note { text-align: center; }
.country-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 32px; }
.country-card { display: flex; align-items: center; gap: 12px; width: 100%; min-height: 80px; padding: 16px 2px; text-align: left; border: 0; border-bottom: 1px solid var(--line); background: transparent; transition: background .15s; }
.country-card:hover { background: #f8f9f7; }
.country-code { display: inline-grid; place-items: center; flex-shrink: 0; width: 34px; height: 34px; border: 1px solid #e7eae5; border-radius: 50%; background: #f8f9f6; color: #687465; font-size: 10px; font-weight: 600; letter-spacing: .5px; }
.country-name { flex: 1; font-size: 14px; font-weight: 500; line-height: 1.4; }
.country-price { flex-shrink: 0; font-size: 13px; font-weight: 500; text-align: right; white-space: nowrap; }
.country-price > span { display: block; margin-bottom: 3px; color: var(--muted); font-size: 10px; font-weight: 400; }
.country-price > strong { font: inherit; }
.card-arrow { width: 14px; height: 14px; flex-shrink: 0; stroke: #92998f; stroke-width: 1.5; fill: none; }
.country-card:hover .card-arrow { stroke: #202322; }
.empty-state { padding: 56px 0; text-align: center; border-bottom: 1px solid var(--line); }
.empty-state h3 { font-size: 16px; font-weight: 500; }
.empty-state p { margin-top: 8px; font-size: 13px; color: var(--muted); }
.empty-state button { margin-top: 8px; color: var(--accent); }
.catalogue-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 24px; }
.catalogue-footer > p { font-size: 11px; color: var(--muted); }
.preview-label { display: inline-block; padding: 2px 6px; margin-right: 6px; border-radius: 4px; background: #f2f3f0; color: #60665c; font-size: 10px; }
.catalogue-footer .text-button { font-size: 11px; white-space: nowrap; }

.modal-open { overflow: hidden; }
dialog { width: min(440px, calc(100% - 32px)); max-height: calc(100dvh - 32px); padding: 26px; border: 1px solid var(--line); border-radius: 12px; color: inherit; background: white; box-shadow: 0 20px 80px #00000016; }
dialog::backdrop { background: #17251a45; }
.dialog-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: -10px -10px 20px 0; }
dialog h2 { font-size: 27px; font-weight: 550; letter-spacing: -.8px; line-height: 1.2; }
.dialog-description { margin-top: 9px; margin-bottom: 26px; font-size: 12px; color: var(--muted); }
.plan-options { display: flex; flex-direction: column; gap: 8px; padding: 0; margin: 0; border: 0; }
.plan-options legend { margin-bottom: 12px; font-size: 12px; font-weight: 550; }
.plan-option { display: flex; align-items: center; gap: 12px; padding: 17px 14px; border: 1px solid var(--line); border-radius: 7px; cursor: pointer; }
.plan-option:hover { border-color: #b9c2b5; }
.plan-option:has(input:checked) { border-color: #4d6454; background: #f6f8f4; }
input[type=radio], input[type=checkbox] { width: 16px; height: 16px; flex-shrink: 0; margin: 0; accent-color: var(--accent); }
.plan-option-copy { display: flex; align-items: center; gap: 12px; flex: 1; }
.plan-option-copy > strong { font-size: 14px; font-weight: 550; }
.plan-option-copy > span { color: var(--muted); font-size: 12px; }
.plan-option > strong { font-size: 13px; font-weight: 550; white-space: nowrap; }
.device-check { margin: 24px 0 18px; }
.confirmation { display: flex; align-items: flex-start; gap: 10px; padding: 6px 0; font-size: 12px; line-height: 1.5; cursor: pointer; }
.confirmation input { margin-top: 1px; }
.device-check .text-button { margin-left: 26px; min-height: 32px; padding: 4px 0; font-size: 11px; }
.form-error { margin-top: 8px; color: #a23426; font-size: 12px; }
.primary { min-height: 48px; padding: 14px 16px; border: 1px solid #273d2e; border-radius: 7px; background: #273d2e; color: white; font-size: 13px; font-weight: 500; }
.primary:hover { background: #36543f; }
.primary:disabled { background: #e9ece7; border-color: #e9ece7; color: #71766d; }
.full-width { display: block; width: 100%; text-align: center; }
.preview-note { margin: 14px 0 0; font-size: 11px; text-align: center; color: var(--muted); }
.order-card { margin-block: 26px; }
.order-destination { display: flex; align-items: center; gap: 12px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.order-destination strong { font-size: 15px; font-weight: 550; }
.order-card dl { margin: 20px 0 0; }
.order-card dl > div { display: flex; justify-content: space-between; gap: 20px; margin-top: 14px; font-size: 13px; }
.order-card dt { color: var(--muted); }
.order-card dd { margin: 0; font-weight: 500; }
.order-card .subtotal { border-top: 1px solid var(--line); margin-top: 22px; padding-top: 20px; font-size: 16px; }
.subtotal dt { color: inherit; }
.tax-note { margin-top: 10px; color: var(--muted); font-size: 11px; }
.order-actions { margin-top: 24px; }
.order-actions .text-button { margin-top: 6px; }
.help-steps { list-style: none; counter-reset: step; padding: 0; margin: 26px 0; }
.help-steps li { position: relative; padding: 18px 0 18px 30px; border-top: 1px solid var(--line); counter-increment: step; }
.help-steps li::before { position: absolute; left: 0; top: 20px; content: counter(step) "."; color: var(--muted); font-size: 12px; }
.help-steps h3 { font-size: 14px; font-weight: 550; line-height: 1.4; }
.help-steps p { margin-top: 7px; color: var(--muted); font-size: 12px; }
.guide-link { display: inline-block; padding-block: 12px; margin: -8px 0 20px; font-size: 12px; text-underline-offset: 4px; }
#how-dialog .preview-note { margin: 0 0 20px; }

@media (max-width: 600px) {
  .site-header { width: calc(100% - 40px); height: 80px; }
  .brand { font-size: 21px; }
  .site-header .text-button { font-size: 12px; }
  .catalogue { width: calc(100% - 40px); margin-top: 36px; margin-bottom: 28px; }
  .intro h1 { letter-spacing: -1.2px; font-size: clamp(27px, 7.5vw, 36px); }
  .intro > p:last-child { font-size: 13px; }
  .search { margin-top: 28px; margin-bottom: 30px; }
  .search input { font-size: 16px; }
  .country-grid { grid-template-columns: minmax(0, 1fr); }
  .country-card { min-height: 72px; gap: 13px; padding-block: 13px; }
  .country-name { font-size: 14px; }
  .catalogue-footer { align-items: flex-start; flex-direction: column; gap: 4px; margin-top: 22px; }
  dialog { padding: 22px; }
  dialog h2 { font-size: 25px; }
}

@media (max-width: 360px) {
  .site-header, .catalogue { width: calc(100% - 32px); }
  .site-header .text-button { font-size: 11px; }
  .plan-option { padding-inline: 10px; gap: 9px; }
  .plan-option-copy { gap: 8px; }
  .plan-option-copy > span { font-size: 11px; }
  .plan-option > strong { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

.destination-types { display: flex; gap: 22px; }
.destination-types .text-button { font-size: 13px; }
.destination-types [aria-pressed=true] { color: #202322; font-weight: 550; text-decoration: underline; text-underline-offset: 10px; text-decoration-color: var(--accent); }
.show-all { display: flex; margin: 16px auto 0; }
.catalogue-status { padding: 32px 0; text-align: center; font-size: 13px; color: var(--muted); }
#retry-catalogue { margin: 0 auto; display: flex; }
.coverage-details { margin: -8px 0 22px; font-size: 12px; color: #5d625e; }
.coverage-details summary { cursor: pointer; padding: 10px 0; }
.coverage-details summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.coverage-details ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 16px; padding: 8px 0; margin: 0; list-style: none; line-height: 1.5; }
.order-card .coverage-details { margin: 8px 0 16px; }
.country-name { overflow-wrap: anywhere; min-width: 0; }
@media (max-width: 600px) {
  .plan-option-copy { align-items: flex-start; flex-direction: column; gap: 4px; }
}

.footer-links { display: flex; flex-wrap: wrap; gap: 8px 20px; }

.plan-types { display: flex; gap: 24px; margin: -12px 0 16px; }
.service-filter { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; font-size: 12px; color: var(--muted); }
.service-filter select { font: inherit; color: #202322; background: white; border: 1px solid var(--line); border-radius: 6px; padding: 9px; max-width: 100%; }
.service-types { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 0 0 24px; }
.service-types [aria-pressed=true] { color: var(--accent); text-decoration: underline; text-underline-offset: 6px; font-weight: 550; }
.plan-services { margin-top: 20px; font-size: 12px; line-height: 1.6; }
.plan-services > strong { font-weight: 600; }
.plan-services dl, .order-card .plan-services dl { margin: 8px 0; }
.plan-services dl > div, .order-card .plan-services dl > div { display: grid; grid-template-columns: minmax(80px, 1fr) minmax(0, 2fr); gap: 12px; margin: 8px 0; font-size: 12px; }
.plan-services dt { color: var(--muted); }
.plan-services dd { margin: 0; overflow-wrap: anywhere; }
.calling-destinations summary { cursor: pointer; padding: 10px 0; }
.calling-destinations p { margin: 8px 0; }
.service-note, .usage-instructions { font-size: 11px; line-height: 1.6; color: var(--muted); }
.purchase-notice { margin: 14px 0; padding: 12px 14px; border-left: 3px solid #94652a; background: #faf6ee; font-size: 12px; line-height: 1.6; }
.purchase-notice p { margin: 4px 0 0; }
.plan-terms-check { margin-top: 14px; }
.plan-types [aria-pressed=true] { color: var(--accent); text-decoration: underline; text-underline-offset: 8px; font-weight: 550; }
.daily-note, .activation-note { font-size: 12px; color: #5d625e; line-height: 1.6; }
.daily-note { margin: 0 0 18px; }
.activation-note { margin: 18px 0 4px; }
.plan-option-copy { min-width: 0; flex-wrap: wrap; }
.plan-option-copy > small { flex-basis: 100%; font-size: 10px; line-height: 1.5; color: var(--muted); overflow-wrap: anywhere; }
.plan-details { font-size: 12px; color: #5d625e; }
.plan-details summary { cursor: pointer; padding: 10px 0; min-height: 44px; }
.plan-details dl, .order-card .plan-details dl { margin: 0 0 12px; }
.plan-details dl > div, .order-card .plan-details dl > div { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 8px 0; font-size: 12px; line-height: 1.6; }
.plan-details dd { margin: 0; overflow-wrap: anywhere; }
.plan-details p { margin: 10px 0; color: var(--muted); font-size: 11px; }
.network-list { list-style: none; padding: 0; margin: 12px 0; max-height: 240px; overflow: auto; }
.network-list li { padding: 8px 0; border-top: 1px solid var(--line); line-height: 1.6; }
.network-list strong, .network-list span { display: block; overflow-wrap: anywhere; }
.checkout-form .field-label { display: block; margin: 0 0 6px; font-size: 12px; color: var(--muted); }
.field-select { width: 100%; min-height: 44px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 6px; background: white; color: inherit; font: inherit; font-size: 13px; }
.field-note { margin: 6px 0 14px; font-size: 11px; color: var(--muted); }
.checkout-form .confirmation a { color: inherit; }
.checkout-form .primary { margin-top: 12px; }
