:root {
  --bg: #04131a;
  --bg-2: #071d27;
  --panel: rgba(9, 32, 42, .92);
  --panel-2: rgba(11, 40, 50, .9);
  --line: rgba(88, 222, 224, .22);
  --line-strong: rgba(88, 232, 224, .44);
  --text: #edfaff;
  --muted: #a9c5cf;
  --cyan: #2ad8df;
  --cyan-2: #75f5ed;
  --green: #7bf03b;
  --green-2: #b0ff75;
  --blue: #58a8ff;
  --danger: #ff7b82;
  --warning: #ffcf65;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(0, 0, 0, .38);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; }
body {
  margin: 0;
  min-width: 280px;
  background:
    radial-gradient(circle at 5% 0%, rgba(25, 183, 199, .14), transparent 32rem),
    radial-gradient(circle at 95% 10%, rgba(102, 235, 73, .11), transparent 34rem),
    linear-gradient(180deg, #031219 0%, #061922 48%, #031118 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 99999;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--cyan);
  color: #00181d;
  font-weight: 800;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 2000;
  border-bottom: 1px solid rgba(89, 223, 224, .16);
  background: rgba(2, 16, 22, .93);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.header-inner {
  width: min(var(--max), calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex: 0 0 auto;
}
.brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 13px;
  border: 1px solid rgba(83, 225, 226, .34);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .25);
}
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: 15px; letter-spacing: -.01em; }
.brand-copy small {
  margin-top: 5px;
  color: #9fbcc6;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(18, 59, 68, .6);
  cursor: pointer;
  place-items: center;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #eaffff;
  transition: .18s ease;
}
.nav-toggle { gap: 5px; }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

.primary-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 5px;
}
.primary-nav > a,
.nav-products > summary {
  min-height: 42px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #c6d9df;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  list-style: none;
  cursor: pointer;
}
.nav-products > summary::-webkit-details-marker { display: none; }
.nav-products > summary::after { content: "⌄"; color: var(--cyan-2); font-size: 17px; line-height: 1; }
.primary-nav > a:hover,
.primary-nav > a:focus-visible,
.nav-products > summary:hover,
.nav-products > summary:focus-visible,
.primary-nav > a[aria-current="page"] {
  border-color: rgba(75, 222, 222, .22);
  background: rgba(20, 70, 79, .45);
  color: white;
  outline: none;
}
.primary-nav .nav-contact {
  margin-left: 5px;
  background: linear-gradient(110deg, var(--cyan), var(--green));
  color: #00191e;
  font-weight: 900;
}
.nav-products { position: relative; }
.nav-submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 310px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(4, 24, 31, .985);
  box-shadow: var(--shadow);
}
.nav-submenu a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 11px;
  text-decoration: none;
}
.nav-submenu a:hover { background: rgba(48, 204, 209, .1); }
.nav-submenu strong { display: block; font-size: 14px; }
.nav-submenu small { display: block; color: var(--muted); font-size: 12px; }
.nav-submenu img { width: 40px; height: 40px; object-fit: contain; border-radius: 10px; }

.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
main { overflow: hidden; }

.hero {
  position: relative;
  padding: 76px 0 66px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(51, 209, 214, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 209, 214, .055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 85%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, .98fr);
  gap: 54px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--cyan-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(123, 240, 59, .11), 0 0 24px rgba(123, 240, 59, .55);
}
.product-mark { width: min(330px, 70%); margin-bottom: 22px; filter: drop-shadow(0 22px 30px rgba(0,0,0,.35)); }
.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: .99;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.hero-lead,
.page-hero .lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: #bad0d7;
  font-size: clamp(17px, 1.65vw, 20px);
  line-height: 1.72;
}
.hero-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 48px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: rgba(14, 47, 57, .72);
  color: white;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}
.button:hover { transform: translateY(-1px); border-color: var(--cyan-2); }
.button.primary { border: 0; background: linear-gradient(110deg, var(--cyan), var(--green)); color: #00191d; }
.button.ghost { background: transparent; }
.hero-points { margin: 26px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 18px; list-style: none; color: #b8ccd2; font-size: 13px; }
.hero-points li::before { content: "✓"; color: var(--green); font-weight: 950; margin-right: 7px; }

.hero-visual {
  min-height: 590px;
  position: relative;
  display: grid;
  place-items: center;
}
.visual-orbit {
  position: absolute;
  width: 510px;
  height: 510px;
  border: 1px solid rgba(82, 225, 224, .17);
  border-radius: 50%;
  box-shadow: inset 0 0 90px rgba(38, 198, 204, .04);
}
.visual-orbit::before,
.visual-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(123, 240, 59, .13);
  border-radius: 50%;
}
.visual-orbit::before { inset: 50px; }
.visual-orbit::after { inset: 104px; }
.phone-stack { position: relative; width: 430px; height: 560px; }
.phone {
  position: absolute;
  width: 228px;
  padding: 7px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(85, 232, 229, .95), rgba(123, 240, 59, .92));
  box-shadow: 0 34px 80px rgba(0, 0, 0, .55);
}
.phone img { display: block; width: 100%; border-radius: 26px; }
.phone.back { left: 34px; top: 84px; transform: rotate(-6deg); opacity: .82; }
.phone.front { right: 30px; top: 22px; transform: rotate(3deg); }
.status-card {
  position: absolute;
  right: 0;
  bottom: 62px;
  width: 190px;
  padding: 14px 16px;
  border: 1px solid rgba(82, 225, 224, .35);
  border-radius: 14px;
  background: rgba(7, 31, 40, .94);
  box-shadow: 0 18px 55px rgba(0,0,0,.4);
}
.status-card strong { display: block; font-size: 14px; }
.status-card span { color: var(--muted); font-size: 12px; }

.metrics {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(8, 31, 40, .68);
}
.metric { padding: 18px 20px; border-right: 1px solid var(--line); }
.metric:last-child { border-right: 0; }
.metric strong { display: block; color: white; font-size: 22px; }
.metric span { display: block; color: var(--muted); font-size: 12px; }

.section { padding: 82px 0; }
.section.compact { padding: 64px 0; }
.section.tint { border-block: 1px solid rgba(84, 222, 223, .1); background: rgba(4, 23, 30, .5); }
.section-heading { max-width: 790px; margin-bottom: 34px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading h2 { margin: 0; font-size: clamp(32px, 4.2vw, 50px); line-height: 1.05; letter-spacing: -.04em; text-wrap: balance; }
.section-heading p { margin: 14px 0 0; color: var(--muted); font-size: 17px; }
.kicker { margin: 0 0 10px; color: var(--green-2); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }

.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(11, 41, 51, .85), rgba(5, 25, 33, .88));
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
.feature-card { padding: 24px; }
.icon-box {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(79, 225, 224, .25);
  border-radius: 13px;
  background: rgba(41, 204, 210, .1);
  color: var(--cyan-2);
  font-size: 22px;
  font-weight: 900;
}
.feature-card h3 { margin: 0 0 8px; font-size: 20px; }
.feature-card p { margin: 0; color: var(--muted); }
.feature-card ul { margin: 14px 0 0; padding-left: 18px; color: #c2d5da; }

.update-panel { display: grid; grid-template-columns: .85fr 1.15fr; gap: 24px; align-items: stretch; }
.update-highlight { padding: 28px; position: relative; overflow: hidden; }
.update-highlight::after {
  content: "0.3.11";
  position: absolute;
  right: -16px;
  bottom: -42px;
  color: rgba(115, 242, 69, .07);
  font-size: 120px;
  font-weight: 950;
  letter-spacing: -.08em;
}
.update-highlight h3 { margin: 0; font-size: 30px; line-height: 1.08; }
.update-highlight p { color: var(--muted); }
.release-list { display: grid; gap: 12px; }
.release-item { padding: 19px 20px; display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
.release-number { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: rgba(44, 207, 212, .11); color: var(--cyan-2); font-weight: 950; }
.release-item h4 { margin: 0 0 4px; font-size: 17px; }
.release-item p { margin: 0; color: var(--muted); font-size: 14px; }

.gallery-shell { border: 1px solid var(--line); border-radius: 28px; background: rgba(5, 24, 32, .74); overflow: hidden; }
.gallery-tabs {
  padding: 14px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
  border-bottom: 1px solid var(--line);
}
.gallery-tabs button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid rgba(81, 218, 220, .24);
  border-radius: 999px;
  background: rgba(9, 35, 44, .85);
  color: #bdd1d7;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.gallery-tabs button[aria-selected="true"] { border-color: transparent; background: linear-gradient(110deg, var(--cyan), var(--green)); color: #00191d; }
.gallery-stage {
  min-height: 660px;
  padding: 34px;
  display: grid;
  grid-template-columns: .82fr 1fr .72fr;
  gap: 28px;
  align-items: center;
}
.gallery-copy .number { display: block; color: rgba(58, 211, 217, .16); font-size: 68px; line-height: 1; font-weight: 950; }
.gallery-copy h3 { margin: -18px 0 12px; font-size: 29px; line-height: 1.1; }
.gallery-copy p { margin: 0; color: var(--muted); }
.gallery-phone { justify-self: center; width: min(330px, 100%); padding: 8px; border-radius: 36px; background: linear-gradient(145deg, var(--cyan), var(--green)); box-shadow: 0 30px 80px rgba(0,0,0,.45); }
.gallery-phone img { display: block; width: 100%; max-height: 600px; object-fit: cover; object-position: top; border-radius: 29px; cursor: zoom-in; }
.gallery-facts { display: grid; gap: 10px; }
.gallery-fact { padding: 15px; border-left: 2px solid var(--cyan); border-radius: 0 12px 12px 0; background: rgba(13, 43, 53, .72); }
.gallery-fact strong { display: block; font-size: 14px; }
.gallery-fact span { color: var(--muted); font-size: 12px; }
.demo-note { margin-top: 15px; color: #9fb9c1; font-size: 12px; }

.edition-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.edition { padding: 26px; position: relative; overflow: hidden; }
.edition.featured { border-color: rgba(119, 240, 59, .48); box-shadow: 0 24px 75px rgba(88, 217, 59, .09); }
.edition-badge { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: rgba(48, 207, 212, .11); color: var(--cyan-2); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.edition h3 { margin: 16px 0 5px; font-size: 27px; }
.edition .count { color: var(--green-2); font-size: 14px; font-weight: 900; }
.edition p { color: var(--muted); }
.edition ul { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 9px; color: #c9dbe0; }
.edition li::before { content: "✓"; color: var(--green); font-weight: 950; margin-right: 8px; }

.plus-grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 12px; }
.plus-card { padding: 20px; min-height: 220px; }
.plus-card .plus-num { color: rgba(88, 216, 222, .24); font-size: 38px; line-height: 1; font-weight: 950; }
.plus-card h3 { margin: 16px 0 8px; font-size: 18px; }
.plus-card p { margin: 0; color: var(--muted); font-size: 14px; }

.security-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.security-card { padding: 26px; }
.security-card h3 { margin: 0 0 10px; font-size: 23px; }
.security-card p { color: var(--muted); }
.security-card ul { padding-left: 20px; color: #c5d7dc; }

.tech-table { width: 100%; border-collapse: collapse; overflow: hidden; }
.tech-table th, .tech-table td { padding: 14px 15px; border-bottom: 1px solid rgba(84, 219, 220, .13); text-align: left; vertical-align: top; }
.tech-table th { width: 34%; color: #9fbac3; font-size: 13px; font-weight: 800; }
.tech-table td { color: #e7f8fb; font-weight: 650; }

.notification-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.notification-card { padding: 18px; text-align: center; }
.notification-card img { width: 48px; height: 48px; object-fit: contain; margin-bottom: 9px; }
.notification-card strong { display: block; }
.notification-card span { color: var(--muted); font-size: 12px; }

.cta { padding: 34px; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.cta h2 { margin: 0; font-size: clamp(28px, 3.5vw, 42px); line-height: 1.08; }
.cta p { margin: 12px 0 0; color: var(--muted); }

.page-hero { padding: 70px 0 42px; }
.page-hero-grid { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: center; }
.page-hero-card { padding: 24px; text-align: center; }
.page-hero-card img { width: 190px; height: 190px; object-fit: contain; }
.page-hero-meta { margin-top: 15px; display: grid; gap: 8px; color: var(--muted); font-size: 13px; }
.page-hero-meta strong { color: white; }

.toolbar {
  position: sticky;
  top: 84px;
  z-index: 1200;
  margin-bottom: 26px;
  padding: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(4, 24, 31, .93);
  backdrop-filter: blur(14px);
}
.search-field { flex: 1 1 280px; position: relative; }
.search-field input {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px 10px 40px;
  border: 1px solid rgba(85, 221, 222, .24);
  border-radius: 12px;
  background: rgba(7, 35, 44, .86);
  color: white;
  outline: none;
}
.search-field::before { content: "⌕"; position: absolute; left: 14px; top: 7px; color: var(--cyan-2); font-size: 24px; }
.filter-button {
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid rgba(84, 220, 221, .2);
  border-radius: 11px;
  background: rgba(9, 35, 44, .75);
  color: #bdd0d6;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.filter-button.is-active { background: linear-gradient(110deg, var(--cyan), var(--green)); color: #00191d; border-color: transparent; }

.guide-grid { display: grid; gap: 12px; }
.guide-card { overflow: hidden; }
.guide-card summary {
  padding: 19px 20px;
  display: grid;
  grid-template-columns: 46px 1fr 28px;
  gap: 14px;
  align-items: center;
  cursor: pointer;
  list-style: none;
}
.guide-card summary::-webkit-details-marker { display: none; }
.guide-index { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: rgba(48, 207, 212, .11); color: var(--cyan-2); font-weight: 950; }
.guide-title strong { display: block; font-size: 18px; }
.guide-title span { color: var(--muted); font-size: 13px; }
.guide-card summary::after { content: "+"; color: var(--green-2); font-size: 24px; font-weight: 900; }
.guide-card[open] summary::after { content: "−"; }
.guide-content { padding: 0 22px 22px 80px; color: #c4d7dc; }
.guide-content ol, .guide-content ul { padding-left: 20px; }
.guide-note { padding: 13px 15px; border-left: 3px solid var(--warning); border-radius: 0 10px 10px 0; background: rgba(255, 207, 101, .07); color: #e9ddbd; }
.empty-state { display: none; padding: 34px; text-align: center; }

.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.support-card { padding: 24px; }
.support-card .number { color: rgba(80, 216, 220, .24); font-size: 36px; font-weight: 950; }
.support-card h3 { margin: 12px 0 8px; }
.support-card p { color: var(--muted); }
.support-card a { color: var(--cyan-2); font-weight: 850; text-decoration: none; }
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.step { counter-increment: step; padding: 20px; }
.step::before { content: counter(step); width: 34px; height: 34px; display: grid; place-items: center; margin-bottom: 13px; border-radius: 10px; background: rgba(48, 207, 212, .11); color: var(--cyan-2); font-weight: 950; }
.step strong { display: block; }
.step span { color: var(--muted); font-size: 13px; }

.legal-layout { display: grid; grid-template-columns: 300px minmax(0,1fr); gap: 24px; align-items: start; }
.legal-aside { position: sticky; top: 155px; padding: 18px; }
.legal-aside h2 { margin: 0 0 12px; font-size: 18px; }
.legal-index { max-height: calc(100vh - 230px); overflow: auto; display: grid; gap: 4px; }
.legal-index a { padding: 8px 10px; border-radius: 9px; color: #b7cbd1; font-size: 12px; text-decoration: none; }
.legal-index a:hover { background: rgba(47, 203, 208, .1); color: white; }
.legal-main { display: grid; gap: 13px; }
.legal-section { padding: 22px; scroll-margin-top: 160px; }
.legal-section .legal-number { color: var(--cyan-2); font-size: 12px; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; }
.legal-section h2 { margin: 5px 0 10px; font-size: 23px; line-height: 1.2; }
.legal-section p { color: #c3d6db; }
.legal-section li { color: #c3d6db; }
.legal-alert { padding: 17px 18px; border-left: 3px solid var(--warning); border-radius: 0 12px 12px 0; background: rgba(255,207,101,.07); color: #eee0bb; }
.legal-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

.site-footer { margin-top: 72px; border-top: 1px solid rgba(83, 222, 223, .15); background: rgba(2, 15, 21, .88); }
.footer-grid { padding: 38px 0; display: grid; grid-template-columns: 1.2fr repeat(3, .8fr); gap: 34px; }
.footer-brand { display: flex; gap: 13px; align-items: flex-start; }
.footer-brand img { width: 62px; height: 62px; object-fit: cover; border-radius: 15px; border: 1px solid var(--line); }
.footer-brand strong { display: block; font-size: 18px; }
.footer-brand p { margin: 7px 0 0; color: var(--muted); font-size: 13px; }
.footer-col h2 { margin: 0 0 10px; font-size: 14px; }
.footer-col a { display: block; margin: 7px 0; color: #abc2ca; font-size: 13px; text-decoration: none; }
.footer-col a:hover { color: white; }
.footer-bottom { padding: 18px 0 24px; border-top: 1px solid rgba(83, 222, 223, .1); color: #8eabb4; font-size: 12px; display: flex; justify-content: space-between; gap: 20px; }

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
  place-items: center;
  padding: 26px;
  background: rgba(0, 7, 10, .9);
  backdrop-filter: blur(12px);
}
.image-modal.is-open { display: grid; }
.image-modal img { max-height: 90vh; max-width: min(92vw, 650px); border-radius: 25px; box-shadow: var(--shadow); }
.modal-close { position: absolute; right: 22px; top: 22px; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: rgba(7, 31, 40, .92); color: white; font-size: 26px; cursor: pointer; }

[data-hidden="true"] { display: none !important; }

@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .product-mark { margin-inline: auto; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-points { justify-content: center; }
  .hero-visual { min-height: 530px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .plus-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-stage { grid-template-columns: .8fr 1fr; }
  .gallery-facts { grid-column: 1 / -1; grid-template-columns: repeat(3,1fr); }
  .page-hero-grid { grid-template-columns: 1fr 260px; }
  .support-grid { grid-template-columns: repeat(2,1fr); }
  .legal-layout { grid-template-columns: 240px 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .header-inner { min-height: 68px; }
  .nav-toggle { display: grid; }
  .primary-nav {
    display: none;
    position: fixed;
    top: 76px;
    right: 12px;
    left: 12px;
    max-height: calc(100dvh - 88px);
    overflow-y: auto;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(3, 24, 31, .99);
    box-shadow: var(--shadow);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a,
  .nav-products > summary { width: 100%; justify-content: space-between; }
  .primary-nav .nav-contact { margin-left: 0; justify-content: center; }
  .nav-products { width: 100%; }
  .nav-submenu { position: static; width: 100%; margin-top: 6px; box-shadow: none; background: rgba(7, 38, 47, .72); }
  .hero { padding-top: 56px; }
  .metrics { grid-template-columns: repeat(2,1fr); }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .update-panel, .security-grid { grid-template-columns: 1fr; }
  .edition-grid { grid-template-columns: 1fr; }
  .gallery-stage { grid-template-columns: 1fr; text-align: center; min-height: 0; }
  .gallery-facts { grid-template-columns: 1fr; text-align: left; }
  .gallery-copy .number { font-size: 54px; }
  .notification-row { grid-template-columns: repeat(2,1fr); }
  .cta { grid-template-columns: 1fr; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-card { max-width: 360px; }
  .steps { grid-template-columns: repeat(2,1fr); }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-aside { position: static; }
  .legal-index { max-height: none; grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 620px) {
  .container, .header-inner { width: min(100% - 22px, var(--max)); }
  .brand-copy small { display: none; }
  .hero { padding: 42px 0 48px; }
  .hero h1, .page-hero h1 { font-size: clamp(38px, 12vw, 54px); }
  .hero-visual { min-height: 450px; transform: scale(.88); margin-inline: -26px; }
  .visual-orbit { width: 440px; height: 440px; }
  .phone-stack { width: 385px; height: 485px; }
  .phone { width: 198px; }
  .phone.back { left: 25px; }
  .phone.front { right: 22px; }
  .status-card { right: 4px; bottom: 52px; }
  .section { padding: 62px 0; }
  .feature-grid, .support-grid { grid-template-columns: 1fr; }
  .plus-grid { grid-template-columns: 1fr; }
  .gallery-stage { padding: 22px 16px 28px; }
  .gallery-phone { width: min(290px, 100%); }
  .metrics { margin-top: 22px; }
  .metric { padding: 14px; }
  .notification-row { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .guide-card summary { grid-template-columns: 40px 1fr 24px; gap: 10px; padding: 16px; }
  .guide-content { padding: 0 16px 18px; }
  .legal-index { grid-template-columns: 1fr; }
  .legal-section { padding: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media print {
  @page { margin: 16mm 14mm; size: auto; }
  html, body { background: #fff !important; color: #111 !important; }
  body { font-family: Arial, Helvetica, sans-serif; font-size: 10.5pt; line-height: 1.5; }
  .site-header, .site-footer, .toolbar, .legal-aside, .hero-actions, .page-hero-card, .button, [data-print-hide], .image-modal { display: none !important; }
  main, .section, .page-hero { padding: 0 !important; overflow: visible !important; }
  .container { width: 100% !important; max-width: none !important; }
  .page-hero { margin-bottom: 10mm; }
  .page-hero h1 { color: #000 !important; font-size: 25pt; line-height: 1.15; }
  .page-hero .lead, .eyebrow, .kicker { color: #333 !important; }
  .legal-layout { display: block !important; }
  .legal-main { display: block !important; }
  .legal-section {
    display: block !important;
    margin: 0 0 7mm;
    padding: 0 0 5mm;
    border: 0 !important;
    border-bottom: 1px solid #cfcfcf !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    page-break-inside: avoid;
  }
  .legal-section h2 { color: #000 !important; font-size: 15pt; }
  .legal-section p, .legal-section li, .legal-alert { color: #111 !important; }
  .legal-number { color: #444 !important; }
  .legal-alert { background: transparent !important; border: 1px solid #999 !important; padding: 4mm !important; }
  a { color: #000 !important; text-decoration: none !important; }
}


/* =========================================================
   Logotipos oficiales IRCPode · R2
   ========================================================= */

.official-logo-main {
  border-radius: 26px;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, .42),
    0 0 0 1px rgba(65, 224, 225, .12);
}

.official-page-logo {
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 20%, rgba(23, 191, 255, .12), transparent 38%),
    radial-gradient(circle at 80% 78%, rgba(126, 241, 39, .10), transparent 38%),
    rgba(6, 31, 39, .82);
}

.official-page-logo img {
  width: min(230px, 100%);
  height: auto;
  aspect-ratio: 1;
  border-radius: 20px;
  object-fit: cover;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, .38),
    0 0 0 1px rgba(78, 228, 225, .16);
}

.technical-brand-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 360px);
  gap: 24px;
  align-items: stretch;
}

.technical-logo-card {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: 24px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(20, 188, 255, .13), transparent 42%),
    radial-gradient(circle at 78% 75%, rgba(126, 242, 42, .10), transparent 42%),
    rgba(5, 29, 37, .82);
}

.technical-logo-card img {
  width: min(320px, 100%);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, .42);
}

.technical-logo-card p {
  display: grid;
  gap: 6px;
  margin: 0;
}

.technical-logo-card strong {
  color: #fff;
  font-size: 17px;
}

.technical-logo-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 880px) {
  .technical-brand-grid {
    grid-template-columns: 1fr;
  }

  .technical-logo-card {
    max-width: 430px;
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .official-logo-main {
    width: min(285px, 78%);
    border-radius: 20px;
  }

  .official-page-logo img {
    width: min(210px, 72vw);
  }
}

/* BEGIN IRCPODE CAPTURAS ESTABLES */
.visual-reference-section{padding-top:28px;padding-bottom:54px}
.visual-reference-section .section-heading{margin-bottom:24px}
.visual-reference-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.visual-reference-card{margin:0;padding:16px;display:grid;gap:12px;align-content:start}
.visual-reference-card img{display:block;width:100%;max-height:560px;object-fit:contain;object-position:top;border-radius:18px;background:rgba(1,16,22,.45);box-shadow:0 18px 45px rgba(0,0,0,.25)}
.visual-reference-card figcaption{display:grid;gap:4px}
.visual-reference-card strong{font-size:16px;color:#f2fdff}
.visual-reference-card span{font-size:13px;color:var(--muted)}
.visual-reference-note{margin-top:16px;color:#9fb9c1;font-size:12px}
@media(max-width:900px){.visual-reference-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:620px){.visual-reference-grid{grid-template-columns:1fr}.visual-reference-card img{max-height:620px}}
/* END IRCPODE CAPTURAS ESTABLES */
