:root {
  --bg: #07111d;
  --bg-soft: #0d1827;
  --bg-deeper: #050d16;

  --surface: rgba(14, 24, 39, 0.84);
  --surface-2: rgba(255, 255, 255, 0.04);
  --surface-3: rgba(255, 255, 255, 0.035);
  --surface-4: rgba(7, 17, 29, 0.46);
  --surface-5: rgba(255, 255, 255, 0.025);

  --card-strong: #0f1d30;

  --line: rgba(255, 255, 255, 0.1);
  --line-soft: rgba(255, 255, 255, 0.06);
  --line-strong: rgba(255, 255, 255, 0.14);

  --text: #eaf2ff;
  --text-soft: #d7e4f5;
  --muted: #9fb0c9;

  --primary: #6ee7b7;
  --primary-strong: #34d399;
  --primary-soft: rgba(110, 231, 183, 0.12);

  --accent: #8ab4ff;
  --accent-soft: rgba(138, 180, 255, 0.12);

  --warning: #fbbf24;
  --warning-soft: rgba(251, 191, 36, 0.12);

  --danger: #fb7185;
  --danger-soft: rgba(251, 113, 133, 0.12);

  --success: #22c55e;
  --success-soft: rgba(34, 197, 94, 0.12);

  --violet: #a78bfa;
  --violet-soft: rgba(167, 139, 250, 0.12);

  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 14px;
  --radius-xs: 12px;

  --shadow-xs: 0 8px 18px rgba(0, 0, 0, 0.18);
  --shadow-sm: 0 18px 36px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 24px 60px rgba(0, 0, 0, 0.32);
  --shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.38);

  --container: 1180px;
  --header-h: 76px;

  --space-1: 8px;
  --space-2: 10px;
  --space-3: 12px;
  --space-4: 14px;
  --space-5: 16px;
  --space-6: 18px;
  --space-7: 20px;
  --space-8: 24px;
  --space-9: 28px;
  --space-10: 32px;
  --space-11: 40px;
  --space-12: 48px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", sans-serif;
  color: var(--text);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(52, 211, 153, 0.12), transparent 30%),
    radial-gradient(circle at top right, rgba(138, 180, 255, 0.14), transparent 26%),
    linear-gradient(180deg, #07111d 0%, #091522 48%, #08131f 100%);
}

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

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

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

::selection {
  background: rgba(110, 231, 183, 0.18);
  color: var(--text);
}

/* Layout */
.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 88px 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
  opacity: 0.4;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

/* Typography helpers */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(110, 231, 183, 0.12);
}

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

.section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--text);
}

.section-head p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.02rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--text), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

/* Header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-h);
  backdrop-filter: blur(18px);
  background: rgba(7, 17, 29, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(110, 231, 183, 0.05),
    transparent 28%,
    transparent 72%,
    rgba(138, 180, 255, 0.05)
  );
}

.topbar-inner {
  position: relative;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(110, 231, 183, 0.28), rgba(138, 180, 255, 0.12)),
    #0e1726;
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.98rem;
  box-shadow: var(--shadow-sm);
}

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

.brand-text strong {
  display: block;
  font-size: 1rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

.brand-text span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.25;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

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

.btn:focus-visible,
.nav a:focus-visible,
.card:focus-within,
.band:focus-within,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(110, 231, 183, 0.4);
  outline-offset: 2px;
}

.btn-primary {
  color: #062618;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 16px 36px rgba(52, 211, 153, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 42px rgba(52, 211, 153, 0.3);
}

.btn-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

/* Hero */
.hero {
  position: relative;
  padding: 88px 0 56px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  filter: blur(30px);
  opacity: 0.5;
}

.hero::before {
  top: -40px;
  left: 4%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.12);
}

.hero::after {
  right: 6%;
  top: 0;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(138, 180, 255, 0.1);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 32px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.card,
.band,
.surface-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.hero-copy::before,
.hero-panel::before,
.card::before,
.band::before,
.surface-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.015) 28%,
    rgba(255, 255, 255, 0)
  );
  opacity: 0.8;
}

.hero-copy,
.hero-panel,
.surface-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02)),
    rgba(10, 18, 30, 0.78);
}

.hero-copy {
  padding: clamp(30px, 4vw, 52px);
}

.hero-panel {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-copy > *,
.hero-panel > *,
.card > *,
.band > *,
.surface-card > * {
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  margin: 0 0 18px;
  max-width: 12ch;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  color: var(--text);
}

.hero-copy p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

/* Stats and panels */
.mini-stat,
.stack-card,
.info-card,
.summary-card {
  position: relative;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.mini-stat strong,
.stack-card h3,
.info-card h3,
.summary-card h3 {
  display: block;
  margin: 0 0 6px;
  color: var(--text);
}

.mini-stat strong {
  font-size: 1.2rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.mini-stat span,
.stack-card p,
.info-card p,
.summary-card p {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.panel-top,
.card-head,
.form-head,
.summary-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.panel-top strong {
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.status-pill,
.status-chip,
.form-badge,
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid transparent;
}

.status-pill {
  min-height: 36px;
  background: rgba(34, 197, 94, 0.12);
  color: #86efac;
  border-color: rgba(34, 197, 94, 0.2);
}

.status-pill::before,
.status-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: currentColor;
}

.status-chip {
  background: rgba(251, 191, 36, 0.12);
  color: #fde68a;
  border-color: rgba(251, 191, 36, 0.2);
}

.tag-ready {
  color: #86efac;
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.2);
}

.tag-building {
  color: #fde68a;
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.2);
}

.tag-demo {
  color: #bfdbfe;
  background: rgba(138, 180, 255, 0.12);
  border-color: rgba(138, 180, 255, 0.2);
}

.tag-connected {
  color: #ddd6fe;
  background: rgba(167, 139, 250, 0.12);
  border-color: rgba(167, 139, 250, 0.2);
}

/* Flow */
.flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.flow-step,
.mini-flow-item {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.flow-step small {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.flow-step strong,
.mini-flow-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.98rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}

.flow-step span,
.mini-flow-item span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

/* Cards */
.card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01)),
    var(--surface);
  box-shadow: var(--shadow-md);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 231, 183, 0.18);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
}

.card h3 {
  margin: 0 0 6px;
  font-size: 1.18rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
}

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

.card ul,
.info-list,
.steps-list,
.summary-grid,
.mini-flow {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.card li,
.info-list li,
.steps-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.card li::before,
.info-list li::before,
.steps-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(110, 231, 183, 0.08);
}

.card-actions,
.hero-actions,
.actions-row,
.summary-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.card-actions {
  margin-top: auto;
  padding-top: 2px;
}

/* Band */
.band {
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(110, 231, 183, 0.12), rgba(138, 180, 255, 0.08)),
    rgba(10, 18, 30, 0.8);
  border: 1px solid rgba(255,255,255,0.08);
}

.band-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.band h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--text);
}

.band p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.02rem;
}

.band-boxes {
  display: grid;
  gap: 12px;
}

.band-box {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(7, 17, 29, 0.44);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.band-box strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

.band-box span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Forms */
.form-shell {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: start;
}

.form-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01)),
    var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.015) 28%,
    rgba(255,255,255,0)
  );
  opacity: 0.8;
}

.form-card > * {
  position: relative;
  z-index: 1;
}

.form-head {
  margin-bottom: 22px;
}

.form-head h2 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
}

.form-head p {
  margin: 0;
  color: var(--muted);
}

.booking-form,
.precheckin-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group.full {
  grid-column: 1 / -1;
}

.field-group label {
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.field-group textarea {
  min-height: 118px;
  resize: vertical;
}

.field-group input::placeholder,
.field-group textarea::placeholder {
  color: var(--muted);
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: rgba(110, 231, 183, 0.32);
  box-shadow:
    0 0 0 4px rgba(110, 231, 183, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.04);
  background: rgba(255, 255, 255, 0.05);
}

.helper-text {
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.5;
}

.form-note {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(138, 180, 255, 0.08);
  border: 1px solid rgba(138, 180, 255, 0.14);
  color: var(--text-soft);
  font-size: 0.92rem;
}

.soft-divider {
  height: 1px;
  background: var(--line-soft);
  margin: 4px 0 2px;
}

.summary-row {
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}

.summary-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.summary-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.summary-value {
  color: var(--text);
  font-weight: 700;
  text-align: right;
  line-height: 1.35;
}

/* Footer */
.footer {
  position: relative;
  padding: 28px 0 42px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.footer p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

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

/* Utilities */
.glass {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.hidden {
  display: none !important;
}

/* Responsive */
@media (max-width: 1180px) {
  .hero-copy h1 {
    max-width: 13ch;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .band-grid,
  .footer-grid,
  .grid-cards,
  .grid-2,
  .form-shell {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 780px) {
  :root {
    --header-h: auto;
  }

  .topbar-inner {
    padding: 12px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    gap: 14px 16px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-copy,
  .hero-panel,
  .band,
  .card,
  .form-card {
    border-radius: 24px;
  }

  .hero-highlights,
  .flow,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .section-head {
    margin-bottom: 26px;
  }

  .section-head h2,
  .band h2 {
    letter-spacing: -0.04em;
  }

  .form-head,
  .card-head,
  .panel-top,
  .summary-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .summary-value {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 20px, var(--container));
  }

  .hero-copy,
  .hero-panel,
  .card,
  .band,
  .form-card,
  .mini-stat,
  .stack-card,
  .info-card,
  .summary-card,
  .band-box {
    padding-left: 18px;
    padding-right: 18px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions,
  .card-actions,
  .actions-row,
  .summary-actions {
    flex-direction: column;
  }

  .brand {
    width: 100%;
  }

  .brand-text span {
    max-width: 26ch;
  }
}

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

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