:root {
  --bg: #09111d;
  --bg-soft: #101a2b;
  --card: rgba(16, 26, 43, 0.82);
  --card-strong: rgba(15, 23, 42, 0.95);
  --text: #edf4ff;
  --muted: #a7b7cc;
  --line: rgba(148, 163, 184, 0.18);
  --accent: #ff7a18;
  --accent-2: #4f8cff;
  --accent-soft: rgba(255, 122, 24, 0.16);
  --accent-blue-soft: rgba(79, 140, 255, 0.16);
  --max: 1120px;
  --radius: 24px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(79, 140, 255, 0.16), transparent 28%),
    radial-gradient(circle at 85% 0%, rgba(255, 122, 24, 0.14), transparent 24%),
    linear-gradient(180deg, #09111d 0%, #0c1523 44%, #101827 100%);
}
img { max-width: 100%; }
a { color: inherit; }

.site-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  backdrop-filter: blur(14px);
}

.brand {
  margin-right: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(180deg, #2d6dff, #ff7a18);
  color: white;
  box-shadow: var(--shadow);
}

.brand-text { font-size: 1rem; }

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--line);
  background: rgba(9, 17, 29, 0.76);
  border-radius: 999px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  background: var(--accent-soft);
  color: #ffd9c2 !important;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(9, 17, 29, 0.76);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 999px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  min-height: 0;
  padding: 44px 0 18px;
}

.simple-hero { min-height: 0; }

.eyebrow {
  margin: 0 0 14px;
  color: #ffbb8e;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.hero h1,
.section-heading h2,
.page-title,
.feature-banner h3,
.contact-info-card h2,
.faq-item h3,
.card h3,
.panel-card h3 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.hero h1 { font-size: clamp(2.8rem, 7vw, 5rem); max-width: 10.6ch; }
.page-title { font-size: clamp(2.4rem, 6vw, 4rem); }

.hero-text,
.section-heading p,
.card p,
.panel-card p,
.contact-info-card p,
.faq-item p,
.micro-copy,
.footer p,
.footer a {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  margin: 18px 0 0;
  max-width: 58ch;
  font-size: 1.08rem;
}

.hero-actions,
.button-row,
.support-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions { margin: 28px 0 12px; }
.micro-copy { margin: 0; font-size: 0.96rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  font: inherit;
  transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}

.button:hover,
.button:focus-visible { transform: translateY(-1px); }

.button-primary {
  background: linear-gradient(180deg, #ff862c, #f26707);
  color: white;
  box-shadow: 0 14px 32px rgba(242, 103, 7, 0.28);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}

.hero-panel { display: flex; justify-content: flex-end; }

.panel-card,
.card,
.contact-info-card,
.contact-page-form,
.feature-banner,
.faq-item {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.accent-card {
  width: min(100%, 420px);
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(79, 140, 255, 0.12), rgba(255, 122, 24, 0.08)),
    var(--card-strong);
}

.compact-card { min-height: 0; }
.panel-label {
  margin-top: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #c8ddff;
}

.mini-stack,
.faq-list { display: grid; gap: 14px; }

.mini-stack article,
.faq-item {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: -6px;
}

.proof-strip article {
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.proof-strip strong {
  display: block;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.proof-strip span { color: var(--muted); font-size: 0.96rem; }

.section { padding: 72px 0; }
.compact-top { padding-top: 36px; }
.alt-section {
  margin: 24px 0;
  padding-left: 26px;
  padding-right: 26px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.narrow { max-width: 720px; }

.card-grid {
  display: grid;
  gap: 18px;
}

.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card,
.contact-info-card,
.contact-page-form {
  padding: 24px;
}

.app-card {
  position: relative;
  overflow: hidden;
}

.app-badge,
.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  margin-bottom: 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: white;
}

.app-badge { background: linear-gradient(180deg, #2d6dff, #588dff); }
.app-badge.secondary { background: linear-gradient(180deg, #ff862c, #f26707); }
.app-badge.tertiary { background: linear-gradient(180deg, #22c55e, #0f9f4a); }

.app-badge.web { background: linear-gradient(180deg, #a855f7, #7c3aed); }
.app-badge.slate { background: linear-gradient(180deg, #14b8a6, #0f766e); }
.icon-badge { background: rgba(255, 255, 255, 0.08); }

.app-icon {
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
}


.support-card p,
.app-card p { margin-bottom: 22px; }
.centered-actions { justify-content: center; margin-top: 28px; }

.feature-banner {
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background:
    linear-gradient(180deg, rgba(79, 140, 255, 0.09), rgba(255, 122, 24, 0.08)),
    var(--card-strong);
}

.feature-banner p { max-width: 54ch; }

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 18px;
}

.contact-page-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--text);
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 14px 15px;
  font: inherit;
}

input::placeholder,
textarea::placeholder { color: #89a0bb; }
textarea { resize: vertical; min-height: 140px; }

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

.footer {
  padding: 32px 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 28px;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
}

.footer-links a:hover,
.footer-links a:focus-visible { color: var(--text); }

@media (max-width: 920px) {
  .hero,
  .contact-page-grid,
  .two-up,
  .three-up,
  .proof-strip,
  .simple-strip,
  .feature-banner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 20px;
    padding-bottom: 24px;
  }

  .hero-panel { justify-content: flex-start; }
  .feature-banner { display: grid; }
}

@media (max-width: 760px) {
  .site-shell { width: min(calc(100% - 24px), var(--max)); }
  .topbar { align-items: flex-start; }
  .menu-toggle { display: inline-block; }

  .nav {
    position: absolute;
    right: 0;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: min(260px, calc(100vw - 24px));
    border-radius: 20px;
    padding: 12px;
    background: rgba(9, 17, 29, 0.96);
  }

  .nav.open { display: flex; }
  .nav a { padding: 12px 14px; }

  .hero h1 { max-width: 7.2ch; }
  .proof-strip { margin-top: 6px; }
  .section { padding: 74px 0; }
  .alt-section {
    padding-left: 18px;
    padding-right: 18px;
    border-radius: 28px;
  }
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}


.hero-tight .hero-text { max-width: 38ch; }
.hero-tight .hero-copy { max-width: 560px; }
.status-panel {
  display: grid;
  gap: 14px;
}
.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.status-title,
.status-text,
.app-lead { margin: 0; }
.status-title {
  font-weight: 700;
  letter-spacing: -0.02em;
}
.status-text { color: var(--muted); margin-top: 4px; }
.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}
.status-pill.blue {
  background: rgba(79, 140, 255, 0.16);
  color: #d9e6ff;
}
.status-pill.orange {
  background: rgba(255, 122, 24, 0.16);
  color: #ffe0c5;
}
.status-pill.green {
  background: rgba(34, 197, 94, 0.16);
  color: #d6ffe4;
}

.status-pill.violet {
  background: rgba(168, 85, 247, 0.16);
  color: #eed8ff;
}
.status-pill.teal {
  background: rgba(20, 184, 166, 0.16);
  color: #d7fff7;
}
.apps-front { padding-top: 10px; }
.app-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.app-showcase-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.app-showcase-grid-five {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.feature-app {
  padding: 28px;
  min-height: 280px;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  gap: 22px;
}
.feature-app h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.05em;
  margin: 20px 0 8px;
}
.app-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.app-lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.5;
}
.support-mini { padding-top: 32px; }
.centered-copy {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.slim-card {
  text-align: center;
}
.slim-card p,
.slim-card h3 { margin-top: 0; margin-bottom: 10px; }
.text-link {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.24);
}
.text-link:hover,
.text-link:focus-visible {
  border-bottom-color: rgba(255,255,255,0.62);
}
.simple-contact-grid {
  max-width: 920px;
  margin: 0 auto;
}
.simple-contact-grid .contact-info-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1100px) {
  .app-showcase-grid-three, .app-showcase-grid-five { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 920px) {
  .app-showcase-grid,
  .app-showcase-grid-three,
  .app-showcase-grid-five { grid-template-columns: 1fr; }
}


.support-page-shell {
  padding-bottom: 72px;
}

.support-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.support-panel,
.support-form-card {
  padding: 24px;
}

.support-panel {
  position: sticky;
  top: 92px;
}

.support-panel-block + .support-panel-block {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.support-label {
  margin: 0 0 12px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffbb8e;
}

.choice-grid {
  display: grid;
  gap: 12px;
}

.choice-card,
.segment {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.choice-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 18px;
  text-align: left;
}

.choice-card:hover,
.segment:hover,
.choice-card:focus-visible,
.segment:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.18);
}

.choice-card.active,
.segment.active {
  border-color: rgba(79, 140, 255, 0.48);
  background: rgba(79, 140, 255, 0.12);
}

.choice-badge {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-weight: 800;
  color: white;
  background: linear-gradient(180deg, #2d6dff, #588dff);
  flex: 0 0 auto;
}

.choice-badge.secondary {
  background: linear-gradient(180deg, #ff862c, #f26707);
}
.choice-badge.tertiary {
  background: linear-gradient(180deg, #22c55e, #0f9f4a);
}

.choice-badge.web {
  background: linear-gradient(180deg, #a855f7, #7c3aed);
}
.choice-badge.slate {
  background: linear-gradient(180deg, #14b8a6, #0f766e);
}

.choice-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow);
  flex: 0 0 auto;
}

.choice-card strong,
.choice-card small {
  display: block;
}

.choice-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.segment {
  min-height: 48px;
  border-radius: 14px;
  padding: 0 14px;
  font: inherit;
  font-weight: 700;
}

.support-note-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.support-grid {
  display: grid;
  gap: 14px;
}

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

.three-col-fields {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-mode-section {
  display: grid;
  gap: 14px;
}

.support-form-card label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--text);
  font-weight: 600;
}

.support-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.hidden {
  display: none !important;
}

@media (max-width: 980px) {
  .support-layout {
    grid-template-columns: 1fr;
  }

  .support-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .two-col-fields,
  .three-col-fields,
  .segmented {
    grid-template-columns: 1fr;
  }

  .support-panel,
  .support-form-card {
    padding: 20px;
  }
}


.support-heading-tight { margin-bottom: 22px; }
.support-flow {
  display: grid;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}
.support-step-card {
  padding: 24px;
}
.support-step-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.support-step-head h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  letter-spacing: -0.03em;
}
.support-step-head p {
  margin: 4px 0 0;
  color: var(--muted);
}
.support-step-head-spread {
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}
.support-step-head-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.step-chip {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(79, 140, 255, 0.16);
  color: #d9e6ff;
  font-weight: 800;
  flex: 0 0 auto;
}
.support-app-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.support-app-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.support-app-grid-five {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.segmented-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.support-selection-pills,
.selected-files {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.summary-pill,
.file-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  border: 1px solid var(--line);
  background: rgba(79, 140, 255, 0.12);
  color: #d9e6ff;
}
.summary-pill.muted,
.file-chip {
  background: rgba(255,255,255,0.06);
  color: var(--text);
}
.field-note {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}
input[type="file"] {
  padding: 12px;
  background: rgba(255,255,255,0.02);
}
@media (max-width: 920px) {
  .support-app-grid-three,
  .support-app-grid-five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .support-app-grid,
  .support-app-grid-three,
  .support-app-grid-five,
  .segmented-three {
    grid-template-columns: 1fr;
  }
  .support-step-card {
    padding: 20px;
  }
  .support-step-head-spread,
  .support-step-head-left {
    align-items: flex-start;
  }
  .support-step-head-spread {
    flex-direction: column;
  }
}


.policy-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.policy-meta {
  margin-top: 10px;
  font-size: 0.95rem;
}

.policy-grid {
  display: grid;
  gap: 20px;
}

.policy-card {
  padding: 28px;
}

.policy-card h2 {
  margin: 0 0 18px;
  letter-spacing: -0.03em;
  font-size: clamp(1.6rem, 3vw, 2rem);
}

.policy-card h3 {
  margin: 20px 0 8px;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.policy-card p {
  margin: 0;
}


.micro-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.about-strip {
  padding-top: 8px;
}

.about-card {
  max-width: 860px;
  margin: 0 auto;
}

.about-card p:last-child {
  margin-bottom: 0;
}


.hero-lite {
  min-height: auto;
  grid-template-columns: 1fr;
  padding: 72px 0 18px;
}

.hero-copy-wide {
  max-width: 760px;
}

.hero-lite .hero-text {
  max-width: 32ch;
}

.apps-front-tight {
  padding-top: 18px;
}

.app-card-simple {
  min-height: 0;
  gap: 20px;
}


.app-card-simple > div:last-child {
  display: grid;
  align-content: start;
  gap: 8px;
}

.app-card-simple .button {
  align-self: flex-start;
}

.about-strip-tight {
  padding-top: 16px;
}

.about-card-simple {
  max-width: 760px;
}

.about-card-simple p {
  margin: 0;
}

.footer-policies-only {
  padding-top: 10px;
}


.support-cta-single {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 18px;
}

.support-cta-single .button {
  min-width: 180px;
}

.hero-lite .hero-copy-wide { max-width: 760px; }
.about-strip-tight { padding-top: 28px; }
.app-card-simple { min-height: 250px; }

.namedrop-app-icon,
.namedrop-choice-icon {
  background: rgba(255,255,255,0.02);
}

.policy-signoff {
  margin-top: 28px;
  color: var(--muted);
  font-weight: 600;
}

.app-showcase-grid-five .feature-app { min-height: 260px; }



.app-group + .app-group {
  margin-top: 26px;
}

.app-group .section-heading {
  margin-bottom: 18px;
}

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

.app-showcase-grid-tools {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.app-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 2px 0 12px;
}

.app-meta-pills-stack {
  flex-direction: column;
  align-items: flex-start;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid var(--line);
}

.platform-pill.ios {
  background: rgba(255, 255, 255, 0.06);
  color: #eef4ff;
}

.platform-pill.web {
  background: rgba(20, 184, 166, 0.12);
  color: #d7fff7;
}

.policy-card > h2:first-child {
  margin-top: 0;
}

@media (max-width: 1100px) {
  .app-showcase-grid-two,
  .app-showcase-grid-tools {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .app-showcase-grid-two,
  .app-showcase-grid-tools {
    grid-template-columns: 1fr;
  }
}


.brand-showcase {
  padding: 8px 0 10px;
}

.brand-showcase-frame {
  max-width: 760px;
  margin: 0 auto;
  padding: 14px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
    rgba(7, 16, 34, 0.62);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
}

.brand-showcase-image {
  width: 100%;
  display: block;
  border-radius: 18px;
  object-fit: cover;
}

.app-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 18px;
}

.app-store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.policy-intro {
  max-width: 760px;
  margin: 0 auto 18px;
  color: var(--muted);
}

.policy-intro p {
  margin: 0 0 10px;
}

@media (max-width: 768px) {
  .brand-showcase {
    padding: 4px 0 8px;
  }

  .brand-showcase-frame {
    padding: 10px;
    border-radius: 22px;
  }

  .brand-showcase-image {
    border-radius: 14px;
  }
}


.brand-placeholder {
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.topbar {
  justify-content: flex-end;
}

.hero-wordmark-wrap.is-hidden {
  opacity: 0;
  transform: translateY(-10px);
  max-height: 0;
  margin: 0;
}

.hero-wordmark-shell {
  display: inline-block;
  padding: 14px 18px;
  border-radius: 28px;
  background: rgba(8, 15, 30, 0.52);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 18px 38px rgba(0,0,0,0.24),
    inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
}

@media (max-width: 768px) {
  .topbar {
    justify-content: space-between;
  }

  .brand-placeholder {
    display: none;
  }

  .hero-wordmark-shell {
    padding: 10px 12px;
    border-radius: 20px;
  }

  }


.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.06);
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}


.status-pill-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.status-pill-link:hover {
  filter: brightness(1.04);
}

.status-pill-link:focus-visible {
  outline: 2px solid rgba(255,255,255,0.55);
  outline-offset: 2px;
}
