:root {
  --bg: #14182f;
  --surface: rgba(21, 26, 50, 0.82);
  --surface-strong: rgba(26, 33, 64, 0.96);
  --surface-soft: rgba(34, 41, 78, 0.82);
  --line: rgba(214, 220, 230, 0.10);
  --line-strong: rgba(214, 220, 230, 0.16);
  --text: #edf2fb;
  --text-soft: #cad2e6;
  --text-muted: #93a1bf;
  --navy: #f4f7ff;
  --primary: #7190eb;
  --primary-strong: #c39cff;
  --cyan: #a6d3ff;
  --violet: #8e79d8;
  --violet-soft: rgba(169, 147, 218, 0.18);
  --silver: #d6dce6;
  --shadow: 0 24px 80px rgba(6, 9, 20, 0.42);
  --shadow-soft: 0 16px 48px rgba(6, 9, 20, 0.28);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1200px;
  --header-h: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 18%, rgba(195, 156, 255, 0.18), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(113, 144, 235, 0.18), transparent 24%),
    linear-gradient(180deg, #13172c 0%, #171a34 32%, #202242 68%, #2a2b4c 100%);
  min-height: 100vh;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 0% 60%, rgba(214, 220, 230, 0.06), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(142, 121, 216, 0.11), transparent 32%),
    linear-gradient(135deg, rgba(214,220,230,0.02), rgba(0,0,0,0));
  z-index: -2;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #4452a6, #8e79d8 68%, #c39cff);
  color: #fff;
  z-index: 1000;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 17, 33, 0.76);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(214, 220, 230, 0.08);
}

.nav-shell {
  max-width: calc(var(--container) + 40px);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--header-h);
}

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

.brand img {
  width: 44px;
  height: 44px;
}

.brand-copy {
  min-width: 0;
}

.brand-name {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.brand-tag {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: -2px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: rgba(26, 33, 64, 0.84);
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 999px;
  position: relative;
  transition: 0.25s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--text-soft);
  font-weight: 600;
  transition: 0.22s ease;
}

.nav-link:hover,
.nav-link[aria-current="page"],
.dropdown-toggle:hover,
.dropdown.open .dropdown-toggle {
  background: rgba(113, 144, 235, 0.14);
  color: var(--navy);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 12px 18px;
  background: linear-gradient(135deg, #4452a6, #7e6ddd 62%, #c39cff);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 18px 34px rgba(62, 79, 168, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover,
.button:hover,
.button-secondary:hover,
.button-ghost:hover,
.form-submit:hover,
.inline-button:hover {
  transform: translateY(-1px);
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.dropdown-link-row {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.dropdown-caret {
  padding: 12px;
  min-width: 44px;
}

.dropdown-toggle .chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -4px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  padding: 10px;
  background: rgba(22, 29, 56, 0.96);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(214, 220, 230, 0.10);
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.24s ease;
}

.dropdown.open .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  transition: 0.22s ease;
}

.dropdown-item:hover,
.dropdown-item.is-current {
  background: rgba(113, 144, 235, 0.14);
}

.dropdown-item-title {
  display: block;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
}

.dropdown-item-copy {
  display: block;
  font-size: 0.86rem;
  color: var(--text-soft);
  line-height: 1.45;
}

main {
  display: block;
}

.page-shell {
  max-width: calc(var(--container) + 40px);
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(214, 220, 230, 0.10);
  background: linear-gradient(180deg, rgba(19, 24, 46, 0.94), rgba(24, 29, 55, 0.86));
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero::before,
.hero::after,
.panel::before {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 320px;
  height: 320px;
  top: -140px;
  right: -80px;
  background: radial-gradient(circle, rgba(104, 216, 255, 0.28), rgba(104, 216, 255, 0));
}

.hero::after {
  width: 260px;
  height: 260px;
  bottom: -100px;
  left: -60px;
  background: radial-gradient(circle, rgba(182, 157, 246, 0.24), rgba(182, 157, 246, 0));
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(113, 144, 235, 0.14);
  border: 1px solid rgba(214, 220, 230, 0.10);
  color: var(--primary-strong);
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 0.85rem;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7190eb, #c39cff);
  box-shadow: 0 0 0 6px rgba(113, 144, 235, 0.12);
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  color: var(--navy);
}

.hero p,
.page-hero p,
.section-copy,
.lead {
  font-size: 1.08rem;
  color: var(--text-soft);
  max-width: 62ch;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.button,
.button-secondary,
.button-ghost,
.inline-button,
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 16px;
  font-weight: 700;
  transition: 0.22s ease;
  cursor: pointer;
}

.button,
.form-submit {
  color: #fff;
  border: 0;
  background: linear-gradient(135deg, #4452a6, #7e6ddd 62%, #c39cff);
  box-shadow: 0 18px 34px rgba(62, 79, 168, 0.34);
}

.button-secondary {
  color: var(--navy);
  background: rgba(18, 23, 46, 0.90);
  border: 1px solid rgba(214, 220, 230, 0.10);
  box-shadow: var(--shadow-soft);
}

.button-ghost,
.inline-button {
  color: var(--primary-strong);
  background: rgba(113, 144, 235, 0.14);
  border: 1px solid rgba(214, 220, 230, 0.10);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
  color: var(--text-muted);
  font-size: 0.93rem;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-trust span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--violet));
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.mockup {
  position: relative;
  overflow: hidden;
  padding: 14px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(29, 35, 67, 0.96), rgba(22, 28, 54, 0.94));
  border: 1px solid rgba(214, 220, 230, 0.10);
  box-shadow: var(--shadow);
}

.mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(148, 225, 255, 0.10), transparent 35%, rgba(195, 156, 255, 0.12));
  pointer-events: none;
}

.mockup img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(214, 220, 230, 0.10);
}

.floating-card {
  position: absolute;
  right: -12px;
  bottom: 22px;
  width: min(260px, 72%);
  padding: 16px;
  border-radius: 20px;
  background: rgba(20, 26, 50, 0.92);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(214, 220, 230, 0.10);
  box-shadow: var(--shadow);
}

.floating-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--navy);
}

.floating-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.section {
  margin-top: 42px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.section-head h2,
.page-section h2,
.panel h2,
.feature h3,
.card h3,
.policy h2,
.policy h3 {
  margin: 0;
  color: var(--navy);
  letter-spacing: -0.04em;
}

.section-head h2,
.page-section h2,
.panel h2,
.policy h2 {
  font-size: clamp(1.65rem, 3vw, 2.5rem);
}

.section-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--primary-strong);
  font-weight: 800;
  margin-bottom: 8px;
}

.grid-3,
.grid-2,
.grid-4,
.stats-grid,
.timeline-grid,
.contact-grid,
.product-grid {
  display: grid;
  gap: 18px;
}

.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.timeline-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.contact-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
.product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card,
.feature,
.panel,
.info-card,
.stat,
.timeline-step,
.contact-card,
.product-card,
.detail-card,
.policy-card,
.form-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(28, 34, 67, 0.96), rgba(22, 27, 52, 0.92));
  border: 1px solid rgba(214, 220, 230, 0.10);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.card,
.feature,
.info-card,
.stat,
.timeline-step,
.contact-card,
.product-card,
.detail-card,
.policy-card {
  padding: 22px;
}

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

.card::before,
.feature::before,
.info-card::before,
.timeline-step::before,
.product-card::before,
.detail-card::before,
.form-card::before {
  content: "";
  position: absolute;
  inset: auto -10% 100% auto;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(148, 225, 255, 0.14), transparent 70%);
  pointer-events: none;
}

.card p,
.feature p,
.info-card p,
.panel p,
.contact-card p,
.product-card p,
.detail-card p,
.policy-card p,
.policy li {
  color: #d3dbed;
}

.kicker {
  color: var(--primary-strong);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.icon-chip {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(113, 144, 235, 0.18), rgba(195, 156, 255, 0.18));
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 16px;
}

.stat-value {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-soft);
  font-weight: 600;
}

.ribbon-line {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-5deg);
  width: 120%;
  height: 110px;
  background: linear-gradient(90deg, rgba(195,156,255,0), rgba(195,156,255,0.42), rgba(113,144,235,0.66), rgba(166,211,255,0.34), rgba(166,211,255,0));
  filter: blur(34px);
  opacity: 0.55;
  pointer-events: none;
}

.list-clean {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.list-clean li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
}

.list-clean li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--violet));
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(24, 29, 55, 0.94), rgba(31, 37, 70, 0.90));
  border: 1px solid rgba(214, 220, 230, 0.10);
  box-shadow: var(--shadow);
}

.page-hero.slim {
  padding-bottom: 26px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.breadcrumbs span {
  color: rgba(69, 80, 113, 0.7);
}

.page-section {
  margin-top: 28px;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(20,34,75,0.06);
  color: var(--navy);
  font-weight: 700;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  background: rgba(113, 144, 235, 0.14);
  color: var(--primary-strong);
}

.contact-meta {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.contact-link {
  font-weight: 700;
  color: var(--primary-strong);
  word-break: break-word;
}

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

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

label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--navy);
}

input,
textarea,
select {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(20,34,75,0.12);
  background: rgba(18, 23, 46, 0.90);
  padding: 14px 16px;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(113, 144, 235, 0.42);
  box-shadow: 0 0 0 4px rgba(113, 144, 235, 0.18);
}

.form-note,
.small-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.notice {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(113, 144, 235, 0.14);
  border: 1px solid rgba(214, 220, 230, 0.10);
  color: var(--text-soft);
}

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

.policy-card ul {
  margin: 0;
  padding-left: 20px;
}

.policy-card li + li {
  margin-top: 10px;
}

.footer-cta {
  margin-top: 48px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(34, 41, 78, 0.96), rgba(68, 82, 166, 0.92), rgba(142, 121, 216, 0.88));
  color: #fff;
  box-shadow: var(--shadow);
}

.footer-cta h2,
.footer-cta p {
  color: #fff;
}

.footer-cta .button-secondary {
  background: rgba(214, 220, 230, 0.10);
  color: #fff;
  border-color: rgba(214, 220, 230, 0.18);
}

.site-footer {
  margin-top: 48px;
  border-top: 1px solid rgba(214,220,230,0.10);
  background: rgba(12, 15, 30, 0.72);
}

.footer-shell {
  max-width: calc(var(--container) + 40px);
  margin: 0 auto;
  padding: 28px 20px 40px;
  display: grid;
  gap: 22px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-nav,
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-nav a,
.footer-meta a {
  color: var(--text-soft);
  font-weight: 600;
}

.footer-nav a:hover,
.footer-meta a:hover {
  color: var(--navy);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 20px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.centered {
  text-align: center;
}

.muted {
  color: var(--text-muted);
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }


.product-card-live {
  background: linear-gradient(180deg, rgba(20, 68, 106, 0.96), rgba(25, 55, 95, 0.94));
  border-color: rgba(148, 225, 255, 0.26);
}

.placeholder-card {
  min-height: 100%;
  background: linear-gradient(180deg, rgba(30, 36, 68, 0.96), rgba(24, 29, 55, 0.92));
}

.spotlight-panel,
.detail-card-live {
  border-color: rgba(113, 144, 235, 0.22);
  background: linear-gradient(180deg, rgba(30, 36, 68, 0.97), rgba(22, 27, 52, 0.94));
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #e7ebf8;
  background: rgba(214, 220, 230, 0.08);
  border: 1px solid rgba(214, 220, 230, 0.10);
}

.inline-button {
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .hero,
  .contact-grid,
  .timeline-grid,
  .stats-grid,
  .product-grid,
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .floating-card {
    position: static;
    margin-top: 16px;
    width: 100%;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: grid;
    gap: 12px;
    padding: 14px;
    background: rgba(18, 23, 46, 0.96);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.24s ease;
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
  }

  .dropdown-link-row {
    width: 100%;
    justify-content: space-between;
  }

  .nav-link,
  .dropdown-toggle,
  .nav-cta {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 16px;
    margin-top: 8px;
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: grid;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .stats-grid,
  .timeline-grid,
  .contact-grid,
  .product-grid,
  .form-grid.two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding-top: 28px;
    padding-bottom: 64px;
  }

  .hero,
  .page-hero,
  .panel,
  .form-card {
    padding: 24px 18px;
  }

  .brand-tag {
    display: none;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .button,
  .button-secondary,
  .button-ghost,
  .inline-button,
  .form-submit {
    width: 100%;
  }
}
