/* styles.css */
:root {
  --bg: #06131f;
  --bg-soft: #0b1f31;
  --panel: rgba(8, 22, 36, 0.78);
  --panel-2: rgba(9, 29, 48, 0.9);
  --text: #ecfaff;
  --muted: #91adc0;
  --line: rgba(94, 227, 255, 0.18);
  --primary: #00d1ff;
  --primary-2: #0b86ff;
  --accent: #7af7ff;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(0, 8, 15, 0.34);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --theme-chip: rgba(255, 255, 255, 0.05);
  --theme-chip-active: linear-gradient(135deg, rgba(0, 209, 255, 0.22), rgba(11, 134, 255, 0.28));
  --hero-glow: rgba(0, 209, 255, 0.18);
}

body.theme-light {
  --bg: #f4fbff;
  --bg-soft: #e5f5fb;
  --panel: rgba(255, 255, 255, 0.85);
  --panel-2: rgba(244, 251, 255, 0.96);
  --text: #062337;
  --muted: #507086;
  --line: rgba(6, 35, 55, 0.12);
  --primary: #0099d6;
  --primary-2: #005ae0;
  --accent: #067e95;
  --shadow: 0 20px 44px rgba(18, 69, 97, 0.12);
  --theme-chip: rgba(6, 35, 55, 0.05);
  --theme-chip-active: linear-gradient(135deg, rgba(0, 153, 214, 0.16), rgba(0, 90, 224, 0.16));
  --hero-glow: rgba(0, 153, 214, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, var(--hero-glow), transparent 30%),
    radial-gradient(circle at top right, rgba(11, 134, 255, 0.12), transparent 24%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background 0.35s ease, color 0.35s ease;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: 110px;
  right: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 209, 255, 0.16), transparent 68%);
  filter: blur(4px);
}

body::after {
  left: -140px;
  bottom: 8%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 134, 255, 0.12), transparent 70%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  background: var(--white);
  color: #000;
  padding: 0.75rem 1rem;
  border-radius: 10px;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-dark {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2 {
  margin: 0.35rem 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(8, 17, 32, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-lockup {
  display: grid;
  gap: 0.05rem;
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  box-shadow: var(--shadow);
}

.brand-text {
  font-size: 1rem;
}

.brand-subtext {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.nav-menu a {
  color: var(--muted);
  font-weight: 600;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--text);
}

.theme-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.theme-option {
  min-height: 38px;
  padding: 0.55rem 0.95rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.theme-option:hover,
.theme-option:focus-visible {
  color: var(--text);
}

.theme-option.is-active {
  background: var(--theme-chip-active);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: white;
  margin: 5px 0;
  border-radius: 999px;
}

.hero {
  padding: 5.5rem 0 3.25rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  max-width: 10.5ch;
}

.lead {
  margin: 1.2rem 0 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-note {
  max-width: 54ch;
  margin: 1rem 0 0;
  color: var(--text);
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--text);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text);
  background: transparent;
}

.btn-sm {
  min-height: 42px;
  padding: 0.65rem 1rem;
}

.btn-full {
  width: 100%;
}

.trust-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 1.5rem 0 0;
}

.trust-list li {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  font-size: 0.93rem;
}

.hero-card {
  display: flex;
  justify-content: center;
}

.glass-card {
  width: min(100%, 490px);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    linear-gradient(145deg, rgba(0, 209, 255, 0.08), transparent 55%);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.screen-top {
  display: flex;
  gap: 0.5rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
}

.screen-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
}

.screen-body {
  padding: 1.1rem;
  display: grid;
  gap: 1rem;
}

.hero-panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.hero-panel-heading p {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.theme-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1rem;
}

.theme-label::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 18px rgba(0, 209, 255, 0.5);
}

.hero-metric-grid {
  display: grid;
  gap: 1rem;
}

.hero-preview-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-preview-strip span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.metric {
  padding: 1.2rem;
  background: rgba(8, 17, 32, 0.52);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.metric-highlight {
  background:
    linear-gradient(135deg, rgba(0, 209, 255, 0.14), rgba(11, 134, 255, 0.1)),
    rgba(8, 17, 32, 0.62);
}

.metric strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.metric span {
  color: var(--muted);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card,
.card,
.mini-card,
.feature-item,
.process-step,
.contact-card,
.contact-form {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-card,
.card,
.mini-card,
.feature-item,
.process-step,
.contact-card,
.contact-form,
.glass-card {
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.card:hover,
.mini-card:hover,
.feature-item:hover,
.process-step:hover,
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 209, 255, 0.24);
}

.stat-card {
  padding: 1.4rem;
  backdrop-filter: blur(10px);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
}

.stat-label {
  color: var(--muted);
}

.cards {
  display: grid;
  gap: 1.2rem;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  padding: 1.4rem;
  position: relative;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.card p,
.card li {
  color: var(--muted);
}

.card ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 1rem;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(78,161,255,0.18), rgba(122,92,255,0.2));
  border: 1px solid var(--line);
}

.badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(22, 210, 167, 0.12);
  color: var(--accent);
  border: 1px solid rgba(22, 210, 167, 0.2);
  font-size: 0.85rem;
  font-weight: 700;
}

.featured {
  outline: 1px solid rgba(78, 161, 255, 0.35);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.035);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: start;
}

.benefit-grid,
.feature-list,
.process-grid,
.contact-cards,
.systems-grid {
  display: grid;
  gap: 1rem;
}

.benefit-grid {
  grid-template-columns: repeat(2, 1fr);
}

.mini-card,
.feature-item,
.process-step,
.contact-card {
  padding: 1.25rem;
}

.feature-list {
  grid-template-columns: repeat(3, 1fr);
}

.systems-section .section-heading {
  margin-bottom: 2rem;
}

.systems-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.systems-kicker {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.systems-note {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
}

.systems-grid {
  grid-template-columns: repeat(3, 1fr);
}

.system-card {
  min-height: 220px;
}

.system-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.systems-stack {
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-weight: 600;
}

.feature-item h3,
.mini-card h3,
.process-step h3,
.contact-card h3 {
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.project-thumb {
  height: 180px;
  border-radius: 16px;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.08));
}

.project-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 12, 20, 0.02), rgba(3, 12, 20, 0.24));
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.35s ease;
}

.project-card:hover .project-thumb img {
  transform: scale(1.03);
}

.cta-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(0, 209, 255, 0.12), rgba(11, 134, 255, 0.08)),
    rgba(255, 255, 255, 0.035);
}

.pricing-grid .card {
  padding-top: 2rem;
}

.price {
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 800;
  margin: 0.35rem 0 0.5rem;
}

.price-note {
  min-height: 64px;
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-step span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  margin-bottom: 1rem;
  font-weight: 800;
}

.faq-wrap {
  max-width: 900px;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0 1rem;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 0;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  color: var(--muted);
  padding: 0 0 1rem;
  margin: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.25rem;
  align-items: start;
}

.contact-form {
  padding: 1.4rem;
}

.form-row {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

label {
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(8, 17, 32, 0.72);
  color: var(--text);
  border-radius: 14px;
  padding: 0.95rem 1rem;
}

input::placeholder,
textarea::placeholder {
  color: #8090b0;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(78, 161, 255, 0.35);
  border-color: rgba(78, 161, 255, 0.4);
}

.error {
  min-height: 1em;
  color: #ff9595;
  font-size: 0.86rem;
}

.form-note {
  color: var(--muted);
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 1.4rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 60;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(18, 140, 126, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float i {
  font-size: 2rem;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 24px 44px rgba(18, 140, 126, 0.42);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1rem;
}

.footer-grid h3 {
  margin-top: 0;
}

.footer-grid p,
.footer-grid li,
.footer-bottom {
  color: var(--muted);
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li + li {
  margin-top: 0.45rem;
}

.footer-bottom {
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

body.theme-light .site-header {
  background: rgba(244, 251, 255, 0.82);
}

body.theme-light .nav-toggle span {
  background: #062337;
}

body.theme-light .section-dark {
  background: rgba(6, 35, 55, 0.04);
}

body.theme-light .stat-card,
body.theme-light .card,
body.theme-light .mini-card,
body.theme-light .feature-item,
body.theme-light .process-step,
body.theme-light .contact-card,
body.theme-light .contact-form,
body.theme-light .glass-card {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(6, 35, 55, 0.1);
  box-shadow: 0 18px 34px rgba(18, 69, 97, 0.09);
}

body.theme-light .btn-secondary,
body.theme-light .btn-outline,
body.theme-light .theme-switch,
body.theme-light .hero-preview-strip span,
body.theme-light .trust-list li,
body.theme-light .faq-item,
body.theme-light .metric {
  background: rgba(255, 255, 255, 0.72);
}

body.theme-light .metric-highlight,
body.theme-light .featured {
  background:
    linear-gradient(135deg, rgba(0, 153, 214, 0.12), rgba(0, 90, 224, 0.08)),
    rgba(255, 255, 255, 0.92);
}

body.theme-light .glass-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(229,245,251,0.88)),
    linear-gradient(145deg, rgba(0, 153, 214, 0.08), transparent 55%);
}

body.theme-light .metric {
  background: rgba(244, 251, 255, 0.88);
}

body.theme-light .project-thumb::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(6, 35, 55, 0.1));
}

body.theme-light .screen-top span {
  background: rgba(6, 35, 55, 0.25);
}

body.theme-light .project-thumb {
  border-color: rgba(6, 35, 55, 0.08);
}

body.theme-light input,
body.theme-light textarea,
body.theme-light select {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(6, 35, 55, 0.14);
  color: #062337;
}

body.theme-light input::placeholder,
body.theme-light textarea::placeholder {
  color: #6b8597;
}

body.theme-light .btn-outline {
  border-color: rgba(6, 35, 55, 0.12);
}

body.theme-light .theme-option:hover,
body.theme-light .theme-option:focus-visible,
body.theme-light .nav-menu a:hover,
body.theme-light .nav-menu a:focus-visible {
  color: #062337;
}

@media (max-width: 1000px) {
  .hero-grid,
  .split,
  .contact-grid,
  .cards-3,
  .systems-grid,
  .feature-list,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .price-note {
    min-height: auto;
  }

  .systems-intro {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 4.25rem 0;
  }

  .nav {
    flex-wrap: wrap;
  }

  .nav-actions {
    margin-left: auto;
  }

  .theme-switch {
    order: -1;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #0c1730;
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1rem 1rem;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 0.85rem 0;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-preview-strip {
    gap: 0.45rem;
  }

  .hero-preview-strip span,
  .theme-option {
    font-size: 0.82rem;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 58px;
    height: 58px;
  }

  .whatsapp-float i {
    font-size: 1.8rem;
  }
}

@media (max-width: 400px) {
  .nav {
    min-height: auto;
    padding: 0.9rem 0;
    align-items: start;
  }

  .brand {
    width: 100%;
    gap: 0.7rem;
  }

  .brand-mark {
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 12px;
  }

  .brand-text {
    font-size: 0.96rem;
  }

  .brand-subtext {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .nav-actions {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
  }

  .theme-switch {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 232px;
  }

  .theme-option {
    flex: 1 1 0;
    min-height: 36px;
    padding: 0.5rem 0.7rem;
  }

  .nav-toggle {
    flex: 0 0 auto;
    padding: 0.2rem;
  }

  .hero {
    padding-top: 2.8rem;
  }
}
