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

:root, [data-theme="dark"] {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface-2: #1c1c1c;
  --ink: #ffffff;
  --ink-2: #b0b0b0;
  --ink-3: #707070;
  --ink-4: #4a4a4a;
  --line: rgba(255,255,255,0.07);
  --line-2: rgba(255,255,255,0.13);
  --line-3: rgba(255,255,255,0.2);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px -8px rgba(0,0,0,0.6);
  --logo-invert: 0;
  --nav-bg: rgba(10,10,10,0.72);
}

[data-theme="light"] {
  --bg: #fafafa;
  --surface: #ffffff;
  --surface-2: #f4f4f4;
  --ink: #0a0a0a;
  --ink-2: #555555;
  --ink-3: #999999;
  --ink-4: #c0c0c0;
  --line: #eaeaea;
  --line-2: #d8d8d8;
  --line-3: #c0c0c0;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --logo-invert: 1;
  --nav-bg: rgba(250,250,250,0.78);
}

:root {
  --max: 1180px;
  --gutter: 28px;
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color .25s ease, color .25s ease;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
em { font-style: normal; }
strong { font-weight: 600; color: var(--ink); }
::selection { background: var(--ink); color: var(--bg); }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--nav-bg);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
          backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
  transition: background-color .25s ease, border-color .25s ease;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.nav-logo {
  width: 32px; height: 32px;
  background: var(--ink);
  border-radius: 9px;
  display: grid; place-items: center;
  flex-shrink: 0;
  overflow: hidden;
  transition: background-color .25s ease;
}
.nav-logo img {
  width: 26px;
  height: 26px;
  object-fit: cover;
  filter: invert(var(--logo-invert));
  transition: filter .25s ease;
}

.nav-center { display: flex; gap: 2px; }
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav-link:hover { color: var(--ink); background: var(--surface); }

.nav-right { display: flex; align-items: center; gap: 8px; }

.theme-toggle {
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--ink-2);
  display: inline-grid; place-items: center;
  transition: color .15s, border-color .15s, background .15s;
}
.theme-toggle:hover { color: var(--ink); background: var(--surface); border-color: var(--line-2); }
.theme-toggle svg { width: 17px; height: 17px; }
.theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: block; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--ink);
  color: var(--bg);
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  transition: opacity .15s, transform .15s;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }
.nav-cta svg { width: 15px; height: 15px; }

.nav-mobile-toggle {
  display: none;
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--ink);
}
.nav-mobile-toggle svg { width: 18px; height: 18px; }

.mobile-menu {
  display: none;
  position: fixed; top: 60px; left: 0; right: 0; z-index: 99;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 12px var(--gutter) 20px;
}
.mobile-menu a {
  display: block; padding: 14px 0;
  font-size: 15px; font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border: 0; margin-top: 12px; text-align: center; }
.mobile-menu.open { display: block; }

/* HERO */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px var(--gutter) 70px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(42px, 6.4vw, 84px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 900px;
  margin: 0 auto 20px;
}
.hero h1 em { color: var(--ink-2); font-weight: 500; }

.hero-sub {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.55;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: transform .15s, opacity .15s, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--line-3); background: var(--surface); transform: translateY(-1px); }
.btn-lg { padding: 14px 24px; font-size: 14.5px; }

/* HARDWARE FEATURE CARDS */
.features {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px;
  text-align: left;
  transition: border-color .2s;
}
.feature:hover { border-color: var(--line-2); }
.feature-ic {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  margin-bottom: 22px;
  color: var(--ink);
}
.feature-ic svg { width: 18px; height: 18px; }
.feature-name {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 4px;
}
.feature-name em { font-weight: 600; }
.feature-tag {
  font-size: 13.5px;
  color: var(--ink-3);
}

/* SECTION BLOCK */
.block {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px var(--gutter);
}
.block-tinted {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.block-tinted-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

#how {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
#how > .head,
#how > .steps {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
#how .step {
  background: var(--bg);
}

.cloud-section {
  border-bottom: 1px solid var(--line);
}
.cloud-section .cloud-card {
  background: var(--surface);
}
.cloud-section .cloud-card-row {
  background: var(--bg);
}

.faq-section {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.faq-section > .head,
.faq-section > .faq-grid {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.faq-section .faq-grid {
  max-width: 820px;
}
.faq-section .faq-item {
  background: var(--bg);
}

.head {
  text-align: center;
  margin-bottom: 40px;
}
.head-left { text-align: left; margin-bottom: 0; }

.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-3);
  margin-bottom: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.head h2 {
  font-size: clamp(32px, 4.2vw, 50px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 14px;
}
.head h2 em { color: var(--ink-2); font-weight: 500; }
.head p {
  font-size: 16px;
  color: var(--ink-2);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}
.head-left p { margin-left: 0; }

/* STEPS */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px 28px;
  transition: border-color .2s;
}
.step:hover { border-color: var(--line-2); }
.step-title {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.65;
}
.step-desc strong { color: var(--ink); font-weight: 600; }

/* FAQ */
.faq-grid {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 8px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color .15s;
}
.faq-item:hover { border-color: var(--line-2); }
.faq-item[open] { border-color: var(--line-2); }
.faq-q {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  padding: 16px 22px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "";
  width: 9px; height: 9px;
  border-right: 1.5px solid var(--ink-3);
  border-bottom: 1.5px solid var(--ink-3);
  transform: rotate(45deg);
  transition: transform .2s;
  flex-shrink: 0;
}
.faq-item[open] .faq-q::after {
  transform: rotate(-135deg);
}
.faq-a {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.65;
  padding: 0 22px 18px;
}
.faq-a strong { color: var(--ink); font-weight: 600; }
.ilink {
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--line-2);
  transition: border-color .2s;
}
.ilink:hover { border-color: var(--ink); }

/* CLOUD */
.cloud-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cloud-list {
  list-style: none;
  margin: 22px 0 28px;
  display: grid;
  gap: 12px;
}
.cloud-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-2);
}
.cloud-list-ic {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  color: var(--ink);
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.cloud-list-ic svg { width: 11px; height: 11px; }

.cloud-card {
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 30px;
}
.cloud-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.cloud-card-ic {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--ink);
  color: var(--bg);
  display: grid; place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}
.cloud-card-ic svg { width: 14px; height: 14px; }
.cloud-card-ic img {
  width: 26px;
  height: 26px;
  object-fit: cover;
  filter: invert(var(--logo-invert));
  transition: filter .25s ease;
}
.cloud-card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.cloud-card-sub {
  font-size: 13px;
  color: var(--ink-3);
}
.cloud-card-rows {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.cloud-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  padding: 12px 16px;
}
.cloud-card-row-label {
  font-size: 13.5px;
  color: var(--ink-3);
}
.cloud-card-row-value {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
}

/* FINAL CTA */
.final {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px var(--gutter) 100px;
}
.final-inner {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 76px 48px;
  text-align: center;
}
.final-inner h2 {
  font-size: clamp(34px, 4.8vw, 54px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
  color: var(--ink);
}
.final-inner h2 em { color: var(--ink-2); font-weight: 500; }
.final-inner p {
  font-size: 16px;
  color: var(--ink-2);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.final-inner p strong { color: var(--ink); font-weight: 600; }

/* FOOTER */
footer {
  border-top: 1px solid var(--line);
  margin-top: 80px;
  background: var(--bg);
}
.foot-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px var(--gutter) 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}
.foot-col-brand {
  flex: 1 1 280px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.foot-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 600;
  font-size: 16px;
}
.foot-tag {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.55;
  max-width: 280px;
}
.foot-discord {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 9px 16px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--ink-2);
  font-weight: 500;
  font-size: 13px;
  transition: color .2s, border-color .2s, background .2s;
}
.foot-discord svg { width: 16px; height: 16px; flex-shrink: 0; }
.foot-discord:hover {
  color: var(--ink);
  border-color: var(--line-3);
  background: var(--surface);
}
.foot-cols {
  flex: 2 1 460px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.foot-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.foot-col-title {
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.foot-col a {
  color: var(--ink-2);
  font-size: 14px;
  transition: color .2s;
  word-break: break-word;
}
.foot-col a:hover { color: var(--ink); }
.foot-bottom {
  border-top: 1px solid var(--line);
}
.foot-bottom-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-3);
}
.foot-copy a {
  color: var(--ink-2);
  font-weight: 500;
  transition: color .2s;
}
.foot-copy a:hover { color: var(--ink); }
.foot-bottom-links { display: flex; flex-wrap: wrap; gap: 20px; }
.foot-bottom-links a {
  color: var(--ink-3);
  transition: color .2s;
}
.foot-bottom-links a:hover { color: var(--ink); }

/* LEGAL */
.legal {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--gutter) 96px;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.7;
}
.legal .updated {
  color: var(--ink-3);
  font-size: 13.5px;
  margin-bottom: 40px;
  text-align: center;
}
.legal h2 {
  color: var(--ink);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 48px 0 16px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.legal h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.legal h3 {
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
  margin: 28px 0 10px;
}
.legal h2 + h3 { margin-top: 14px; }
.legal p { margin: 0 0 14px; }
.legal ul {
  margin: 0 0 16px;
  padding-left: 22px;
}
.legal li { margin-bottom: 8px; }
.legal strong { color: var(--ink); font-weight: 600; }
.legal a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--line); text-underline-offset: 3px; }
.legal a:hover { text-decoration-color: var(--ink); }

/* HIRING */
.hiring-intro {
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px var(--gutter) 56px;
  text-align: center;
}
.hiring-intro h1 {
  font-size: clamp(40px, 5.6vw, 64px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 18px;
}
.hiring-intro h1 em { color: var(--ink-2); font-weight: 500; }
.hiring-intro p {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.jobs {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--gutter) 96px;
  display: grid;
  gap: 16px;
}

.job {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px;
  transition: border-color .2s;
}
.job:hover { border-color: var(--line-2); }

.job-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.job-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.job-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.job-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-2);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 11px;
}
.job-tag svg { width: 12px; height: 12px; }

.job-section {
  margin-top: 26px;
}
.job-section-title {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.req-list {
  list-style: none;
  display: grid;
  gap: 11px;
}
.req-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.6;
}
.req-list li strong { color: var(--ink); font-weight: 600; }
.req-ic {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  color: var(--ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.req-ic svg { width: 9px; height: 9px; }
.req-ic.req-ic-plus {
  background: transparent;
  color: var(--ink-3);
}

.job-cta {
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.job-desc {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.7;
}
.jobs-empty {
  text-align: center;
  padding: 56px 28px;
  border: 1px dashed var(--line-2);
  border-radius: 16px;
  background: var(--surface);
}
.jobs-empty p {
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.65;
  margin: 0 auto;
  max-width: 460px;
}
.jobs-empty p strong { color: var(--ink-2); font-weight: 600; }

/* ERROR PAGES */
.error-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px var(--gutter) 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 56px - 80px);
}
.error-content {
  max-width: 520px;
  width: 100%;
  text-align: center;
}
.error-code {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.error-content h1 {
  font-size: clamp(38px, 5.4vw, 58px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 16px;
}
.error-content p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

/* RESPONSIVE */
@media (max-width: 880px) {
  .nav-center { display: none; }
  .nav-mobile-toggle { display: inline-grid; place-items: center; }
  .hero { padding: 80px var(--gutter) 70px; }
  .features { grid-template-columns: 1fr; margin-top: 56px; }
  .block { padding: 70px var(--gutter); }
  .block-tinted, #how, .faq-section { padding: 70px 0; }
  .steps { grid-template-columns: 1fr; }
  .cloud-grid { grid-template-columns: 1fr; gap: 40px; }
  .head-left { text-align: center; }
  .final-inner { padding: 56px 28px; }
  .error-main { padding: 80px var(--gutter) 70px; }
}

@media (max-width: 500px) {
  :root { --gutter: 18px; }
  .hero h1 { font-size: clamp(34px, 9vw, 48px); }
  .hero-sub { font-size: 15.5px; }
  .cta-row { width: 100%; flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .foot-inner { gap: 36px; padding: 48px var(--gutter) 28px; }
  .foot-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
  .foot-bottom-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .cloud-card { padding: 22px; }
}
