/* Cryptanio marketing site — approved light “Line” direction. */
:root {
  --bg: #f2f2f2;
  --surface: #ffffff;
  --ink: #242329;
  --muted: #6f6c70;
  --line: rgba(36, 35, 41, 0.1);
  --accent: #d99a24;
  --accent-bright: #f2bf54;
  --accent-soft: #fff0cc;
  --shadow-sm: 0 14px 42px rgba(36, 35, 41, 0.05);
  --shadow-lg: 0 24px 70px rgba(36, 35, 41, 0.08);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 24px;
  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 84% 5%, rgba(242, 191, 84, 0.23), transparent 31rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), transparent 430px),
    var(--bg);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--accent-bright);
  color: var(--ink);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  hyphens: none;
  overflow-wrap: normal;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  transform: none;
}

.wrap {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

.site-nav {
  position: sticky;
  z-index: 100;
  top: 14px;
  width: min(1200px, calc(100% - 28px));
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 14px auto 0;
  padding: 9px 12px 9px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 44px rgba(36, 35, 41, 0.06);
  backdrop-filter: blur(18px);
}

.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 54px rgba(36, 35, 41, 0.09);
}

.brand {
  min-height: 44px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 142px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.nav-links > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.82rem;
  transition: color 160ms ease;
}

.nav-links > a:hover,
.nav-links > a[aria-current="page"] {
  color: var(--ink);
}

.language-switcher {
  position: relative;
  display: flex;
  align-items: center;
}

.language-trigger {
  min-width: 72px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(242, 242, 242, 0.7);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.language-trigger:hover,
.language-switcher.language-open .language-trigger {
  border-color: rgba(217, 154, 36, 0.45);
  background: var(--accent-soft);
}

.language-trigger svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
}

.language-chevron {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1;
  transition: transform 160ms ease;
}

.language-switcher.language-open .language-chevron {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  z-index: 120;
  top: calc(100% + 10px);
  right: 0;
  width: 300px;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: var(--shadow-lg);
}

.language-switcher.language-open .language-menu {
  display: grid;
}

.language-menu a {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 10px;
  border-radius: 9px;
  color: var(--muted);
  font-size: 0.8rem;
  transition: background 160ms ease, color 160ms ease;
}

.language-menu a:hover,
.language-menu a[aria-current="true"] {
  background: var(--bg);
  color: var(--ink);
}

.language-check {
  color: var(--accent);
  font-weight: 800;
}

.language-select {
  min-width: 118px;
  min-height: 42px;
  padding: 0 30px 0 11px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background-color: rgba(242, 242, 242, 0.72);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 650;
  cursor: pointer;
}

.language-select:hover,
.language-select:focus {
  border-color: rgba(217, 154, 36, 0.5);
  background-color: var(--accent-soft);
}

.nav-burger {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink);
  cursor: pointer;
}

.nav-burger svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.nav-burger .icon-close,
.site-nav.nav-open .nav-burger .icon-open {
  display: none;
}

.site-nav.nav-open .nav-burger .icon-close {
  display: block;
}

.button,
.nav-action {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 650;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button-primary,
.nav-action {
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(217, 154, 36, 0.2);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.button:hover,
.nav-action:hover {
  transform: translateY(-2px);
}

.button-primary:hover,
.nav-action:hover {
  box-shadow: 0 14px 30px rgba(217, 154, 36, 0.27);
}

.button-secondary:hover {
  border-color: rgba(36, 35, 41, 0.22);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.eyebrow,
.section-label,
.service-tag,
.back-link {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}

.eyebrow::before,
.section-label::before {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--accent-bright);
  content: "";
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(410px, 1.1fr);
  gap: clamp(42px, 6vw, 78px);
  align-items: center;
  padding-block: clamp(72px, 9vw, 108px) clamp(64px, 8vw, 94px);
}

.catalog-hero {
  padding-block: clamp(68px, 10vw, 118px) clamp(18px, 3vw, 38px);
}

.catalog-hero h1 {
  max-width: 920px;
  margin: 20px 0 0;
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 580;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.hero h1,
.detail-hero h1 {
  margin: 20px 0 0;
  font-size: clamp(3.25rem, 5.7vw, 5.25rem);
  font-weight: 580;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 680px;
}

.hero h1 .accent-word,
.detail-hero h1 .accent-word {
  color: var(--accent);
}

.hero-lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.65;
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.proof span {
  min-width: 0;
  padding: 14px 12px;
  border-right: 1px solid var(--line);
  line-height: 1.45;
}

.proof span:first-child {
  padding-left: 0;
}

.proof span:last-child {
  border-right: 0;
}

.proof strong {
  color: var(--ink);
  font-weight: 700;
}

.network-board {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.network-board-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  padding-inline: 4px;
}

.network-board-head h2 {
  margin-bottom: 0;
  font-size: 1.12rem;
  font-weight: 650;
}

.network-board-head span {
  color: var(--muted);
  font-size: 0.72rem;
}

.network-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.network-item {
  min-width: 0;
  border: 1px solid rgba(36, 35, 41, 0.045);
  border-radius: 13px;
  background: var(--bg);
}

.network-item > a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px;
  border-radius: inherit;
  transition: background 150ms ease, transform 150ms ease;
}

.network-item > a:hover {
  background: var(--surface);
  transform: translateY(-1px);
}

.network-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 3px;
  border: 1px solid rgba(36, 35, 41, 0.07);
  border-radius: 11px;
  background: var(--surface);
}

.network-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.network-name {
  min-width: 0;
}

.network-name strong,
.network-name small {
  display: block;
}

.network-name strong {
  overflow: hidden;
  font-size: 0.78rem;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.network-name small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.68rem;
}

.token-note {
  color: var(--accent);
  font-style: normal;
  font-weight: 700;
}

.network-catalog {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.network-catalog-card {
  min-height: 188px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.network-catalog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 154, 36, 0.38);
  box-shadow: var(--shadow-lg);
}

.network-catalog-head {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.network-token-pill {
  padding: 4px 7px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #99630a;
  font-size: 0.62rem;
  font-weight: 750;
}

.network-card-arrow {
  margin-left: auto;
  color: var(--muted);
  font-size: 1.12rem;
}

.network-catalog-card > strong {
  overflow: hidden;
  font-size: 1.02rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.network-catalog-card > span:not(.network-catalog-head),
.network-catalog-card > small {
  color: var(--muted);
  font-size: 0.76rem;
}

.network-catalog-card > span:not(.network-catalog-head) {
  margin-top: 6px;
}

.network-catalog-card > small {
  margin-top: auto;
  padding-top: 18px;
}

.catalog-note {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.network-title-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.network-title-line .service-tag {
  margin: 0;
}

.network-hero-icon {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.network-hero-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.network-facts > strong {
  overflow-wrap: anywhere;
}

.section {
  padding-block: clamp(56px, 8vw, 96px);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 38px;
}

.section-head h2 {
  max-width: 780px;
  margin: 14px 0 0;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 580;
  letter-spacing: -0.055em;
  line-height: 1;
}

.section-head > p {
  max-width: 420px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.service-card {
  min-height: 278px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:nth-child(1),
.service-card:nth-child(5) {
  background: linear-gradient(145deg, var(--surface), var(--accent-soft));
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 154, 36, 0.38);
  box-shadow: 0 22px 58px rgba(36, 35, 41, 0.08);
}

.service-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent-bright));
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

.service-card h3 {
  margin: 22px 0 0;
  font-size: 1.22rem;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.service-card > p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.service-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 24px;
}

.service-price {
  color: var(--muted);
  font-size: 0.8rem;
}

.service-price strong {
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 700;
}

.service-link {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--surface);
  font-size: 1.35rem;
  transition: transform 160ms ease, background 160ms ease;
}

.service-link:hover {
  transform: translateX(3px);
  background: var(--accent);
  color: var(--ink);
}

.pricing-hero {
  padding-bottom: clamp(42px, 6vw, 70px);
}

.pricing-proof {
  max-width: 820px;
}

.pricing-rules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.pricing-rules article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
}

.pricing-rules h2 {
  margin: 13px 0 10px;
  font-size: 1.1rem;
}

.pricing-rules article > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.62;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-service-section {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.pricing-service-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
  margin-bottom: 26px;
}

.pricing-service-head h2 {
  margin-bottom: 6px;
  font-size: 1.45rem;
}

.pricing-service-head p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.pricing-service-head > a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 1.2rem;
}

.pricing-table-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.pricing-table-plan {
  min-width: 0;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.pricing-table-plan:last-child {
  border-right: 0;
}

.pricing-table-plan > span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-table-plan > strong {
  display: block;
  font-size: 1.2rem;
}

.pricing-table-plan > strong small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 550;
}

.pricing-table-plan p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.55;
}

.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: clamp(30px, 5vw, 48px);
  border-radius: var(--radius-lg);
  background: linear-gradient(125deg, var(--accent), var(--accent-bright));
  box-shadow: 0 24px 64px rgba(217, 154, 36, 0.18);
}

.cta h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 620;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.cta .button-primary {
  background: var(--ink);
  color: var(--surface);
  box-shadow: none;
}

.site-footer {
  margin-top: clamp(64px, 9vw, 112px);
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 2.1fr);
  gap: clamp(48px, 8vw, 112px);
  padding-block: 58px 52px;
}

.footer-brand p {
  max-width: 31ch;
  margin: 18px 0 16px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.footer-email,
.footer-column a,
.footer-bottom button {
  transition: color 150ms ease;
}

.footer-email {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 650;
}

.footer-email:hover,
.footer-column a:hover,
.footer-bottom button:hover {
  color: #a86900;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(110px, 1fr));
  gap: clamp(24px, 4vw, 54px);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h2 {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.footer-bottom {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.74rem;
}

.footer-bottom button {
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(111, 108, 112, 0.38);
  text-underline-offset: 3px;
  cursor: pointer;
}

.consent-panel[hidden],
.consent-settings[hidden],
.consent-summary[hidden],
.consent-close[hidden] {
  display: none;
}

.consent-panel {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  background: rgba(36, 35, 41, 0.28);
  backdrop-filter: blur(4px);
}

.consent-card {
  width: min(1080px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(36, 35, 41, 0.985);
  color: #fff;
  box-shadow: 0 28px 84px rgba(20, 18, 23, 0.32);
}

.consent-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, auto);
  align-items: center;
  gap: 32px;
  padding: 24px;
}

.consent-copy h2,
.consent-settings h2 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.consent-copy > p,
.consent-settings-heading p {
  max-width: 720px;
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.79rem;
  line-height: 1.58;
}

.consent-links {
  display: flex;
  gap: 8px;
}

.consent-links a,
.consent-text-button {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.75rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.consent-button {
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
}

.consent-accept {
  border-color: var(--accent-bright);
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  color: var(--ink);
}

.consent-reject {
  border-color: rgba(255, 255, 255, 0.4);
  background: #fff;
  color: var(--ink);
}

.consent-button:hover {
  transform: translateY(-1px);
}

.consent-text-button {
  grid-column: 1 / -1;
  justify-self: center;
  padding: 5px 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.consent-settings {
  padding: 24px;
}

.consent-settings-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.consent-close {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
}

.consent-categories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-block: 22px;
}

.consent-category {
  min-height: 138px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.045);
}

.consent-category h3 {
  margin-bottom: 7px;
  font-size: 0.86rem;
}

.consent-category p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.74rem;
  line-height: 1.5;
}

.consent-category-muted {
  opacity: 0.72;
}

.consent-always-on {
  flex: none;
  color: var(--accent-bright);
  font-size: 0.68rem;
  font-weight: 700;
  white-space: nowrap;
}

.consent-toggle {
  position: relative;
  width: 42px;
  height: 24px;
  flex: 0 0 42px;
}

.consent-toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.consent-toggle span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: background 150ms ease;
}

.consent-toggle span::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  content: "";
  transition: transform 150ms ease;
}

.consent-toggle input:checked + span {
  background: var(--accent);
}

.consent-toggle input:checked + span::after {
  transform: translateX(18px);
}

.consent-toggle input:focus-visible + span {
  outline: 3px solid rgba(242, 191, 84, 0.55);
  outline-offset: 3px;
}

.consent-settings-actions {
  max-width: 430px;
  margin-left: auto;
}

/* Utility, company and legal pages */
.utility-hero {
  padding-block: clamp(68px, 10vw, 120px) clamp(42px, 7vw, 76px);
}

.utility-hero h1 {
  max-width: 950px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 6.5vw, 5.7rem);
  font-weight: 560;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.utility-hero .hero-lede {
  max-width: 720px;
}

.utility-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 32px;
}

.utility-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 7vw, 90px);
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.66);
}

.utility-section h2,
.contact-panel h2 {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  font-weight: 620;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.utility-section p,
.utility-card p,
.contact-panel p,
.legal-outline p {
  color: var(--muted);
  line-height: 1.72;
}

.utility-section p:last-child,
.utility-card p:last-child,
.contact-panel p:last-child,
.legal-outline p:last-child {
  margin-bottom: 0;
}

.utility-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.utility-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.utility-card h2 {
  margin-bottom: 34px;
  font-size: 1.08rem;
}

.utility-cta {
  align-items: center;
}

.utility-cta .button {
  justify-self: end;
}

.text-link,
.utility-card a,
.contact-panel a {
  color: #9b6506;
  text-decoration: underline;
  text-decoration-color: rgba(155, 101, 6, 0.32);
  text-underline-offset: 3px;
}

.faq-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item summary {
  padding: 22px 64px 22px 24px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 650;
  cursor: pointer;
}

.faq-item p {
  max-width: 760px;
  margin: -4px 24px 24px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 7vw, 88px);
  padding: clamp(30px, 5vw, 54px);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: #fff;
}

.contact-panel > div > p:not(.section-label) {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.62);
}

.contact-topics {
  display: grid;
  gap: 8px;
}

.contact-topics a {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
}

.contact-topics a:hover {
  border-color: rgba(242, 191, 84, 0.5);
  background: rgba(255, 255, 255, 0.04);
}

.contact-topics span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.79rem;
}

.use-case-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.use-case-list article {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 26px 28px;
  border-bottom: 1px solid var(--line);
}

.use-case-list article:last-child {
  border-bottom: 0;
}

.use-case-list article > span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.use-case-list h2 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.use-case-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.use-case-list a {
  color: #99630a;
  font-size: 0.79rem;
  font-weight: 650;
  white-space: nowrap;
}

.utility-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.utility-table {
  width: 100%;
  border-collapse: collapse;
}

.utility-table th,
.utility-table td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.utility-table th {
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.utility-table td {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.utility-table tr:last-child td {
  border-bottom: 0;
}

.utility-table code,
.utility-card code {
  color: var(--ink);
  font-size: 0.88em;
}

.draft-notice {
  max-width: 780px;
  margin-top: 30px;
  padding: 15px 18px;
  border: 1px solid rgba(217, 154, 36, 0.42);
  border-radius: 12px;
  background: var(--accent-soft);
  font-size: 0.86rem;
  line-height: 1.55;
}

.legal-outline {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.legal-outline article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 22px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

.legal-outline article:last-child {
  border-bottom: 0;
}

.legal-outline article > span {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 750;
}

.legal-outline h2 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

/* Service detail pages */
.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
  padding-block: clamp(58px, 9vw, 108px);
}

.detail-hero h1 {
  max-width: 820px;
}

.back-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.back-link::before {
  color: var(--accent);
  content: "←";
}

.detail-hero .service-tag {
  margin-top: 24px;
}

.detail-summary,
.step-card,
.feature-card,
.plan-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.detail-summary {
  padding: 26px;
  background: linear-gradient(145deg, var(--surface), var(--accent-soft));
}

.detail-summary small,
.detail-summary > strong,
.detail-summary > span {
  display: block;
}

.detail-summary > small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-summary > strong {
  margin-top: 14px;
  font-size: 3.2rem;
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1;
}

.detail-summary > span {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.summary-facts {
  margin: 26px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.summary-facts li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-block: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
}

.summary-facts span {
  color: var(--muted);
}

.summary-facts strong {
  max-width: 58%;
  text-align: right;
}

.story {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(30px, 7vw, 90px);
  border-top: 1px solid var(--line);
}

.story h2 {
  margin: 10px 0 0;
  font-size: clamp(1.8rem, 4vw, 3.3rem);
  font-weight: 580;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.story-copy {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.story-copy p {
  margin-bottom: 18px;
}

.story-copy strong {
  color: var(--ink);
  font-weight: 650;
}

.step-grid,
.feature-grid,
.plan-grid {
  display: grid;
  gap: 12px;
}

.step-grid,
.plan-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.step-card,
.feature-card,
.plan-card {
  padding: 24px;
}

.step-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 750;
}

.step-card h3,
.feature-card h3,
.plan-card h3 {
  margin: 20px 0 0;
  font-size: 1.12rem;
  font-weight: 650;
}

.step-card p,
.feature-card p,
.plan-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.plan-card > strong {
  display: block;
  margin-top: 22px;
  font-size: 2rem;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.plan-card > strong small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0;
}

.plan-card.featured {
  border-color: var(--accent);
  box-shadow: 0 18px 50px rgba(217, 154, 36, 0.12);
}

.plan-badge {
  display: inline-flex;
  margin-left: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
}

.pricing-note {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.pricing-note strong {
  color: var(--ink);
}

.other-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.other-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  font-size: 0.84rem;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.other-link::after {
  color: var(--accent);
  content: "→";
}

.other-link:hover {
  border-color: rgba(217, 154, 36, 0.45);
  background: var(--surface);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid rgba(217, 154, 36, 0.42);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .hero,
  .detail-hero {
    grid-template-columns: 1fr;
  }

  .network-board,
  .detail-summary {
    max-width: 720px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-grid,
  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-card:last-child {
    grid-column: 1 / -1;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand p {
    max-width: 52ch;
  }

  .consent-categories {
    grid-template-columns: 1fr;
  }

  .utility-card-grid,
  .network-catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .consent-category,
  .utility-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 24px, 1200px);
  }

  .site-nav {
    width: min(100% - 16px, 1200px);
    padding-inline: 14px;
    border-radius: 15px;
  }

  .nav-action {
    display: none;
  }

  .nav-burger {
    display: inline-flex;
    margin-left: 0;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 108px);
    overflow-y: auto;
  }

  .site-nav.nav-open .nav-links {
    display: flex;
  }

  .nav-links > a {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
  }

  .language-switcher {
    display: flex;
    margin-left: auto;
    padding-top: 0;
  }

  .language-select {
    min-width: 108px;
  }

  .language-trigger {
    width: 100%;
    justify-content: flex-start;
  }

  .language-trigger .language-chevron {
    margin-left: auto;
  }

  .language-menu {
    position: static;
    width: 100%;
    margin-top: 6px;
    border: 0;
    background: var(--bg);
    box-shadow: none;
  }

  .language-menu a {
    padding-inline: 9px;
  }

  .hero {
    padding-block: 58px 54px;
  }

  .proof {
    grid-template-columns: 1fr;
  }

  .proof span,
  .proof span:first-child {
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof span:last-child {
    border-bottom: 0;
  }

  .network-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-rules,
  .pricing-table-grid,
  .utility-card-grid {
    grid-template-columns: 1fr;
  }

  .pricing-table-plan {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pricing-table-plan:last-child {
    border-bottom: 0;
  }

  .use-case-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .use-case-list a {
    white-space: normal;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    min-height: 82px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
  }

  .consent-summary,
  .utility-section,
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .consent-settings-actions {
    margin-left: 0;
  }

  .utility-cta .button {
    justify-self: start;
  }

  .service-grid,
  .feature-grid,
  .step-grid,
  .plan-grid,
  .story,
  .cta {
    grid-template-columns: 1fr;
  }

  .plan-card:last-child {
    grid-column: auto;
  }

  .network-board,
  .service-card,
  .cta,
  .detail-summary,
  .step-card,
  .feature-card,
  .plan-card {
    border-radius: 18px;
  }
}

@media (max-width: 440px) {
  .brand img {
    width: 126px;
  }

  .hero h1,
  .detail-hero h1 {
    font-size: 2.35rem;
    letter-spacing: -0.05em;
  }

  .network-board,
  .service-card,
  .detail-summary,
  .step-card,
  .feature-card,
  .plan-card {
    padding: 18px;
  }

  .network-board-head {
    align-items: start;
    flex-direction: column;
    gap: 6px;
  }

  .network-list {
    grid-template-columns: 1fr;
  }

  .network-catalog {
    grid-template-columns: 1fr;
  }

  .pricing-service-head {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .pricing-service-head > a {
    grid-column: 1 / -1;
  }

  .actions .button {
    width: 100%;
  }

  .language-menu {
    grid-template-columns: 1fr;
  }

  .language-select {
    width: 78px;
    min-width: 78px;
    padding-left: 8px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .consent-panel {
    padding: 8px;
  }

  .consent-card {
    max-height: calc(100vh - 16px);
    overflow-y: auto;
    border-radius: 15px;
  }

  .consent-summary,
  .consent-settings {
    padding: 18px;
  }

  .consent-actions {
    grid-template-columns: 1fr;
  }

  .consent-text-button {
    grid-column: auto;
  }

  .consent-button {
    width: 100%;
  }

  .utility-hero h1 {
    font-size: 2.55rem;
  }

  .legal-outline article {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
