:root {
  --bg: #181715;
  --bg-deep: #11110f;
  --surface: #211f1c;
  --surface-2: #2d2b27;
  --surface-3: #36332d;
  --line: #4e4a42;
  --line-soft: #34312c;
  --ink: #f8f6f0;
  --ink-soft: #cbc7bd;
  --muted: #928d83;
  --honey: #ffe25c;
  --yellow: #ffd630;
  --gold: #ffc107;
  --sage: #96d6a0;
  --danger: #ff5f68;
  --dark-ink: #2e2606;
  --shell: min(100% - 36px, 1080px);
  --display: "Syne", "Avenir Next", "Segoe UI", sans-serif;
  --body: "DM Sans", "Avenir Next", "Segoe UI", sans-serif;
  --mono: "Cascadia Code", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--line) var(--bg-deep);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink-soft);
  background:
    radial-gradient(900px 460px at 50% -80px, rgba(255, 214, 48, 0.08), transparent 66%),
    linear-gradient(180deg, var(--bg-deep) 0, var(--bg) 360px);
  font: 16px/1.65 var(--body);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
}

::selection {
  color: var(--dark-ink);
  background: var(--honey);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3,
strong {
  color: var(--ink);
  font-family: var(--display);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 8px 12px;
  color: var(--dark-ink);
  background: var(--honey);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(24, 23, 21, 0.94);
  backdrop-filter: blur(18px);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 54px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 9px;
  width: max-content;
  color: var(--honey);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.wordmark img {
  filter: drop-shadow(0 0 7px rgba(255, 214, 48, 0.2));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  position: relative;
  padding-block: 18px;
  transition: color 160ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 11px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  color: var(--honey);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-download {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 214, 48, 0.32);
  border-radius: 4px;
  color: var(--honey);
  font-size: 13px;
  font-weight: 600;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-download:hover,
.nav-download:focus-visible {
  color: var(--dark-ink);
  border-color: var(--honey);
  background: var(--honey);
}

.announcement {
  color: var(--dark-ink);
  background: linear-gradient(90deg, #b68f0a, var(--yellow) 48%, #e1ab11);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.announcement[hidden] {
  display: none !important;
}

.announcement-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 5px 34px;
  text-align: center;
}

.announcement p span {
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid rgba(46, 38, 6, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.announcement button {
  position: absolute;
  right: 0;
  display: grid;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  color: var(--dark-ink);
  background: transparent;
  cursor: pointer;
  place-items: center;
}

.announcement button:hover,
.announcement button:focus-visible {
  background: rgba(46, 38, 6, 0.1);
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 430px;
  padding: 72px 0 58px;
  text-align: center;
}

.profile-wrap {
  position: relative;
  margin-bottom: 20px;
}

.profile-ring {
  position: relative;
  width: 128px;
  height: 128px;
  padding: 3px;
  overflow: hidden;
  border: 1px solid rgba(255, 214, 48, 0.72);
  border-radius: 50%;
  background: var(--surface-2);
  box-shadow:
    0 0 0 5px rgba(255, 214, 48, 0.04),
    0 0 36px rgba(255, 214, 48, 0.22);
}

.profile-ring::after {
  position: absolute;
  inset: 3px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: inherit;
  pointer-events: none;
}

.profile-ring img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center 20%;
}

.online-dot {
  position: absolute;
  right: 7px;
  bottom: 6px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--bg);
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 10px rgba(150, 214, 160, 0.5);
}

.eyebrow {
  color: var(--honey);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 8px;
  font-size: clamp(42px, 7vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.handle {
  margin-top: 6px;
  color: var(--muted);
  font-size: 15px;
  transition: color 160ms ease;
}

.handle:hover,
.handle:focus-visible {
  color: var(--honey);
}

.hero-copy {
  max-width: 520px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 17px;
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.status-row span {
  padding: 5px 11px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.012);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
  padding-bottom: 110px;
}

.section-label,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-label::before,
.section-kicker::before {
  width: 2px;
  height: 15px;
  content: "";
  background: var(--yellow);
  box-shadow: 0 0 9px rgba(255, 214, 48, 0.32);
}

.section-label::after {
  flex: 1;
  height: 1px;
  content: "";
  background: var(--line-soft);
}

.link-stack {
  display: grid;
  gap: 9px;
}

.link-card {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 70px;
  padding: 12px 15px;
  border: 1px solid var(--line-soft);
  border-radius: 5px;
  background: rgba(33, 31, 28, 0.7);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.018);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.link-card:hover,
.link-card:focus-visible {
  border-color: rgba(255, 214, 48, 0.38);
  background: var(--surface);
  transform: translateY(-2px);
}

.link-icon {
  display: grid;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 214, 48, 0.24);
  border-radius: 4px;
  color: var(--honey);
  background: rgba(255, 214, 48, 0.06);
  font-size: 14px;
  font-weight: 800;
  place-items: center;
}

.link-icon.throne {
  font-size: 18px;
}

.link-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.link-copy strong {
  font-size: 15px;
}

.link-copy small {
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.arrow {
  color: var(--muted);
  font-size: 16px;
  transition: color 160ms ease, transform 160ms ease;
}

.link-card:hover .arrow,
.link-card:focus-visible .arrow {
  color: var(--honey);
  transform: translate(2px, -2px);
}

.teaser-card {
  position: relative;
  min-height: 248px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 214, 48, 0.22);
  border-radius: 5px;
  background:
    radial-gradient(300px 190px at 100% 0, rgba(255, 214, 48, 0.12), transparent 68%),
    linear-gradient(145deg, var(--surface-2), var(--surface));
}

.teaser-card::after {
  position: absolute;
  right: -34px;
  bottom: -66px;
  z-index: 0;
  width: 190px;
  height: 190px;
  content: "";
  border: 24px solid rgba(255, 214, 48, 0.028);
  border-radius: 50%;
  pointer-events: none;
}

.teaser-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.release-badge {
  padding: 4px 9px;
  border-radius: 3px;
  color: var(--dark-ink);
  background: var(--honey);
  font-size: 12px;
  font-weight: 800;
}

.platform {
  color: var(--muted);
  font-size: 12px;
}

.teaser-card h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1.28;
  letter-spacing: -0.04em;
  padding-bottom: 0.08em;
}

em {
  color: var(--honey);
  font-style: normal;
}

.teaser-card > p {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.teaser-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid var(--honey);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.button-primary {
  color: var(--dark-ink);
  background: linear-gradient(135deg, var(--honey), var(--gold));
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.1);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--honey);
  box-shadow: 0 8px 28px rgba(255, 193, 7, 0.2);
  transform: translateY(-1px);
}

.text-link {
  color: var(--ink-soft);
  font-size: 14px;
}

.text-link span {
  color: var(--honey);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--honey);
}

.product {
  padding: 110px 0 120px;
  border-top: 1px solid var(--line-soft);
}

.section-kicker {
  margin-bottom: 36px;
}

.product-intro {
  display: grid;
  grid-template-columns: minmax(270px, 0.74fr) minmax(490px, 1.26fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}

.product-copy h2,
.trust-heading h2,
.install-copy h2,
.about h2 {
  margin-top: 12px;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.product-copy > p:not(.eyebrow) {
  margin-top: 25px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.product-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 28px;
}

.button-large {
  flex-direction: column;
  align-items: flex-start;
  min-width: 250px;
  min-height: 58px;
  padding: 12px 20px;
}

.button-large span {
  font-size: 15px;
}

.button-large small {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.72;
}

.release-meta {
  color: var(--muted);
  font-size: 13px;
}

.app-window {
  overflow: hidden;
  border: 1px solid #5e594f;
  border-radius: 7px;
  background: var(--surface-2);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.window-titlebar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 40px;
  padding-left: 13px;
  border-bottom: 1px solid #3e3b35;
  background: #20201e;
}

.window-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.window-brand strong {
  white-space: nowrap;
}

.window-status {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--sage);
  font-size: 11px;
}

.window-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 6px currentColor;
}

.window-controls {
  display: flex;
  align-self: stretch;
  justify-self: end;
  color: #7e796f;
  font-size: 11px;
}

.window-controls span {
  display: grid;
  width: 31px;
  place-items: center;
}

.window-controls span:last-child {
  width: 36px;
}

.window-nav {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  height: 36px;
  padding: 0 15px;
  border-bottom: 1px solid #403d37;
  color: #888379;
  background: #2d2b27;
  font-size: 12px;
}

.window-nav span {
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
}

.window-nav .active {
  color: var(--honey);
  border-color: var(--honey);
}

.run-strip {
  height: 32px;
  padding: 8px 14px;
  color: var(--sage);
  background: #20251f;
  font-size: 12px;
}

.run-strip span {
  color: var(--honey);
}

.window-body {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 10px;
  min-height: 300px;
  padding: 14px;
  background: #25231f;
}

.window-main,
.window-side {
  padding: 13px;
  border: 1px solid #48443d;
  border-radius: 4px;
  background: #2d2b27;
}

.ui-label {
  margin-bottom: 11px;
  color: var(--honey);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.control-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.control-tile {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0 8px;
  align-items: center;
  min-height: 64px;
  padding: 10px;
  border: 1px solid #504b42;
  border-radius: 3px;
  background: #272622;
}

.control-tile > span {
  grid-row: 1 / 3;
  display: grid;
  width: 28px;
  height: 28px;
  border-radius: 3px;
  color: var(--honey);
  background: #3a3522;
  font-size: 13px;
  place-items: center;
}

.control-tile b {
  color: var(--ink);
  font-size: 12px;
}

.control-tile small {
  color: #817c72;
  font-size: 10px;
}

.activity-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #45413a;
  border-radius: 3px;
  color: #8e897f;
  background: #272622;
  font-size: 11px;
}

.activity-row i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

.permission {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #413e38;
  color: #aaa59b;
  font-size: 12px;
}

.permission i {
  position: relative;
  width: 24px;
  height: 13px;
  border-radius: 8px;
  background: #48453f;
}

.permission i::after {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: #89847b;
}

.permission.on i {
  background: #6d6123;
}

.permission.on i::after {
  left: 13px;
  background: var(--honey);
}

.panic-control {
  width: 100%;
  margin-top: 42px;
  padding: 10px 6px;
  border: 1px solid #a14248;
  border-radius: 3px;
  color: #ff969c;
  background: #4a2427;
  font: 700 11px var(--body);
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 74px;
}

.feature-card {
  min-height: 0;
  padding: 28px 26px;
  border: 1px solid var(--line-soft);
  border-radius: 5px;
  background: var(--surface);
}

.feature-number {
  color: var(--honey);
  font-size: 13px;
  font-weight: 700;
}

.feature-card h3,
.trust-card h3 {
  margin-top: 18px;
  font-size: 20px;
  line-height: 1.25;
}

.feature-card p,
.trust-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.trust-section {
  padding: 110px 0;
  border-block: 1px solid var(--line-soft);
  background:
    linear-gradient(90deg, rgba(255, 214, 48, 0.018) 1px, transparent 1px),
    linear-gradient(rgba(255, 214, 48, 0.018) 1px, transparent 1px),
    var(--bg-deep);
  background-size: 32px 32px;
}

.trust-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.trust-heading p {
  max-width: 520px;
  padding-bottom: 4px;
  color: var(--muted);
  font-size: 16px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trust-card {
  min-height: 235px;
  padding: 23px;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  background: rgba(33, 31, 28, 0.82);
}

.trust-icon {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 214, 48, 0.24);
  border-radius: 50%;
  color: var(--honey);
  background: rgba(255, 214, 48, 0.04);
  font-size: 14px;
  place-items: center;
}

.trust-card h3 {
  margin-top: 24px;
}

.install {
  padding: 110px 0;
}

.install-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(48px, 9vw, 120px);
}

.install-copy > p {
  margin: 22px 0 26px;
  color: var(--muted);
  font-size: 16px;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}

.steps li:first-child {
  padding-top: 0;
}

.steps li > span {
  color: var(--honey);
  font-size: 14px;
  font-weight: 700;
}

.steps strong {
  display: block;
  font-size: 16px;
}

.steps p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.verification {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 58px;
  padding: 18px 20px;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  background: var(--surface);
}

.verification > div {
  min-width: 0;
}

.verification-label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.verification code {
  display: block;
  overflow: hidden;
  color: var(--ink-soft);
  font: 13px/1.5 var(--mono);
  text-overflow: ellipsis;
}

.verification button {
  flex: 0 0 auto;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink-soft);
  background: var(--surface-2);
  cursor: pointer;
  font-size: 13px;
}

.verification button:hover,
.verification button:focus-visible {
  color: var(--honey);
  border-color: rgba(255, 214, 48, 0.4);
}

.about {
  padding: 110px 0 130px;
  border-top: 1px solid var(--line-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(50px, 10vw, 130px);
}

.about-copy {
  padding-top: 8px;
}

.about-copy > p {
  color: var(--muted);
  font-size: 16px;
}

.about-copy > p + p {
  margin-top: 16px;
}

.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
}

.about-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  transition: color 160ms ease, border-color 160ms ease;
}

.about-links a span {
  color: var(--honey);
}

.about-links a:hover,
.about-links a:focus-visible {
  color: var(--honey);
  border-color: var(--honey);
}

footer {
  padding: 42px 0;
  border-top: 1px solid var(--line-soft);
  background: var(--bg-deep);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: end;
}

.footer-mark {
  margin-bottom: 8px;
}

.footer-inner p,
.footer-links {
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--honey);
}

.copyright {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--honey);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .product-intro {
    grid-template-columns: 1fr;
  }

  .product-copy {
    max-width: 590px;
  }

  .app-window {
    width: 100%;
  }

  .feature-grid,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-heading {
    gap: 45px;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: min(100% - 28px, 1040px);
  }

  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .nav-download {
    grid-column: 2;
  }

  .announcement-inner {
    justify-content: flex-start;
    text-align: left;
  }

  .announcement p span {
    display: none;
  }

  .hero {
    min-height: 390px;
    padding-top: 58px;
  }

  .home-grid,
  .trust-heading,
  .install-layout,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .home-grid {
    gap: 48px;
  }

  .product,
  .trust-section,
  .install,
  .about {
    padding-block: 80px;
  }

  .trust-heading {
    gap: 22px;
  }

  .window-body {
    grid-template-columns: 1fr;
  }

  .window-side {
    display: none;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .install-copy {
    max-width: 500px;
  }

  .verification {
    align-items: flex-start;
  }

  .verification code {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
  }

  .footer-links {
    display: none;
  }

  .copyright {
    grid-column: 2;
  }
}

@media (max-width: 470px) {
  .announcement p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .teaser-card {
    padding: 20px;
  }

  .teaser-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .window-titlebar {
    grid-template-columns: 1fr auto;
  }

  .window-status {
    display: none;
  }

  .control-grid {
    grid-template-columns: 1fr;
  }

  .control-tile:nth-child(n + 3) {
    display: none;
  }

  .feature-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .trust-card {
    min-height: auto;
  }

  .feature-card h3 {
    margin-top: 22px;
  }

  .verification {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
