:root {
  --dark-blue-1: #0d2a41;
  --dark-blue-2: #02223a;
  --dark-blue-3: #173552;
  --card-blue-1: #1c4363;
  --card-blue-2: #162c39;
  --light-blue-1: #0b9fcb;
  --light-blue-2: #30caf9;
  --gold-1: #c88d3c;
  --gold-2: #f1c46e;
  --green-1: #12a062;
  --white: #ffffff;
  --ink-strong: #163046;
  --ink: #24475f;
  --ink-soft: #5e7890;
  --ink-border: rgba(22, 48, 70, 0.12);
  --text-primary: rgba(255, 255, 255, 0.96);
  --text-secondary: rgba(255, 255, 255, 0.8);
  --text-muted: rgba(255, 255, 255, 0.62);
  --surface-card: rgba(8, 24, 38, 0.8);
  --surface-soft: rgba(255, 255, 255, 0.08);
  --surface-light: #ffffff;
  --surface-light-soft: #f4f9fc;
  --surface-light-alt: #eef5fa;
  --border-soft: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.18);
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.16);
  --shadow-lift: 0 24px 56px rgba(0, 0, 0, 0.18);
  --shadow-glow: 0 0 18px rgba(48, 202, 249, 0.4);
  --gradient-primary: linear-gradient(137deg, #30caf9 0%, #0b9fcb 100%);
  --gradient-dark: linear-gradient(180deg, rgba(28, 67, 99, 0.2) 0%, rgba(7, 24, 38, 0.92) 100%);
  --radius-xs: 14px;
  --radius-sm: 18px;
  --radius-md: 22px;
  --radius-lg: 28px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
  --space-8: 40px;
  --space-9: 48px;
  --space-10: 64px;
  --container: 1160px;
  --topbar-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--topbar-h) + 20px);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text-primary);
  background:
    linear-gradient(180deg, rgba(3, 33, 58, 0.82) 0%, rgba(13, 41, 64, 0.78) 46%, rgba(19, 49, 73, 0.84) 100%),
    radial-gradient(circle at top left, rgba(48, 202, 249, 0.16), transparent 30%),
    radial-gradient(circle at top right, rgba(241, 196, 110, 0.08), transparent 24%),
    url("../banner-hero.jpg") center top / cover no-repeat fixed;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(56px);
  opacity: 0.16;
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: -10rem;
  left: -8rem;
  background: rgba(48, 202, 249, 0.5);
}

body::after {
  right: -8rem;
  bottom: 10rem;
  background: rgba(241, 196, 110, 0.26);
}

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

button {
  font: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(48, 202, 249, 0.82);
  outline-offset: 3px;
}

code {
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(22, 48, 70, 0.1);
  background: rgba(22, 48, 70, 0.06);
  color: var(--ink-strong);
  font-family: inherit;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  background: rgba(2, 34, 58, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  min-height: var(--topbar-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 150px;
}

.brand__logo {
  height: 26px;
  width: auto;
  opacity: 0.96;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav__link {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--light-blue-2);
  text-shadow: var(--shadow-glow);
}

.nav__cta,
.mobile-menu__cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.nav__cta {
  border-color: rgba(255, 255, 255, 0.88);
  background: transparent;
  color: var(--white);
}

.nav__cta:hover,
.nav__cta:focus-visible {
  background: var(--white);
  color: var(--light-blue-1);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

.topbar__actions {
  display: none;
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.hamburger__lines {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
}

.hamburger__lines::before,
.hamburger__lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  transition: top 0.18s ease, transform 0.18s ease;
}

.hamburger__lines::before {
  top: -6px;
}

.hamburger__lines::after {
  top: 6px;
}

.topbar.is-open .hamburger__lines {
  background: transparent;
}

.topbar.is-open .hamburger__lines::before {
  top: 0;
  transform: rotate(45deg);
}

.topbar.is-open .hamburger__lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(2, 34, 58, 0.96);
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 0 22px;
  text-align: center;
}

.mobile-menu__link,
.mobile-menu__cta {
  width: min(320px, 100%);
}

.mobile-menu__link {
  padding: 12px 8px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.mobile-menu__link:hover,
.mobile-menu__link:focus-visible {
  color: var(--light-blue-2);
  text-shadow: var(--shadow-glow);
}

.mobile-menu__cta {
  border-color: rgba(255, 255, 255, 0.88);
  background: transparent;
  color: var(--white);
}

.mobile-menu__cta:hover,
.mobile-menu__cta:focus-visible {
  background: var(--white);
  color: var(--light-blue-1);
  box-shadow: var(--shadow-glow);
}

.hero,
.section,
.system-panel,
#downloads,
#logos-oficiais,
#cores,
#tipografia,
.logo-pack {
  scroll-margin-top: calc(var(--topbar-h) + 20px);
}

.hero {
  position: relative;
  overflow: clip;
  padding: clamp(78px, 10vw, 132px) 0 76px;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(92deg, rgba(7, 36, 58, 0.74) 0%, rgba(7, 36, 58, 0.56) 42%, rgba(7, 36, 58, 0.38) 100%),
    radial-gradient(circle at 20% 22%, rgba(48, 202, 249, 0.12), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(48, 202, 249, 0.08), transparent 18%);
  box-shadow: inset 0 -140px 120px rgba(2, 34, 58, 0.28);
  pointer-events: none;
}

.hero__shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: var(--space-8);
  align-items: stretch;
}

.hero__content {
  display: grid;
  align-content: center;
  gap: var(--space-4);
}

.eyebrow,
.section__eyebrow,
.card__tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow,
.section__eyebrow {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
}

.card__tag {
  justify-self: start;
  align-self: start;
  border: 1px solid rgba(22, 48, 70, 0.1);
  background: rgba(11, 159, 203, 0.08);
  color: var(--dark-blue-3);
  padding: 0.18rem 0.68rem;
  line-height: 1;
}

.card__tag--ink {
  background: rgba(11, 159, 203, 0.08);
  color: var(--dark-blue-3);
}

.hero__title {
  margin: 0;
  max-width: 9ch;
  font-size: clamp(3rem, 8vw, 5.7rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.hero__description {
  max-width: 40rem;
  margin: 0;
  color: var(--text-secondary);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.68;
}

.hero__actions,
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.hero__actions {
  margin-top: var(--space-4);
}

.hero__pills {
  margin-top: var(--space-1);
  gap: 0.75rem;
}

.btn--primary {
  color: var(--white);
  background: var(--gradient-primary);
  box-shadow: 0 14px 32px rgba(11, 159, 203, 0.22);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(11, 159, 203, 0.28), var(--shadow-glow);
}

.btn--secondary {
  color: var(--ink-strong);
  border-color: rgba(22, 48, 70, 0.12);
  background: rgba(22, 48, 70, 0.04);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  transform: translateY(-2px);
  color: var(--light-blue-1);
  border-color: rgba(48, 202, 249, 0.34);
  box-shadow: 0 12px 28px rgba(13, 42, 65, 0.12);
}

.hero .btn--secondary,
.logo-pack .btn--secondary,
.download-callout .btn--secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.hero .btn--secondary:hover,
.hero .btn--secondary:focus-visible,
.logo-pack .btn--secondary:hover,
.logo-pack .btn--secondary:focus-visible {
  color: var(--light-blue-2);
  box-shadow: var(--shadow-glow);
}

.btn--full {
  width: 100%;
}

.btn.is-loading,
.btn:disabled {
  cursor: progress;
  opacity: 0.82;
  transform: none;
  box-shadow: none;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.52rem 0.84rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.025) 100%);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.hero-chip::before {
  content: "";
  width: 0.46rem;
  height: 0.46rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(180deg, #30caf9 0%, #0b9fcb 100%);
  box-shadow: 0 0 0 4px rgba(48, 202, 249, 0.08);
}

.hero__panel {
  display: grid;
  gap: var(--space-4);
  align-content: start;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(7, 24, 38, 0.56) 0%, rgba(7, 24, 38, 0.84) 100%);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.hero__logo-shell {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: var(--space-7);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%),
    radial-gradient(circle at center, rgba(48, 202, 249, 0.12), transparent 68%);
}

.hero__logo-shell img {
  width: min(100%, 22rem);
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.26));
}

.hero__summary {
  display: grid;
  gap: var(--space-3);
}

.hero__summary-card {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 1.05rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.hero__summary-card strong {
  font-size: 1rem;
}

.hero__summary-card span {
  color: var(--text-secondary);
  line-height: 1.55;
}

.section {
  padding: clamp(56px, 8vw, 92px) 0;
}

.section__heading {
  display: grid;
  gap: var(--space-3);
  margin-bottom: var(--space-7);
}

.section__heading h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.8vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.section__heading p {
  max-width: 48rem;
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.68;
}

.section__heading--split {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.action-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
}

.section__heading--split .action-group {
  justify-self: end;
}

.section__anchor-link {
  width: fit-content;
  color: var(--gold-2);
  font-size: 0.98rem;
  font-weight: 700;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.section__anchor-link:hover,
.section__anchor-link:focus-visible {
  color: var(--light-blue-2);
  text-shadow: var(--shadow-glow);
}

.section__subhead {
  margin: var(--space-9) 0 var(--space-6);
}

.section__subhead h3 {
  margin: 0.55rem 0 0.5rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
}

.section__subhead p {
  max-width: 42rem;
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.68;
}

.editorial-grid,
.logo-stage,
.system-grid,
.card-grid {
  display: grid;
  gap: var(--space-6);
}

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

.rule-stack {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  align-items: start;
}

.rule-column {
  display: grid;
  gap: var(--space-5);
  align-content: start;
}

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

.card,
.showcase-card,
.system-panel,
.media-card,
.gradient-card,
.swatch,
.logo-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-border);
  background: var(--surface-light);
  color: var(--ink-strong);
  box-shadow: var(--shadow-soft);
}

.card {
  display: grid;
  align-content: start;
  gap: var(--space-4);
  padding: var(--space-6);
}

.card h3,
.media-card__body h3,
.showcase-card__footer strong,
.system-panel__header h3,
.logo-card__meta h3 {
  margin: 0;
  letter-spacing: -0.03em;
}

.card h3,
.media-card__body h3,
.system-panel__header h3 {
  font-size: 1.48rem;
  line-height: 1.14;
}

.card p,
.media-card__body p,
.showcase-card__footer p,
.system-panel__header p,
.gradient-card__body span,
.logo-card p {
  margin: 0;
  color: var(--ink);
  line-height: 1.68;
}

.card__note {
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.card--statement h3 {
  max-width: none;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
}

.card--statement {
  max-width: none;
}

.card--compact {
  min-height: 0;
}

@media (min-width: 1025px) {
  .card--tagline-rule,
  .card--pronunciation,
  .card--signature-rule {
    min-height: 0;
    align-self: start;
  }

  .card--tagline-rule {
    max-width: none;
    width: 100%;
    padding: 0.95rem var(--space-5) 1rem;
    gap: 0.35rem;
  }

  .card--tagline-rule h3 {
    font-size: clamp(1.35rem, 2vw, 1.72rem);
    line-height: 1.08;
  }

  .card--article-rule {
    min-height: 25rem;
    padding: calc(var(--space-6) + 0.4rem) var(--space-6) calc(var(--space-6) + 0.8rem);
  }
}

.card--sidebar {
  align-content: start;
}

.card--emphasis {
  position: relative;
  overflow: hidden;
  border-color: rgba(11, 159, 203, 0.28);
  background:
    radial-gradient(circle at top right, rgba(48, 202, 249, 0.22), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #eef9ff 100%);
  box-shadow:
    0 26px 58px rgba(11, 159, 203, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.card--emphasis::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 9px;
  background: linear-gradient(180deg, #30caf9 0%, #0b9fcb 100%);
}

.card--emphasis::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(48, 202, 249, 0.16);
  pointer-events: none;
}

.card--emphasis .card__tag {
  background: rgba(11, 159, 203, 0.14);
  border-color: rgba(11, 159, 203, 0.18);
}

.card--emphasis h3 {
  color: var(--dark-blue-4);
}

.card--emphasis:hover {
  border-color: rgba(11, 159, 203, 0.42);
  box-shadow:
    0 30px 64px rgba(11, 159, 203, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.usage-list {
  display: grid;
  gap: var(--space-2);
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(22, 48, 70, 0.08);
  background: rgba(255, 255, 255, 0.78);
}

.usage-list strong {
  color: var(--ink-strong);
  font-size: 0.96rem;
}

.usage-list ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink);
}

.usage-list li + li {
  margin-top: 0.28rem;
}

.sidebar-points {
  display: grid;
  gap: var(--space-3);
}

.sidebar-points__item {
  display: grid;
  gap: 0.3rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--ink-border);
  background: var(--surface-light-alt);
}

.sidebar-points__item strong {
  font-size: 1rem;
}

.sidebar-points__item span {
  color: var(--ink);
  line-height: 1.55;
}

.logo-stage {
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: stretch;
}

.showcase-card {
  display: grid;
  overflow: hidden;
}

.showcase-card__canvas {
  padding: var(--space-6);
  background:
    linear-gradient(180deg, #f8fcff 0%, #f0f7fb 100%);
  border-bottom: 1px solid rgba(22, 48, 70, 0.08);
}

.brand-variants {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.brand-variants__subhead {
  margin: var(--space-5) 0 var(--space-3);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.brand-variant {
  display: grid;
  gap: var(--space-4);
  align-content: start;
  margin: 0;
  min-height: 100%;
  padding: var(--space-5);
  border-radius: var(--radius-md);
  border: 1px solid rgba(22, 48, 70, 0.08);
  background: var(--white);
}

.brand-variant figcaption {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.brand-variant img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
}

.showcase-card__footer {
  padding: var(--space-6);
}

.showcase-card__footer strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.system-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: start;
}

.verb-layout {
  display: grid;
  gap: var(--space-6);
}

.verb-block {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-border);
  background: var(--surface-light);
  color: var(--ink-strong);
  box-shadow: var(--shadow-soft);
}

.verb-block h3,
.verb-block h4 {
  margin: 0;
  color: var(--ink-strong);
  letter-spacing: -0.03em;
}

.verb-block h3 {
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.verb-block h4 {
  margin-top: var(--space-6);
  font-size: 1.18rem;
}

.verb-block__label {
  margin: var(--space-5) 0 var(--space-4);
  color: var(--ink-soft);
  font-size: 0.98rem;
  font-weight: 700;
}

.verb-table-wrap {
  margin-top: var(--space-5);
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--ink-border);
}

.verb-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--surface-light);
}

.verb-table th,
.verb-table td {
  padding: 0.95rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(22, 48, 70, 0.08);
  color: var(--ink);
  line-height: 1.55;
}

.verb-table th {
  background: var(--surface-light-alt);
  color: var(--ink-strong);
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
}

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

.verb-table em {
  color: var(--ink-strong);
  font-style: italic;
}

.verb-forms {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--ink-border);
  background: var(--surface-light);
}

.verb-form-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: var(--space-4);
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(22, 48, 70, 0.08);
}

.verb-form-row:last-child {
  border-bottom: 0;
}

.verb-form-pronoun,
.verb-form-value {
  color: var(--ink);
  line-height: 1.55;
}

.verb-form-pronoun {
  font-weight: 700;
}

.verb-form-pronoun em {
  color: var(--ink-strong);
}

.system-panel {
  display: grid;
  gap: var(--space-6);
  padding: var(--space-6);
}

.system-panel__header {
  display: grid;
  gap: var(--space-3);
}

.color-section {
  display: grid;
  gap: var(--space-4);
}

.system-subhead {
  display: grid;
  gap: var(--space-2);
}

.palette {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.swatch {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--ink-border);
  box-shadow: none;
}

.swatch--white .swatch__sample {
  background: #ffffff !important;
  box-shadow: inset 0 0 0 1px rgba(22, 48, 70, 0.1);
}

.swatch--light-info .swatch__detail,
.swatch--light-info .swatch__detail--muted,
.swatch--light-info .swatch__button--sample {
  color: var(--ink-strong);
}

.swatch--light-info .swatch__button--sample:hover,
.swatch--light-info .swatch__button--sample:focus-visible {
  color: var(--dark-blue-1);
}

.swatch__sample {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 148px;
  padding: var(--space-4);
  background: var(--swatch);
}

.swatch__sample-meta {
  display: grid;
  gap: 0.22rem;
}

.swatch__meta {
  display: grid;
  gap: 0.38rem;
  padding: var(--space-4);
}

.swatch__details {
  display: grid;
  gap: 0.22rem;
}

.swatch__detail {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  line-height: 1.28;
}

.swatch__detail--muted {
  color: rgba(255, 255, 255, 0.9);
}

.swatch__meta strong {
  font-size: 1rem;
}

.swatch__note {
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.45;
}

.swatch__button {
  justify-self: start;
  padding: 0.6rem 0.88rem;
  border-radius: 999px;
  border: 1px solid rgba(22, 48, 70, 0.12);
  background: rgba(22, 48, 70, 0.04);
  color: var(--ink-strong);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.swatch__button--sample {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.swatch__button:hover,
.swatch__button:focus-visible {
  color: var(--light-blue-1);
  border-color: rgba(48, 202, 249, 0.34);
  box-shadow: var(--shadow-glow);
}

.swatch__button--sample:hover,
.swatch__button--sample:focus-visible {
  border-color: transparent;
  box-shadow: none;
  color: #d5f3ff;
}

.swatch--white .swatch__detail,
.swatch--white .swatch__detail--muted,
.swatch--white .swatch__button--sample {
  color: var(--ink-strong);
}

.swatch--white .swatch__button--sample:hover,
.swatch--white .swatch__button--sample:focus-visible {
  color: var(--dark-blue-1);
}

.gradient-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gradient-grid.gradient-grid--single {
  grid-template-columns: 1fr;
}

.gradient-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--ink-border);
  box-shadow: none;
}

.gradient-card--wide {
  background: var(--surface-light);
}

.gradient-card__sample {
  min-height: 150px;
}

.gradient-card__sample--univer-blue {
  position: relative;
  min-height: 260px;
  background: linear-gradient(90deg, #3E6991 0%, #173355 52%, #112337 100%);
}

.gradient-card__sample--blue-1 {
  background: linear-gradient(137deg, #30caf9 0%, #074d63 100%);
}

.gradient-card__sample--blue-2 {
  background: linear-gradient(137deg, #30caf9 0%, #0b9fcb 100%);
}

.gradient-card__sample--gold {
  background: linear-gradient(173.7deg, rgb(200, 141, 60) -55.33%, rgb(71, 41, 1) 136.43%);
}

.gradient-card__body {
  padding: var(--space-4);
}

.gradient-card__body strong {
  display: block;
  margin-bottom: 0.28rem;
  font-size: 1rem;
  color: var(--ink-strong);
}

.gradient-card__scale {
  position: absolute;
  inset: auto clamp(22px, 5vw, 40px) clamp(26px, 6vw, 38px);
  height: 72px;
}

.gradient-card__scale-line {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
}

.gradient-card__stop {
  position: absolute;
  top: 0;
  display: grid;
  justify-items: center;
  gap: 0.7rem;
  transform: translateX(-50%);
}

.gradient-card__stop--left {
  left: 0;
}

.gradient-card__stop--center {
  left: 52%;
}

.gradient-card__stop--right {
  left: 100%;
}

.gradient-card__stop-dot {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 3px rgba(20, 39, 58, 0.18);
}

.gradient-card__stop-label {
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.24);
}

.type-showcase {
  display: grid;
  gap: var(--space-4);
}

.type-preview-card {
  display: grid;
  gap: var(--space-3);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid var(--ink-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 247, 252, 0.94) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.type-preview-card__name {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-strong);
}

.type-preview-card__name::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gradient-primary);
  box-shadow: 0 0 0 4px rgba(48, 202, 249, 0.12);
}

.type-specimen {
  display: block;
  width: 100%;
  overflow-x: auto;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--ink-border);
  background: var(--surface-light-soft);
  color: var(--ink-strong);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.5;
}

.type-specimen--dm-sans {
  font-family: "DM Sans", sans-serif;
}

.type-specimen--montserrat {
  font-family: "Montserrat", sans-serif;
}

.type-specimen--nunito {
  font-family: "Nunito", sans-serif;
}

.type-specimen--display {
  font-size: clamp(1.45rem, 3vw, 2.08rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.weight-list {
  display: grid;
  gap: var(--space-3);
}

.weight-list__item {
  display: grid;
  gap: 0.28rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--ink-border);
  background: var(--surface-light-soft);
}

.weight-list__item strong {
  font-size: 1rem;
  color: var(--ink-strong);
}

.weight-list__item span {
  color: var(--ink);
  line-height: 1.55;
}

.type-actions {
  display: grid;
  gap: var(--space-4);
}

.type-actions__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.media-card {
  display: grid;
  overflow: hidden;
}

.media-card__image {
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: var(--space-6);
  background: var(--white);
  border-bottom: 1px solid rgba(22, 48, 70, 0.08);
}

.media-card__image img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.media-card__image--contain img {
  max-height: 340px;
}

.media-card__image--white {
  background: var(--white);
}

.media-card__body {
  display: grid;
  gap: var(--space-3);
  padding: var(--space-6);
}

.section--download {
  padding-top: var(--space-3);
}

.download-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-6);
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  background:
    radial-gradient(circle at top right, rgba(48, 202, 249, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(28, 67, 99, 0.24) 0%, rgba(7, 24, 38, 0.92) 100%);
  box-shadow: var(--shadow-soft);
}

.download-callout__content {
  min-width: 0;
}

.download-callout h2 {
  margin: 0.55rem 0 0.7rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.download-callout p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.68;
}

.download-callout .action-group {
  justify-self: end;
}

.export-guide__button {
  gap: 0.72rem;
}

.export-guide__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
}

.logo-pack {
  outline: none;
}

.download-guide-bar {
  display: flex;
  justify-content: center;
  padding-top: var(--space-5);
}

.download-guide-bar .export-guide__button {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.download-guide-bar .export-guide__button:hover,
.download-guide-bar .export-guide__button:focus-visible {
  color: var(--white);
  border-color: rgba(48, 202, 249, 0.34);
  background: rgba(48, 202, 249, 0.14);
  box-shadow: var(--shadow-glow);
}

.logo-pack__grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.logo-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.logo-card__preview {
  display: grid;
  place-items: center;
  min-height: 230px;
  padding: var(--space-6);
  border-bottom: 1px solid rgba(22, 48, 70, 0.08);
}

.logo-card__preview--light {
  background: linear-gradient(180deg, #ffffff 0%, #edf6fb 100%);
}

.logo-card__preview--dark {
  background:
    radial-gradient(circle at center, rgba(48, 202, 249, 0.16), transparent 60%),
    linear-gradient(180deg, #173552 0%, #0a2234 100%);
}

.logo-card__preview--neutral {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 50%),
    linear-gradient(180deg, #173552 0%, #10283d 100%);
}

.logo-card__preview img {
  width: 100%;
  max-width: 19rem;
  max-height: 10rem;
  object-fit: contain;
}

.logo-card__body {
  display: grid;
  gap: var(--space-3);
  padding: var(--space-5);
}

.logo-card__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3);
}

.logo-card__meta h3 {
  font-size: 1.16rem;
  line-height: 1.2;
  color: var(--ink-strong);
}

.logo-card__format {
  flex-shrink: 0;
  padding: 0.36rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(22, 48, 70, 0.1);
  background: rgba(22, 48, 70, 0.05);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.logo-card p {
  color: var(--ink);
}

.logo-card .btn--secondary {
  color: var(--ink-strong);
  border-color: rgba(22, 48, 70, 0.12);
  background: rgba(22, 48, 70, 0.04);
}

.logo-card .btn--secondary:hover,
.logo-card .btn--secondary:focus-visible {
  color: var(--dark-blue-4);
  border-color: rgba(48, 202, 249, 0.3);
  background: rgba(11, 159, 203, 0.08);
  box-shadow: 0 12px 28px rgba(13, 42, 65, 0.12);
}

.footer {
  margin-top: var(--space-10);
  padding-top: var(--space-9);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(0, 0, 0, 0.96));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1.25fr 1fr;
  gap: 34px;
  padding-bottom: 36px;
}

.footer__col {
  display: grid;
  align-content: start;
  gap: 4px;
}

.footer__title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
}

.footer__link {
  display: block;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.footer__link:hover,
.footer__link:focus-visible {
  color: var(--light-blue-1);
  text-shadow: var(--shadow-glow);
}

.footer__meta {
  margin-top: 14px;
}

.footer__metaTitle {
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 800;
}

.footer__metaText {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 4px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.pill:hover,
.pill:focus-visible {
  border-color: rgba(48, 202, 249, 0.4);
  box-shadow: var(--shadow-glow);
}

.pill__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pill__text {
  font-size: 14px;
  font-weight: 700;
}

.payments {
  display: grid;
  gap: 12px;
}

.payments img {
  max-width: 210px;
  height: auto;
  opacity: 0.96;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
}

.footer__bottomInner {
  display: flex;
  justify-content: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 80;
  transform: translate(-50%, 120%);
  opacity: 0;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 24, 38, 0.96);
  color: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, opacity 0.28s ease;
  pointer-events: none;
}

.toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(11, 159, 203, 0.24);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(11, 159, 203, 0.3), var(--shadow-glow);
  filter: saturate(1.05);
}

.card,
.showcase-card,
.system-panel,
.media-card,
.swatch,
.gradient-card,
.logo-card,
.download-callout {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover,
.showcase-card:hover,
.system-panel:hover,
.media-card:hover,
.swatch:hover,
.gradient-card:hover,
.logo-card:hover,
.download-callout:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(48, 202, 249, 0.18);
}

@media (max-width: 1200px) {
  .system-grid,
  .logo-stage {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .hero__shell,
  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .rule-stack {
    grid-template-columns: 1fr;
  }

  .card-grid--applications,
  .card-grid--two,
  .gradient-grid,
  .footer__grid,
  .logo-pack__grid,
  .brand-variants {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .type-actions__links {
    grid-template-columns: 1fr;
  }

  .gradient-grid.gradient-grid--single {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 830px) {
  .nav {
    display: none;
  }

  .topbar__actions,
  .hamburger {
    display: block;
  }

  .hero {
    padding-top: 72px;
  }

  .hero__panel {
    padding: var(--space-5);
  }

  .download-callout {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .download-callout .action-group,
  .section__heading--split .action-group {
    justify-self: stretch;
    width: 100%;
  }

  .download-guide-bar {
    justify-content: stretch;
    padding-top: var(--space-4);
  }

  .section__heading p,
  .section__subhead p,
  .hero__description {
    max-width: none;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }

  .verb-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .verb-table,
  .verb-table tbody,
  .verb-table tr,
  .verb-table td {
    display: block;
    width: 100%;
  }

  .verb-table {
    min-width: 0;
    background: transparent;
  }

  .verb-table thead {
    display: none;
  }

  .verb-table tbody {
    display: grid;
    gap: var(--space-3);
  }

  .verb-table tbody tr {
    overflow: hidden;
    border: 1px solid var(--ink-border);
    border-radius: var(--radius-md);
    background: var(--surface-light);
    box-shadow: var(--shadow-soft);
  }

  .verb-table td {
    display: grid;
    grid-template-columns: minmax(118px, 42%) minmax(0, 1fr);
    gap: 0.85rem;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(22, 48, 70, 0.08);
  }

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

  .verb-table td::before {
    content: attr(data-label);
    color: var(--ink-strong);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.35;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 28px);
  }

  .section {
    padding: 56px 0;
  }

  .card-grid--applications,
  .card-grid--two,
  .palette,
  .gradient-grid,
  .footer__grid,
  .logo-pack__grid,
  .brand-variants {
    grid-template-columns: 1fr;
  }

  .verb-block {
    padding: var(--space-5);
  }

  .gradient-grid.gradient-grid--single {
    grid-template-columns: 1fr;
  }

  .verb-form-row {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .hero__actions .btn,
  .download-callout .btn,
  .section__heading--split .btn {
    width: 100%;
  }

  .hero-chip {
    width: 100%;
    justify-content: center;
  }

  .hero__logo-shell,
  .media-card__image,
  .logo-card__preview {
    min-height: 220px;
  }

  .card,
  .system-panel,
  .media-card__body,
  .showcase-card__canvas,
  .showcase-card__footer,
  .logo-card__body {
    padding: var(--space-5);
  }

  .footer__col,
  .footer__title {
    text-align: center;
  }

  .pill {
    margin-left: auto;
    margin-right: auto;
  }

  .payments {
    justify-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 28px);
  }

  .hero__title {
    max-width: none;
  }

  .hero__description,
  .section__heading p,
  .section__subhead p {
    font-size: 1rem;
  }

  .type-preview-card {
    padding: var(--space-3);
  }

  .type-preview-card__name {
    font-size: 0.82rem;
    letter-spacing: 0.06em;
  }

  .type-specimen {
    font-size: 0.98rem;
  }

  .gradient-card__sample--univer-blue {
    min-height: 220px;
  }

  .gradient-card__scale {
    inset: auto 18px 22px;
  }

  .gradient-card__stop-label {
    font-size: 0.84rem;
  }

  .logo-card__meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
  }

  .verb-table td {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .verb-table td::before {
    font-size: 0.74rem;
  }
}

@media (max-width: 360px) {
  .container {
    width: calc(100% - 22px);
  }
}

@media (max-width: 320px) {
  .container {
    width: calc(100% - 18px);
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .gradient-card__scale {
    inset: auto 14px 18px;
  }

  .gradient-card__stop-dot {
    width: 20px;
    height: 20px;
  }

  .gradient-card__stop-label {
    font-size: 0.76rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
