:root {
  --bg: #050c13;
  --bg-soft: #08131d;
  --panel: rgba(10, 23, 34, 0.76);
  --panel-strong: rgba(8, 18, 28, 0.94);
  --panel-glass: rgba(15, 32, 45, 0.62);
  --text: #f1f7fb;
  --text-muted: #b4c6d3;
  --text-soft: #7f97a8;
  --line: rgba(129, 192, 220, 0.16);
  --line-strong: rgba(83, 244, 221, 0.52);
  --accent: #53f4dd;
  --accent-strong: #a2fff3;
  --blue: #8fc4ff;
  --violet: #9b8cff;
  --success: #90efbd;
  --warning: #ffd89b;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 14px 48px rgba(0, 0, 0, 0.22);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 5rem;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 4%, rgba(61, 221, 201, 0.13), transparent 27rem),
    radial-gradient(circle at 10% 32%, rgba(121, 174, 251, 0.1), transparent 32rem),
    linear-gradient(180deg, #050c13 0%, #08131d 48%, #050c13 100%);
  line-height: 1.65;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 48%, rgba(255,255,255,.018) 50%, transparent 52% 100%);
  background-size: 180px 180px;
}

.ambient-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: .38;
  background-image:
    linear-gradient(rgba(111, 195, 214, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 195, 214, .045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black 0, transparent 82%);
}
.ambient-glow { position: fixed; z-index: -2; width: 34rem; height: 34rem; border-radius: 50%; filter: blur(90px); pointer-events: none; opacity: .18; }
.ambient-glow-one { top: 18%; right: -16rem; background: var(--accent); }
.ambient-glow-two { bottom: 4%; left: -18rem; background: var(--violet); }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--accent-strong); outline-offset: 4px; }
.skip-link { position: fixed; top: -60px; left: 1rem; z-index: 100; padding: .8rem 1rem; border-radius: 10px; background: var(--accent); color: #041015; font-weight: 800; }
.skip-link:focus { top: 1rem; }
.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.section { position: relative; padding: var(--space-7) 0; }

.eyebrow, .panel-label {
  margin: 0 0 .75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 800;
}
.section-heading { max-width: 780px; margin-bottom: 2.3rem; }
.section-heading h2, .contact-copy h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.08; letter-spacing: -.045em; text-wrap: balance; }
.section-heading > p:last-child, .contact-copy > p:last-child { margin-bottom: 0; color: var(--text-muted); font-size: 1.05rem; }
.centered-heading { margin-inline: auto; text-align: center; }
.split-heading { max-width: none; display: grid; grid-template-columns: minmax(0,1.15fr) minmax(300px,.7fr); gap: 3rem; align-items: end; }
.split-heading > p { margin: 0 0 .4rem; }

.site-header { position: sticky; top: 0; z-index: 30; border-bottom: 1px solid rgba(255,255,255,.06); background: rgba(5, 12, 19, .78); backdrop-filter: blur(22px) saturate(125%); }
.header-inner { min-height: 84px; display: flex; align-items: center; gap: 1.6rem; }
.brand { display: inline-flex; flex-direction: column; line-height: 1.05; min-width: 210px; }
.brand-mark { font-size: 1.5rem; font-weight: 900; letter-spacing: .09em; background: linear-gradient(90deg, #fff, var(--accent-strong)); -webkit-background-clip: text; color: transparent; }
.brand-subline { margin-top: .35rem; color: var(--text-soft); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; }
.main-nav { display: flex; justify-content: center; gap: 1.45rem; margin-left: auto; }
.main-nav a { position: relative; color: var(--text-muted); font-size: .92rem; font-weight: 650; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.55rem; height: 2px; background: linear-gradient(90deg,var(--accent),var(--blue)); transition: right .22s ease; }
.main-nav a:hover, .main-nav a:focus-visible, .footer-list a:hover, .footer-list a:focus-visible, .text-link:hover, .text-link:focus-visible, .social-links a:hover, .social-links a:focus-visible { color: var(--accent-strong); }
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.header-cta { margin-left: .5rem; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; min-height: 48px; padding: .82rem 1.3rem; border: 1px solid transparent; border-radius: 999px; font-weight: 800; text-align: center; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { color: #041015; background: linear-gradient(105deg, var(--accent), var(--accent-strong)); box-shadow: 0 14px 38px rgba(61,221,201,.22); }
.button-secondary { color: var(--text); border-color: rgba(121,174,251,.34); background: linear-gradient(120deg, rgba(121,174,251,.13), rgba(155,140,255,.08)); }
.button-outline { color: var(--text); border-color: rgba(61,221,201,.34); background: rgba(61,221,201,.06); }
.text-link { color: var(--accent-strong); font-weight: 800; }

.hero { padding-top: 6rem; min-height: calc(100vh - 84px); display: grid; align-items: center; }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: linear-gradient(90deg,transparent,rgba(61,221,201,.42),transparent); }
.hero-grid { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(340px,.82fr); gap: 3.2rem; align-items: center; }
.hero-copy h1 { max-width: 13ch; margin: 0; font-size: clamp(2.8rem, 5.6vw, 5.25rem); line-height: .99; letter-spacing: -.065em; text-wrap: balance; }
.hero-copy h1::selection { background: var(--accent); color: #041015; }
.hero-lead { max-width: 720px; margin: 1.6rem 0 0; color: var(--text-muted); font-size: clamp(1.05rem,1.6vw,1.25rem); }
.hero-actions, .inline-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-actions { margin-top: 2rem; }
.trust-strip { display: flex; flex-wrap: wrap; gap: .65rem 1.2rem; margin-top: 2rem; color: var(--text-soft); font-size: .88rem; }
.trust-strip span { display: inline-flex; align-items: center; gap: .5rem; }
.trust-strip span::before { content: ""; width: .42rem; height: .42rem; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); }
.hero-panel, .card, .feature-card, .screenshot-card, .alert-mockup { border: 1px solid var(--line); background: linear-gradient(145deg, rgba(15,32,45,.84), rgba(7,17,26,.86)); box-shadow: var(--shadow-soft); }
.hero-panel { position: relative; overflow: hidden; padding: 2rem; border-radius: var(--radius-lg); border-color: var(--line-strong); }
.hero-panel::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 100% 0, rgba(61,221,201,.17), transparent 34%); pointer-events: none; }
.panel-topline { display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.pulse-dot { color: var(--success); font-size: .74rem; font-weight: 800; }
.pulse-dot::before { content: ""; display: inline-block; width: .45rem; height: .45rem; margin-right: .45rem; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 5px rgba(144,239,189,.1),0 0 16px rgba(144,239,189,.55); }
.hero-panel h2 { margin: .4rem 0 0; font-size: 2.1rem; letter-spacing: -.035em; }
.panel-intro { color: var(--text-muted); }
.signal-list { display: grid; gap: 1rem; margin: 1.6rem 0 0; }
.signal-list div { padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.08); }
.signal-list dt { margin-bottom: .25rem; color: var(--text-soft); font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 800; }
.signal-list dd { margin: 0; }
.mini-dashboard { height: 92px; display: flex; align-items: end; gap: .6rem; margin-top: 1.6rem; padding: 1rem; border-radius: 14px; background: rgba(3,10,16,.55); }
.mini-dashboard span { flex: 1; height: var(--level); border-radius: 5px 5px 2px 2px; background: linear-gradient(180deg,var(--accent-strong),rgba(121,174,251,.4)); box-shadow: 0 0 18px rgba(61,221,201,.12); }

.value-grid, .services-grid, .ecosystem-grid, .about-grid { display: grid; gap: 1.25rem; }
.value-grid, .services-grid, .ecosystem-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
.about-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
.card, .feature-card { border-radius: var(--radius-md); padding: 1.5rem; }
.card { transition: transform .22s ease, border-color .22s ease, background .22s ease; }
.card:hover { transform: translateY(-4px); border-color: rgba(61,221,201,.28); background: linear-gradient(145deg,rgba(18,39,53,.9),rgba(8,18,28,.9)); }
.card h3, .feature-card h3, .site-footer h3 { margin: 0 0 .7rem; font-size: 1.08rem; }
.card p, .feature-card p, .site-footer p, .footer-list li { margin: 0; color: var(--text-muted); }
.numbered-card { position: relative; padding-top: 3.7rem; min-height: 250px; }
.card-number { position: absolute; top: 1.2rem; left: 1.5rem; color: rgba(120,240,228,.5); font-size: .78rem; font-weight: 900; letter-spacing: .15em; }
.numbered-card::after { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; background: linear-gradient(135deg,rgba(61,221,201,.07),transparent 46%); }

.section-emphasis { background: linear-gradient(180deg,rgba(8,18,28,.38),rgba(8,18,28,.78),rgba(8,18,28,.38)); }
.feature-layout { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(300px,.8fr); gap: 1.4rem; align-items: stretch; }
.feature-card-primary { padding: 2rem; border-color: var(--line-strong); border-radius: var(--radius-lg); background: linear-gradient(145deg,rgba(61,221,201,.12),rgba(8,19,29,.96) 42%); }
.status-badge { display: inline-flex; align-items: center; width: fit-content; padding: .42rem .75rem; border: 1px solid rgba(61,221,201,.24); border-radius: 999px; color: var(--accent-strong); background: rgba(61,221,201,.1); font-size: .76rem; font-weight: 850; letter-spacing: .03em; }
.status-beta { color: #cfe0ff; border-color: rgba(121,174,251,.26); background: rgba(121,174,251,.11); }
.status-live { color: #c8f9dc; border-color: rgba(144,239,189,.24); background: rgba(144,239,189,.1); }
.status-channel { color: #ffe6bc; border-color: rgba(255,216,155,.24); background: rgba(255,216,155,.1); }
.status-row { margin: 1rem 0; }
.feature-list, .compact-checks, .footer-list { list-style: none; margin: 0; padding: 0; }
.feature-list { display: grid; gap: 1rem; margin: 1.4rem 0 1.8rem; }
.feature-list li, .compact-checks li { position: relative; padding-left: 1.55rem; color: var(--text-muted); }
.feature-list li::before, .compact-checks li::before { content: ""; position: absolute; left: 0; top: .68rem; width: .45rem; height: .45rem; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(61,221,201,.08); }
.feature-stack { display: grid; gap: 1.2rem; }
.outcome-card { display: flex; gap: 1rem; align-items: flex-start; }
.outcome-icon { display: grid; place-items: center; flex: 0 0 2.5rem; height: 2.5rem; border-radius: 12px; color: var(--accent-strong); background: rgba(61,221,201,.09); border: 1px solid rgba(61,221,201,.18); }

.service-card { position: relative; min-height: 250px; padding-bottom: 3.6rem; }
.service-tag { position: absolute; left: 1.5rem; bottom: 1.4rem; color: var(--text-soft); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; }
.banner-cta { margin-top: 1.4rem; padding: 1.4rem 1.6rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: linear-gradient(90deg,rgba(61,221,201,.09),rgba(121,174,251,.07)); display: flex; justify-content: space-between; gap: 1.5rem; align-items: center; }
.banner-cta .eyebrow { margin-bottom: .25rem; }
.banner-cta h3 { margin: 0; font-size: 1.3rem; }

.section-trading { background: radial-gradient(circle at 12% 14%,rgba(121,174,251,.12),transparent 28rem),linear-gradient(180deg,rgba(7,16,27,.5),rgba(8,18,29,.9),rgba(7,16,27,.5)); }
.trading-intro { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(300px,.75fr); gap: 2rem; align-items: end; }
.trading-summary { padding: 1.6rem; }
.compact-checks { display: grid; gap: .75rem; margin: 1rem 0 1.4rem; }
.screenshot-showcase { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.25rem; margin-top: 2.4rem; }
.screenshot-card { overflow: hidden; margin: 0; border-radius: var(--radius-md); }
.screenshot-card-featured { grid-column: 1 / -1; }
.screenshot-frame { position: relative; overflow: hidden; background: #03080d; }
.screenshot-frame::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(255,255,255,.04); }
.screenshot-card img { width: 100%; height: auto; transition: transform .45s ease; }
.screenshot-card:hover img { transform: scale(1.012); }
.screenshot-card figcaption { display: grid; gap: .28rem; padding: 1.15rem 1.25rem 1.3rem; background: rgba(7,17,26,.94); }
.screenshot-card figcaption strong { font-size: 1rem; }
.screenshot-card figcaption span { color: var(--text-muted); font-size: .92rem; }
.telegram-preview { display: grid; grid-template-columns: minmax(0,.8fr) minmax(420px,1.2fr); gap: 2rem; margin-top: 2rem; align-items: center; padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(130deg,rgba(121,174,251,.1),rgba(61,221,201,.05)); }
.telegram-copy h3 { margin: 0; font-size: clamp(1.55rem,3vw,2.4rem); line-height: 1.12; letter-spacing: -.035em; }
.telegram-copy p:last-child { color: var(--text-muted); }
.alert-mockup { border-radius: 18px; padding: 1.3rem; background: rgba(5,13,21,.93); }
.alert-header { display: flex; justify-content: space-between; gap: 1rem; font-weight: 850; }
.alert-status { color: var(--warning); }
.alert-brand { margin: .25rem 0 1rem; color: var(--text-soft); font-size: .85rem; }
.alert-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: .6rem; }
.alert-grid span, .alert-plan span { padding: .65rem .75rem; border-radius: 10px; background: rgba(255,255,255,.045); color: var(--text-muted); font-size: .82rem; }
.alert-grid strong { display: block; color: var(--text); }
.alert-plan { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: .6rem; margin-top: .6rem; }
.alert-decision { margin: .8rem 0 0; color: var(--accent-strong); font-weight: 700; }
.risk-note { margin: 1.25rem 0 0; padding: 1rem 1.1rem; border: 1px solid rgba(255,216,155,.18); border-radius: 14px; background: rgba(255,216,155,.065); color: #f4ddb7; font-size: .9rem; }

.ecosystem-card { min-height: 270px; display: flex; flex-direction: column; align-items: flex-start; }
.ecosystem-card .status-badge { margin-bottom: 1rem; }
.ecosystem-card .text-link, .ecosystem-card .social-links { margin-top: auto; padding-top: 1.2rem; }
.ecosystem-primary { border-color: var(--line-strong); background: linear-gradient(145deg,rgba(61,221,201,.11),rgba(8,18,28,.9)); }
.social-links { display: flex; flex-wrap: wrap; gap: .9rem; }
.social-links a { color: var(--accent-strong); font-weight: 800; }
.shop-section { background: linear-gradient(180deg,transparent,rgba(7,16,25,.48),transparent); }
.shop-layout { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(320px,.75fr); gap: 2rem; align-items: center; }
.shop-copy { margin: 0; }
.shop-visual { position: relative; min-height: 310px; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.shop-kicker { color: var(--accent); font-size: .75rem; letter-spacing: .2em; font-weight: 900; }
.shop-visual strong { max-width: 8ch; margin-top: .7rem; font-size: clamp(2rem,4vw,3.2rem); line-height: 1.02; letter-spacing: -.05em; }
.shop-orbit { position: absolute; width: 270px; height: 270px; right: -70px; bottom: -70px; border: 1px solid rgba(61,221,201,.22); border-radius: 50%; }
.shop-orbit::before, .shop-orbit::after { content: ""; position: absolute; inset: 18%; border: 1px solid rgba(121,174,251,.18); border-radius: 50%; }
.shop-orbit::after { inset: 36%; }
.shop-orbit span { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 18px var(--accent); }
.shop-orbit span:nth-child(1) { top: 18%; left: 8%; }
.shop-orbit span:nth-child(2) { top: 60%; left: 12%; background: var(--blue); }
.shop-orbit span:nth-child(3) { top: 8%; left: 62%; background: var(--violet); }
.about-layout { display: grid; gap: 1.5rem; }

.contact-section { padding-bottom: 6rem; }
.contact-shell { display: grid; grid-template-columns: minmax(0,1.2fr) auto; gap: 2rem; align-items: center; padding: 2.5rem; border: 1px solid var(--line-strong); border-radius: var(--radius-lg); background: linear-gradient(120deg,rgba(61,221,201,.12),rgba(121,174,251,.08),rgba(8,18,28,.9)); box-shadow: var(--shadow); }
.contact-copy h2 { max-width: 16ch; }
.contact-actions { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.contact-mail { font-size: .92rem; }

.site-footer { border-top: 1px solid rgba(255,255,255,.07); background: rgba(3,9,15,.95); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; padding: 3rem 0 2rem; }
.brand-footer { margin-bottom: 1rem; }
.footer-copy { max-width: 35ch; }
.footer-list { display: grid; gap: .6rem; }
.footer-meta { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: 0 0 2rem; color: var(--text-soft); font-size: .9rem; }

@media (max-width: 1050px) {
  .main-nav { order: 3; width: 100%; justify-content: flex-start; padding-bottom: .9rem; overflow-x: auto; }
  .header-inner { flex-wrap: wrap; padding-top: .9rem; }
  .hero { min-height: auto; }
  .hero-grid, .feature-layout, .trading-intro, .shop-layout, .contact-shell { grid-template-columns: 1fr; }
  .value-grid, .services-grid, .ecosystem-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .split-heading { grid-template-columns: 1fr; gap: 1rem; }
  .telegram-preview { grid-template-columns: 1fr; }
  .contact-actions { align-items: flex-start; }
}

@media (max-width: 720px) {
  :root { --space-7: 3.8rem; }
  html { scroll-padding-top: 150px; }
  .container { width: min(calc(100% - 1.25rem), var(--container)); }
  .header-inner { gap: .8rem; }
  .brand { min-width: 0; }
  .header-cta { margin-left: auto; min-height: 42px; padding: .65rem .9rem; font-size: .82rem; }
  .main-nav { gap: 1rem; font-size: .86rem; }
  .hero { padding-top: 4.2rem; }
  .hero-copy h1 { max-width: none; font-size: clamp(2.55rem,13vw,4rem); }
  .hero-actions .button { width: 100%; }
  .panel-topline { align-items: flex-start; flex-direction: column; }
  .value-grid, .services-grid, .ecosystem-grid, .about-grid, .screenshot-showcase { grid-template-columns: 1fr; }
  .screenshot-card-featured { grid-column: auto; }
  .numbered-card, .service-card, .ecosystem-card { min-height: auto; }
  .banner-cta { align-items: flex-start; flex-direction: column; }
  .telegram-preview, .contact-shell { padding: 1.3rem; }
  .alert-grid, .alert-plan { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-actions, .contact-actions .button { width: 100%; }
  .shop-visual { min-height: 250px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .button:hover, .button:focus-visible, .card:hover, .screenshot-card:hover img { transform: none; }
}

/* =========================================================
   V1.1 ORIGINAL-SITE REFINEMENT
   Cleaner ambient background, stronger editorial rhythm and
   decorative bullet motifs inspired by the original landing page.
   ========================================================= */

body::before { display: none; }
.ambient-grid { display: none; }

body {
  background:
    radial-gradient(ellipse at 82% 3%, rgba(53, 224, 205, .15), transparent 33rem),
    radial-gradient(ellipse at 5% 30%, rgba(74, 145, 255, .09), transparent 38rem),
    radial-gradient(ellipse at 72% 72%, rgba(116, 83, 255, .065), transparent 34rem),
    linear-gradient(180deg, #050c13 0%, #07121b 42%, #050c13 100%);
  background-attachment: fixed;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(92%, 1200px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(122, 240, 228, .11), transparent);
}
.hero::before { display: none; }

.hero-copy h1 span {
  color: var(--accent-strong);
  text-shadow: 0 0 34px rgba(61, 221, 201, .12);
}

.hero-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
  margin-top: 2.1rem;
}
.hero-principles span {
  display: flex;
  align-items: center;
  gap: .7rem;
  min-height: 58px;
  padding: .85rem 1rem;
  border: 1px solid rgba(115, 193, 215, .13);
  border-radius: 14px;
  color: var(--text-muted);
  background: rgba(8, 19, 29, .48);
  font-size: .86rem;
  line-height: 1.35;
}
.hero-principles i {
  display: grid;
  place-items: center;
  flex: 0 0 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  color: var(--accent-strong);
  border: 1px solid rgba(61, 221, 201, .24);
  background: rgba(61, 221, 201, .07);
  font-style: normal;
}

.section-heading .eyebrow::before,
.banner-cta .eyebrow::before,
.telegram-copy .eyebrow::before,
.contact-copy .eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.8rem;
  height: 1px;
  margin-right: .7rem;
  vertical-align: middle;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.centered-heading .eyebrow::after {
  content: "";
  display: inline-block;
  width: 1.8rem;
  height: 1px;
  margin-left: .7rem;
  vertical-align: middle;
  background: linear-gradient(90deg, transparent, var(--accent));
}

.process-rail { position: relative; }
.process-rail::before {
  content: "";
  position: absolute;
  top: 2.15rem;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(61, 221, 201, .42), rgba(121, 174, 251, .28), transparent);
}
.process-rail .numbered-card { overflow: visible; }
.process-rail .numbered-card::before {
  content: "";
  position: absolute;
  top: 1.92rem;
  left: 1.45rem;
  width: .48rem;
  height: .48rem;
  border: 2px solid #07111a;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(61, 221, 201, .1), 0 0 18px rgba(61, 221, 201, .3);
  z-index: 2;
}
.process-rail .card-number { left: 2.35rem; top: 1.62rem; }

.feature-list-accent { gap: 0; border-top: 1px solid rgba(255,255,255,.08); }
.feature-list-accent li {
  padding: 1rem .5rem 1rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.feature-list-accent li::before {
  content: "✓";
  top: .94rem;
  width: 1.05rem;
  height: 1.05rem;
  display: grid;
  place-items: center;
  color: #041015;
  font-size: .68rem;
  font-weight: 950;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(61,221,201,.075);
}

.card, .feature-card, .hero-panel, .screenshot-card, .telegram-preview, .contact-shell {
  position: relative;
}
.card::before, .feature-card::after, .hero-panel::after, .telegram-preview::before, .contact-shell::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  top: -1px;
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: .72;
  pointer-events: none;
}
.numbered-card::before { z-index: 3; }

.service-card h3::before,
.ecosystem-card h3::before,
.about-grid h3::before {
  content: "";
  display: inline-block;
  width: .48rem;
  height: .48rem;
  margin: 0 .65rem .12rem 0;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(61,221,201,.48);
}

.screenshot-card figcaption strong::before {
  content: "⌁";
  margin-right: .55rem;
  color: var(--accent);
}

@media (max-width: 900px) {
  .hero-principles { grid-template-columns: 1fr; }
  .process-rail::before { display: none; }
}

@media (max-width: 720px) {
  body { background-attachment: scroll; }
  .section-heading .eyebrow::before,
  .banner-cta .eyebrow::before,
  .telegram-copy .eyebrow::before,
  .contact-copy .eyebrow::before,
  .centered-heading .eyebrow::after { width: 1rem; }
}

/* =========================================================
   V1.2 VISUAL IDENTITY & PREMIUM DETAIL
   Distinctive NΞ monogram, richer depth and editorial accents.
   ========================================================= */

.brand {
  flex-direction: row;
  align-items: center;
  gap: .8rem;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.brand-symbol {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background:
    linear-gradient(145deg, rgba(120,240,228,.18), rgba(121,174,251,.08)),
    rgba(7,17,26,.9);
  border: 1px solid rgba(120,240,228,.32);
  box-shadow: inset 0 1px rgba(255,255,255,.08), 0 10px 26px rgba(0,0,0,.25), 0 0 30px rgba(61,221,201,.08);
  overflow: hidden;
}
.brand-symbol::after {
  content: "";
  position: absolute;
  inset: -60% 40% 40% -60%;
  background: radial-gradient(circle, rgba(120,240,228,.35), transparent 60%);
}
.brand-symbol svg { width: 35px; height: 35px; overflow: visible; }
.logo-ring { fill: none; stroke: rgba(120,240,228,.26); stroke-width: 1.2; stroke-dasharray: 3 5; }
.logo-n, .logo-xi { fill: none; stroke: url(#logo-gradient); stroke: var(--accent-strong); stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round; }
.logo-xi { stroke: var(--blue); stroke-width: 2.6; }
.brand:hover .brand-symbol,
.brand:focus-visible .brand-symbol { border-color: rgba(120,240,228,.58); box-shadow: 0 0 0 4px rgba(61,221,201,.06), 0 12px 30px rgba(0,0,0,.3); }

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent 8%, rgba(61,221,201,.52) 28%, rgba(121,174,251,.2) 68%, transparent 92%);
  opacity: .6;
}

.hero-copy { position: relative; }
.hero-copy::before {
  content: "NΞ / 01";
  position: absolute;
  left: -3rem;
  top: .3rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: rgba(120,240,228,.22);
  font-size: .65rem;
  letter-spacing: .28em;
  font-weight: 900;
}
.hero-copy h1 {
  text-shadow: 0 18px 54px rgba(0,0,0,.28);
}
.hero-copy h1 span {
  position: relative;
  display: inline-block;
}
.hero-copy h1 span::after {
  content: "";
  position: absolute;
  left: .03em;
  right: -.08em;
  bottom: -.08em;
  height: .12em;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(121,174,251,.2), transparent);
  filter: blur(.2px);
}

.hero-panel {
  isolation: isolate;
  padding-top: 1.45rem;
  background:
    linear-gradient(150deg, rgba(18,40,52,.88), rgba(6,15,24,.95) 58%),
    rgba(7,17,26,.92);
}
.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 0 67%, rgba(120,240,228,.035) 67% 68%, transparent 68%);
}
.hero-emblem {
  position: relative;
  height: 210px;
  margin: -.15rem 0 1.25rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at center, rgba(61,221,201,.12), transparent 43%),
    linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,0));
  border: 1px solid rgba(255,255,255,.055);
}
.hero-emblem-core {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .05em;
  font-size: 4.6rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.12em;
  color: #f6fbff;
  text-shadow: 0 0 28px rgba(120,240,228,.22);
}
.hero-emblem-core i {
  font-style: normal;
  color: var(--accent-strong);
  font-size: .72em;
  transform: translateY(.02em);
}
.hero-emblem-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(120,240,228,.16);
}
.orbit-one { width: 158px; height: 158px; }
.orbit-two { width: 238px; height: 238px; border-style: dashed; border-color: rgba(121,174,251,.13); transform: rotate(18deg); }
.hero-emblem-orbit::before,
.hero-emblem-orbit::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 14px var(--accent);
}
.orbit-one::before { top: 12%; right: 17%; }
.orbit-one::after { bottom: 7%; left: 27%; background: var(--blue); }
.orbit-two::before { top: 48%; left: -3px; }
.orbit-two::after { top: 23%; right: 5%; background: var(--violet); }
.emblem-node { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.7); box-shadow: 0 0 16px rgba(120,240,228,.7); }
.node-one { left: 18%; top: 30%; }
.node-two { right: 14%; bottom: 25%; }
.node-three { right: 22%; top: 20%; width: 3px; height: 3px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
}
.eyebrow::before {
  content: "";
  width: 1.9rem;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(61,221,201,.12));
  box-shadow: 0 0 12px rgba(61,221,201,.18);
}
.section-heading h2 { position: relative; }
.centered-heading .eyebrow { justify-content: center; }
.centered-heading .eyebrow::after {
  content: "";
  width: 1.9rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(61,221,201,.12), var(--accent));
}

.section-numbered::after {
  content: attr(data-section);
  position: absolute;
  top: 2.2rem;
  right: max(1rem, calc((100vw - var(--container)) / 2));
  color: rgba(180,198,211,.18);
  font-size: .7rem;
  letter-spacing: .24em;
  font-weight: 900;
  pointer-events: none;
}

.numbered-card,
.service-card,
.ecosystem-card,
.outcome-card {
  overflow: hidden;
}
.numbered-card::before,
.service-card::before,
.ecosystem-card::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: -42px;
  top: -42px;
  border-radius: 50%;
  border: 1px solid rgba(120,240,228,.1);
  box-shadow: 0 0 0 18px rgba(120,240,228,.018), 0 0 0 36px rgba(121,174,251,.012);
}
.feature-list-accent li::before {
  width: .62rem;
  height: .62rem;
  top: .55rem;
  border: 1px solid rgba(120,240,228,.6);
  background: radial-gradient(circle, var(--accent-strong) 0 30%, transparent 35%);
  box-shadow: 0 0 0 5px rgba(61,221,201,.06), 0 0 16px rgba(61,221,201,.18);
}

.feature-card-primary {
  position: relative;
  overflow: hidden;
}
.feature-card-primary::after {
  content: "NΞ";
  position: absolute;
  right: -1.2rem;
  bottom: -3rem;
  color: rgba(120,240,228,.045);
  font-size: 10rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.15em;
  pointer-events: none;
}

.screenshot-card {
  position: relative;
}
.screenshot-card::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 34%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--blue), transparent);
}
.screenshot-frame::before {
  content: "LIVE INTERFACE";
  position: absolute;
  z-index: 2;
  top: .8rem;
  left: .8rem;
  padding: .35rem .55rem;
  border: 1px solid rgba(120,240,228,.22);
  border-radius: 999px;
  color: rgba(241,247,251,.78);
  background: rgba(3,9,15,.72);
  backdrop-filter: blur(10px);
  font-size: .58rem;
  letter-spacing: .14em;
  font-weight: 900;
}

.shop-visual::before {
  content: "NΞ";
  position: absolute;
  right: 1rem;
  top: .7rem;
  color: rgba(120,240,228,.06);
  font-size: 8rem;
  font-weight: 950;
  letter-spacing: -.18em;
}
.contact-shell { position: relative; overflow: hidden; }
.contact-shell::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -120px;
  bottom: -150px;
  border-radius: 50%;
  border: 1px solid rgba(120,240,228,.14);
  box-shadow: 0 0 0 36px rgba(120,240,228,.025), 0 0 0 72px rgba(121,174,251,.018);
}
.contact-copy,
.contact-actions { position: relative; z-index: 1; }

@media (max-width: 1150px) {
  .hero-copy::before { display: none; }
}
@media (max-width: 720px) {
  .brand-symbol { flex-basis: 40px; width: 40px; height: 40px; border-radius: 13px; }
  .brand-symbol svg { width: 31px; height: 31px; }
  .brand-subline { display: none; }
  .hero-emblem { height: 178px; }
  .hero-emblem-core { font-size: 3.8rem; }
  .orbit-two { width: 205px; height: 205px; }
  .section-numbered::after { display: none; }
}

/* =========================================================
   V1.4 PRESERVE & POLISH
   V1.2 structure retained; official branding integrated
   without using the full logo as an oversized hero graphic.
   ========================================================= */

/* Canonical logo: compact in navigation/footer only. */
.brand { flex-direction: row; align-items: center; gap: .8rem; }
.brand-symbol-official {
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border-radius: 13px;
  border: 1px solid rgba(120, 240, 228, .28);
  background: rgba(7, 17, 26, .78);
  box-shadow: 0 0 0 4px rgba(61, 221, 201, .045), 0 10px 28px rgba(0,0,0,.22);
}
.brand-symbol-official img { width: 100%; height: 100%; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; }
.brand-footer { display: inline-flex; }
.brand-footer .brand-symbol-official { flex-basis: 42px; width: 42px; height: 42px; }

/* Purpose-built hero visual: a system map rather than an oversized brand logo. */
.hero-system-visual {
  position: relative;
  z-index: 1;
  margin: -.35rem -.35rem 1.35rem;
  padding: .85rem .85rem .65rem;
  overflow: hidden;
  border: 1px solid rgba(121,174,251,.17);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 40%, rgba(61,221,201,.12), transparent 45%),
    linear-gradient(145deg, rgba(3,11,18,.9), rgba(9,24,35,.72));
}
.hero-system-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.025) 50%, transparent 75%);
}
.system-visual-header,
.system-visual-metrics { display: flex; justify-content: space-between; align-items: center; gap: .7rem; }
.system-visual-header { color: var(--text-soft); font-size: .62rem; font-weight: 850; letter-spacing: .16em; }
.system-visual-header i { color: var(--success); font-style: normal; }
.system-map { width: 100%; height: auto; margin: .15rem 0 -.25rem; }
.map-flow { fill: none; stroke: url(#nmFlow); stroke-width: 2.2; opacity: .78; filter: url(#nmGlow); }
.map-flow-soft { stroke-width: 1; opacity: .28; stroke-dasharray: 6 8; }
.map-node { fill: #07131d; stroke: #79aefb; stroke-width: 2; filter: url(#nmGlow); }
.map-node-main { fill: rgba(61,221,201,.08); stroke: #3dddc9; stroke-width: 2.5; }
.map-label-main { fill: #f1f7fb; font-size: 11px; font-weight: 800; letter-spacing: 1.6px; }
.map-label-sub, .map-label { fill: #78f0e4; font-size: 9px; font-weight: 800; letter-spacing: 1.8px; }
.system-visual-metrics { padding-top: .55rem; border-top: 1px solid rgba(255,255,255,.07); color: var(--text-soft); font-size: .68rem; }
.system-visual-metrics span { display: inline-flex; align-items: center; gap: .38rem; }
.system-visual-metrics b { color: var(--accent-strong); font-size: .63rem; }

/* More varied, graphical content rhythm. */
.service-card { overflow: hidden; padding-top: 4.5rem; }
.service-card::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  top: -72px;
  right: -54px;
  border: 1px solid rgba(61,221,201,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(121,174,251,.025), 0 0 0 44px rgba(155,140,255,.018);
}
.service-icon {
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(61,221,201,.24);
  border-radius: 11px;
  color: var(--accent-strong);
  background: linear-gradient(145deg, rgba(61,221,201,.11), rgba(121,174,251,.06));
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.feature-list-accent { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .85rem; }
.feature-list-accent li {
  min-height: 88px;
  padding: .95rem 1rem .95rem 3rem;
  border: 1px solid rgba(122,192,220,.12);
  border-radius: 14px;
  background: rgba(4,13,20,.32);
}
.feature-list-accent li::before {
  left: 1rem;
  top: 1.12rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 7px;
  background: rgba(61,221,201,.13);
  border: 1px solid rgba(61,221,201,.28);
  box-shadow: none;
}
.feature-list-accent li::after {
  content: "✓";
  position: absolute;
  left: 1.32rem;
  top: 1.02rem;
  color: var(--accent-strong);
  font-size: .72rem;
  font-weight: 900;
}
.numbered-card:nth-child(2n) { background: linear-gradient(145deg, rgba(121,174,251,.09), rgba(7,17,26,.86)); }
.numbered-card:nth-child(3n) { background: linear-gradient(145deg, rgba(155,140,255,.07), rgba(7,17,26,.86)); }
.outcome-card:nth-child(2) .outcome-icon { color: #cfe0ff; border-color: rgba(121,174,251,.2); background: rgba(121,174,251,.08); }
.outcome-card:nth-child(3) .outcome-icon { color: #d8d0ff; border-color: rgba(155,140,255,.2); background: rgba(155,140,255,.08); }

@media (max-width: 720px) {
  .brand-symbol-official { flex-basis: 38px; width: 38px; height: 38px; border-radius: 11px; }
  .brand-subline { display: none; }
  .brand-mark { font-size: 1.15rem; }
  .feature-list-accent { grid-template-columns: 1fr; }
  .system-visual-metrics { flex-wrap: wrap; }
}

/* V1.5 CONTENT, SERVICE CARDS & LEGAL PAGES */
.hero-principles b { color: var(--text); font-weight: 800; margin-right: .2rem; }
.services-grid-varied { align-items: stretch; }
.services-grid-varied .service-card { min-height: 350px; display: flex; flex-direction: column; padding: 1.55rem; overflow: hidden; }
.service-visual { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.45rem; }
.service-visual span { display: grid; place-items: center; width: 3rem; height: 3rem; border: 1px solid var(--line-strong); border-radius: 14px; color: var(--accent-strong); background: rgba(61,221,201,.07); font-weight: 900; }
.service-visual i { display: grid; place-items: center; width: 2rem; height: 2rem; border-radius: 50%; color: var(--text-soft); background: rgba(255,255,255,.045); font-style: normal; }
.service-kicker { margin: 0 0 .45rem; color: var(--accent); font-size: .74rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.services-grid-varied .service-card h3 { margin: 0 0 .8rem; font-size: 1.25rem; }
.services-grid-varied .service-card > p:not(.service-kicker) { margin-bottom: 1.2rem; }
.micro-points { display: flex; flex-wrap: wrap; gap: .45rem; margin: auto 0 0; padding: 0; list-style: none; }
.micro-points li { padding: .42rem .62rem; border: 1px solid rgba(255,255,255,.08); border-radius: 999px; color: var(--text-muted); background: rgba(255,255,255,.035); font-size: .75rem; }
.service-card-b { background: linear-gradient(145deg,rgba(121,174,251,.105),rgba(8,18,28,.92)); }
.service-card-c { background: linear-gradient(145deg,rgba(116,83,255,.09),rgba(8,18,28,.92)); }
.service-card-d { background: linear-gradient(145deg,rgba(255,216,155,.075),rgba(8,18,28,.92)); }
.service-card-e { background: linear-gradient(145deg,rgba(61,221,201,.075),rgba(8,18,28,.92)); }
.service-card-f { border-color: rgba(121,174,251,.24); background: linear-gradient(145deg,rgba(121,174,251,.08),rgba(61,221,201,.035),rgba(8,18,28,.94)); }
.button-disabled { cursor: default; opacity: .72; pointer-events: none; }
.footer-muted { color: var(--text-soft); }
.legal-main { min-height: 70vh; }
.legal-hero { padding-top: 5rem; padding-bottom: 2rem; }
.legal-shell { max-width: 880px; }
.legal-card { padding: clamp(1.4rem,4vw,2.5rem); }
.legal-card h2 { margin-top: 2.2rem; font-size: 1.35rem; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card h3 { margin-top: 1.5rem; font-size: 1.05rem; }
.legal-card p, .legal-card li { color: var(--text-muted); }
.legal-card a { color: var(--accent-strong); }
.legal-note { margin-top: 2rem; padding: 1rem 1.1rem; border: 1px solid rgba(255,216,155,.2); border-radius: 14px; background: rgba(255,216,155,.055); color: #f1dbb8; }
@media (max-width:720px){ .services-grid-varied .service-card { min-height: auto; } }




/* NΞONMIND compact official brand lockup */
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  max-width: 100%;
}

.brand-lockup-logo {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 34px;
  object-fit: contain;
}

.brand-lockup-wordmark {
  display: block;
  width: clamp(138px, 14vw, 190px);
  height: auto;
  object-fit: contain;
}

.brand-footer .brand-lockup-logo {
  width: 36px;
  height: 36px;
  flex-basis: 30px;
}

.brand-footer .brand-lockup-wordmark {
  width: clamp(132px, 13vw, 178px);
}

@media (max-width: 760px) {
  .brand-lockup {
    gap: 0.55rem;
  }

  .brand-lockup-logo {
    width: 29px;
    height: 29px;
    flex-basis: 29px;
  }

  .brand-lockup-wordmark {
    width: clamp(125px, 35vw, 160px);
  }
}


/* =========================================================
   NΞONMIND CI V2 — brighter shared brand treatment
   Used by index, Impressum and Datenschutz.
   ========================================================= */
.brand-lockup-logo {
  filter: brightness(1.28) saturate(1.22) contrast(1.06)
          drop-shadow(0 0 10px rgba(83,244,221,.32));
}

.brand-lockup-wordmark {
  filter: brightness(1.34) saturate(1.18) contrast(1.08)
          drop-shadow(0 0 10px rgba(83,244,221,.24));
}

.main-nav a::after {
  box-shadow: 0 0 12px rgba(83,244,221,.34);
}

.button-primary {
  box-shadow: 0 14px 40px rgba(83,244,221,.29), 0 0 22px rgba(83,244,221,.10);
}

/* =========================================================
   NΞONMIND CI V2.1 — authoritative mobile brand-lockup fix
   Prevents the square icon from inheriting responsive image widths.
   ========================================================= */
.brand-lockup {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  width: auto;
  max-width: 100%;
}

.brand-lockup-logo {
  display: block;
  width: 42px !important;
  min-width: 42px;
  max-width: 42px !important;
  height: 42px !important;
  flex: 0 0 42px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.brand-lockup-wordmark {
  display: block;
  width: clamp(138px, 14vw, 190px) !important;
  min-width: 0;
  max-width: min(190px, calc(100vw - 125px)) !important;
  height: auto !important;
  flex: 0 1 auto;
  object-fit: contain;
}

@media (max-width: 760px) {
  .brand-lockup {
    gap: .55rem;
  }

  .brand-lockup-logo {
    width: 29px !important;
    min-width: 29px;
    max-width: 29px !important;
    height: 29px !important;
    flex-basis: 29px;
  }

  .brand-lockup-wordmark {
    width: clamp(125px, 35vw, 160px) !important;
    max-width: calc(100vw - 150px) !important;
  }
}

@media (max-width: 420px) {
  .brand-lockup-logo {
    width: 27px !important;
    min-width: 27px;
    max-width: 27px !important;
    height: 27px !important;
    flex-basis: 27px;
  }

  .brand-lockup-wordmark {
    width: clamp(118px, 38vw, 148px) !important;
    max-width: calc(100vw - 138px) !important;
  }
}
