:root {
  --ink: #111827;
  --ink-soft: #283444;
  --muted: #5f6f83;
  --paper: #f7f8f4;
  --paper-2: #eef4f3;
  --surface: #ffffff;
  --surface-soft: #f5f8fb;
  --line: #d4dedf;
  --line-dark: #aebdc1;
  --navy: #102a43;
  --teal: #0d625d;
  --blue: #1b63d6;
  --blue-soft: #e7f0ff;
  --rose: #bd5268;
  --coral: #e47a63;
  --amber: #ca8a2a;
  --mint: #dff4ef;
  --dark: #10131b;
  --radius: 8px;
  --max-width: 1180px;
  --shadow: 0 22px 64px rgba(17, 24, 39, 0.13);
  --thin-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(16, 42, 67, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(16, 42, 67, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #fbfbf7 0%, #eff5f4 54%, #fbfbf7 100%);
  background-size: 36px 36px, 36px 36px, auto;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.top-stripe {
  height: 6px;
  background: linear-gradient(90deg, #143d37 0%, #1b63d6 38%, #bd5268 68%, #e47a63 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(212, 222, 223, 0.88);
  background: rgba(247, 248, 244, 0.88);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 40px, var(--max-width));
  min-height: 74px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 15px;
  box-shadow: 0 12px 22px rgba(27, 99, 214, 0.14);
}

.brand span {
  display: grid;
  line-height: 1.08;
}

.brand strong {
  font-size: 1rem;
  font-weight: 900;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: #344456;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  border-color: var(--line);
  background: #ffffff;
  color: var(--blue);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 19px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: currentColor;
  content: "";
  font-size: 0;
}

.nav-toggle-lines::before {
  transform: translateY(-6px);
}

.nav-toggle-lines::after {
  transform: translateY(4px);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.86) 48%, rgba(16, 42, 67, 0.2) 100%),
    url("assets/images/vibing-light-wallpaper.jpg") center / cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 61, 55, 0.08), transparent 42%, rgba(228, 122, 99, 0.12));
  content: "";
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  align-items: end;
  gap: 34px;
  width: min(100% - 40px, var(--max-width));
  min-height: calc(100svh - 80px);
  margin: 0 auto;
  padding: 42px 0 34px;
}

.hero-copy {
  grid-column: 1;
  align-self: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

.hero h1 {
  max-width: none;
  color: var(--ink);
  font-size: clamp(3.9rem, 8vw, 7.1rem);
  font-weight: 950;
  white-space: nowrap;
}

.hero-lede {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-weight: 900;
  line-height: 1.14;
}

.hero-support {
  max-width: 640px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 17px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.16);
}

.button.secondary {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.button.disabled {
  border-color: var(--line);
  background: var(--surface-soft);
  color: var(--muted);
  cursor: not-allowed;
}

.back-button {
  gap: 8px;
}

.back-button span {
  font-size: 1.12rem;
  line-height: 1;
}

.button:disabled {
  cursor: wait;
  opacity: 0.66;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  max-width: 640px;
  margin: 22px 0 0;
}

.hero-proof article {
  min-height: 86px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.05);
}

.hero-proof strong {
  color: var(--ink);
  font-weight: 950;
}

.hero-proof p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.app-window {
  overflow: hidden;
  border: 1px solid #243040;
  border-radius: var(--radius);
  background: var(--dark);
  box-shadow: var(--shadow);
}

.hero-product {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
}

.hero-screenshot {
  min-width: 0;
  width: min(100%, 760px);
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(139, 174, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(8, 11, 17, 0.92);
  box-shadow: var(--shadow);
}

.hero-screenshot img {
  width: 100%;
  height: auto;
  max-width: 100%;
}

.window-bar {
  display: flex;
  align-items: center;
  min-height: 44px;
  gap: 8px;
  padding: 0 14px;
  border-bottom: 1px solid #273141;
  background: #171c26;
  color: #ffffff;
}

.window-bar strong {
  margin-left: 8px;
  font-size: 0.85rem;
}

.window-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  font-size: 0;
}

.window-dot.red {
  background: #ff6a5f;
}

.window-dot.yellow {
  background: #ffc44d;
}

.window-dot.green {
  background: #31d07d;
}

.status-pill {
  margin-left: auto;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(21, 167, 183, 0.18);
  color: #9ce6ee;
  font-size: 0.76rem;
  font-weight: 950;
}

.mock-workspace {
  display: grid;
  grid-template-columns: 158px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 10px;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(16, 19, 27, 0.94), rgba(16, 19, 27, 0.98)),
    url("assets/images/blue-waves-wallpaper.jpg") center / cover;
}

.mock-sidebar,
.mock-board,
.mock-composer {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.mock-sidebar {
  grid-row: 1 / 3;
  padding: 12px;
}

.sidebar-heading {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.71rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sidebar-item {
  min-height: 34px;
  padding: 8px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.8rem;
  font-weight: 850;
}

.sidebar-item.active {
  background: rgba(156, 230, 238, 0.16);
  color: #ffffff;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-row span,
.composer-actions span {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.7rem;
  font-weight: 850;
}

.mock-board,
.mock-composer {
  padding: 12px;
}

.mock-toolbar,
.composer-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 900;
}

.mock-toolbar strong,
.composer-title strong {
  color: #9ce6ee;
}

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

.mock-column {
  min-height: 132px;
  padding: 9px;
  border-radius: var(--radius);
  background: rgba(27, 99, 214, 0.14);
}

.mock-column.warm {
  background: rgba(228, 122, 99, 0.16);
}

.mock-column.done {
  background: rgba(13, 98, 93, 0.2);
}

.mock-column h3 {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 0.78rem;
}

.mock-column article {
  min-height: 38px;
  margin-top: 7px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.74rem;
  font-weight: 800;
}

.mock-composer p {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.83rem;
}

.composer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 9px;
}

.section {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  padding: 76px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 0 30px;
}

.section-heading.align-left {
  margin-right: 0;
  margin-left: 0;
}

.section-heading h2,
.split-copy h2,
.theme-band h2,
.cta-section h2,
.page-hero h1,
.about-panel h1,
.agency-grid h2,
.contact-aside h2,
.release-note h2 {
  color: var(--ink);
  font-size: clamp(2.05rem, 4.4vw, 4rem);
  font-weight: 950;
}

.section-heading p,
.split-copy p,
.cta-section p,
.page-hero p,
.about-panel p,
.agency-grid p,
.contact-aside p,
.release-note p {
  color: var(--muted);
  font-size: 1rem;
}

.feature-ribbon {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 12px;
  padding-top: 22px;
}

.quick-feature-header,
.feature-ribbon article,
.feature-card,
.platform-card,
.agency-grid article,
.contact-form,
.contact-aside {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--thin-shadow);
}

.quick-feature-header {
  padding: 18px;
  background: var(--navy);
  color: #ffffff;
}

.quick-feature-header .eyebrow {
  color: #9ce6ee;
}

.quick-feature-header h2 {
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: 950;
}

.feature-ribbon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.feature-ribbon article {
  min-height: 132px;
  padding: 17px;
}

.feature-ribbon span {
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.feature-ribbon strong {
  display: block;
  margin-top: 20px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 950;
}

.feature-ribbon p,
.feature-card p,
.platform-card p,
.agency-grid p {
  margin: 7px 0 0;
  color: var(--muted);
}

.features-section {
  padding-top: 48px;
}

.compact-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.72fr);
  align-items: end;
  gap: 28px;
  max-width: none;
  margin-bottom: 22px;
}

.compact-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -15px;
}

.compact-heading h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.compact-heading p {
  margin: 0;
}

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

.feature-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  align-items: start;
  gap: 16px;
  min-height: 96px;
  padding: 16px 18px;
}

.feature-card h3 {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.16;
}

.feature-card p {
  margin-top: 0;
  font-size: 0.92rem;
  line-height: 1.38;
}

.feature-card.emphasis {
  background:
    linear-gradient(135deg, rgba(16, 42, 67, 0.94), rgba(13, 98, 93, 0.86)),
    url("assets/images/solar-tide-wallpaper.jpg") center / cover;
  color: #ffffff;
}

.feature-card.emphasis h3,
.feature-card.emphasis p {
  color: #ffffff;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 1.18fr);
  align-items: center;
  gap: 42px;
}

.workflow-section {
  grid-template-columns: minmax(0, 1fr);
}

.workflow-section .split-copy {
  max-width: 920px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 12px 14px 12px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink-soft);
  font-weight: 850;
}

.check-list li::before {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--teal);
  color: #ffffff;
  content: "✓";
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 18px;
  text-align: center;
}

.screenshot-card,
.gallery-shot {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--dark);
  box-shadow: var(--shadow);
}

.screenshot-card {
  min-height: 430px;
}

.screenshot-card img,
.gallery-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shot-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  gap: 18px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(16, 19, 27, 0.08), rgba(16, 19, 27, 0.78)),
    linear-gradient(90deg, rgba(13, 98, 93, 0.22), transparent);
}

.mini-window {
  overflow: hidden;
  width: min(100%, 500px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(16, 19, 27, 0.72);
  backdrop-filter: blur(16px);
}

.mini-window-bar {
  height: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.mini-window-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.mini-window-body span {
  display: block;
  height: 36px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(156, 230, 238, 0.34), rgba(228, 122, 99, 0.34));
  font-size: 0;
}

.shot-copy {
  max-width: 470px;
  color: #ffffff;
}

.shot-copy strong {
  font-size: 1.7rem;
  font-weight: 950;
}

.shot-copy p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.theme-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  align-items: center;
  gap: 42px;
}

.wallpaper-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.wallpaper-strip img {
  width: 100%;
  aspect-ratio: 0.74;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--thin-shadow);
}

.wallpaper-strip img:nth-child(2),
.wallpaper-strip img:nth-child(4) {
  transform: translateY(30px);
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(100% - 40px, var(--max-width));
  margin: 10px auto 76px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(16, 42, 67, 0.94), rgba(13, 98, 93, 0.84)),
    url("assets/images/coral-flow-wallpaper.jpg") center / cover;
  color: #ffffff;
  box-shadow: var(--shadow);
}

.cta-section h2,
.cta-section p,
.cta-section .eyebrow {
  color: #ffffff;
}

.cta-section h2 {
  max-width: 760px;
  font-size: clamp(1.75rem, 2.8vw, 2.65rem);
  line-height: 1.08;
}

.cta-section p {
  max-width: 720px;
  margin-bottom: 0;
}

.cta-actions {
  display: grid;
  gap: 10px;
  min-width: 210px;
}

.cta-actions .button {
  width: 100%;
}

.page-hero,
.about-hero {
  display: grid;
  align-items: end;
  min-height: 360px;
  padding: 74px 20px 54px;
  color: #ffffff;
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(16, 42, 67, 0.92), rgba(13, 98, 93, 0.56)),
    url("assets/images/blue-waves-wallpaper.jpg") center / cover;
}

.page-hero-copy {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 880px;
  color: #ffffff;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.8);
}

.page-hero .eyebrow {
  color: #9ce6ee;
}

.screenshots-hero {
  background:
    linear-gradient(90deg, rgba(16, 42, 67, 0.92), rgba(27, 99, 214, 0.34)),
    url("assets/images/vibing-light-wallpaper.jpg") center / cover;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(16, 42, 67, 0.92), rgba(13, 98, 93, 0.46)),
    url("assets/images/misty-river-wallpaper.jpg") center / cover;
}

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

.platform-card {
  display: flex;
  min-height: auto;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px;
}

.platform-card.featured {
  background:
    linear-gradient(160deg, rgba(16, 42, 67, 0.92), rgba(27, 99, 214, 0.72)),
    url("assets/images/blue-waves-wallpaper.jpg") center / cover;
  color: #ffffff;
}

.platform-card.featured p,
.platform-card.featured h2 {
  color: #ffffff;
}

.platform-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.platform-card h2 {
  margin-top: 20px;
  font-size: 1.32rem;
  font-weight: 950;
}

.platform-card .button {
  width: 100%;
  margin-top: 18px;
}

.linux-download-section {
  padding-top: 64px;
}

.linux-download-shell {
  display: grid;
  width: min(100%, 880px);
  margin: 0 auto;
  gap: 14px;
}

.windows-download-shell {
  width: min(100%, 960px);
}

.linux-download-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
}

.download-guidance-panel {
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(139, 174, 255, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(13, 16, 22, 0.96), rgba(28, 43, 68, 0.84) 56%, rgba(48, 20, 28, 0.74)),
    url("assets/images/blue-waves-wallpaper.jpg") center / cover;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    var(--thin-shadow);
}

.download-guidance-panel .macos-install-note {
  max-width: none;
  margin-top: 0;
}

.download-guidance-panel .macos-install-note p {
  max-width: 780px;
  margin: 6px 0 0;
  font-size: 0.96rem;
}

.download-guidance-panel .macos-install-note ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 28px;
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.download-guidance-panel .macos-install-note li + li {
  margin-top: 0;
}

.download-keychain-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 428px);
  align-items: end;
  gap: 18px;
}

.linux-keychain-panel .download-keychain-row {
  grid-template-columns: minmax(220px, 1fr) minmax(0, 320px);
  align-items: center;
}

.download-keychain-callout {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 8px;
}

.download-keychain-copy {
  flex: 1 1 auto;
  width: 100%;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.42;
  text-align: left;
}

.download-keychain-copy strong {
  color: var(--ink);
  font-weight: 850;
}

.download-keychain-arrow {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1;
  opacity: 0.62;
}

.download-keychain-note {
  width: min(100%, 428px);
  margin-left: auto;
}

.download-keychain-note img {
  width: 428px;
  max-width: 100%;
  height: auto;
  border: 1px solid rgba(139, 174, 255, 0.22);
  border-radius: 6px;
  background: #202428;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
}

.linux-keychain-panel .download-keychain-note {
  width: min(100%, 320px);
}

.linux-keychain-panel .download-keychain-note img {
  width: 320px;
}

.windows-edge-layout {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 510px) minmax(0, 360px);
  align-items: start;
  justify-content: center;
  gap: 14px;
}

.download-guidance-panel p.release-guidance-title {
  margin: 0 0 -4px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.release-guidance-title-icon {
  display: inline-block;
  margin-left: 0.18em;
  letter-spacing: 0;
}

.windows-edge-primary,
.windows-edge-secondary {
  display: grid;
  min-width: 0;
}

.windows-edge-primary {
  gap: 10px;
}

.windows-edge-copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.42;
}

.windows-edge-copy strong {
  color: var(--ink);
  font-weight: 850;
}

.windows-edge-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 1px solid rgba(139, 174, 255, 0.22);
  border-radius: 6px;
  background: #202428;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
}

.linux-file-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--thin-shadow);
}

code {
  padding: 0.16em 0.36em;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper-2);
  color: var(--ink);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.92em;
}

.linux-file-panel {
  overflow: hidden;
}

.linux-file-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.linux-file-heading span {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 950;
}

.linux-file-heading .text-link {
  flex: 0 0 auto;
  font-weight: 950;
}

.linux-file-list {
  display: grid;
}

.linux-file-category {
  display: grid;
}

.linux-file-category + .linux-file-category {
  border-top: 1px solid var(--line);
}

.linux-file-category-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
}

.linux-file-category h3 {
  margin: 0;
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 950;
}

.linux-file-category-heading small {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 400;
  text-align: right;
}

.linux-file-category-heading code {
  margin-left: 3px;
  white-space: nowrap;
}

.linux-file-state {
  margin: 0;
  padding: 20px;
  color: var(--muted);
  font-weight: 400;
}

.linux-file-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 78px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.linux-file-row:last-child {
  border-bottom: 0;
}

.linux-file-row.is-placeholder {
  cursor: default;
}

.linux-file-row:hover,
.linux-file-row:focus-visible {
  background: var(--surface-soft);
  outline: none;
}

.linux-file-row.is-placeholder:hover {
  background: transparent;
}

.linux-file-row.is-primary {
  background:
    linear-gradient(135deg, rgba(139, 174, 255, 0.16), rgba(86, 214, 227, 0.13)),
    var(--surface);
}

.linux-file-row strong,
.linux-file-row small {
  display: block;
}

.linux-file-name-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.linux-file-row strong {
  font-size: 0.98rem;
  font-weight: 400;
  overflow-wrap: anywhere;
}

.linux-file-row small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 400;
}

.linux-file-row small.is-portable-executable {
  color: var(--amber);
}

.linux-file-row em {
  color: var(--teal);
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

.linux-file-name-line .download-version-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  padding: 4px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.linux-file-name-line .download-version-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 3px currentColor;
  opacity: 0.72;
}

.linux-file-name-line .download-version-badge.is-update-available {
  border-color: rgba(189, 82, 104, 0.45);
  background: #bd5268;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(189, 82, 104, 0.25);
}

.linux-file-name-line .download-version-badge.is-current {
  border-color: rgba(13, 98, 93, 0.24);
  background: var(--mint);
  color: var(--teal);
}

.release-note {
  max-width: 760px;
}

.macos-install-note {
  margin-top: 32px;
}

.macos-install-note ol {
  margin: 18px 0 0;
  padding-left: 22px;
  color: var(--ink-soft);
}

.macos-install-note li + li {
  margin-top: 8px;
}

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

.gallery-shot {
  aspect-ratio: 16 / 10;
  grid-column: span 2;
  min-height: auto;
  padding: 0;
  border: 0;
  color: #ffffff;
  cursor: zoom-in;
  text-align: left;
  isolation: isolate;
}

.gallery-shot.large {
  grid-column: span 4;
  grid-row: span 2;
  min-height: auto;
}

.gallery-shot img {
  transition: transform 160ms ease, filter 160ms ease;
}

.gallery-shot:hover img,
.gallery-shot:focus-visible img {
  transform: scale(1.018);
}

.gallery-shot:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(180deg, rgba(16, 19, 27, 0), rgba(16, 19, 27, 0.76));
  color: #ffffff;
  pointer-events: none;
}

.gallery-overlay span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.76rem;
  font-weight: 950;
}

.gallery-overlay strong {
  max-width: 560px;
  font-size: 1.24rem;
  line-height: 1.18;
}

.screenshot-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 44px);
  background: rgba(3, 7, 18, 0.82);
  backdrop-filter: blur(10px);
}

.screenshot-lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: default;
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(10px, 2vw, 24px);
  max-width: min(96vw, 1640px);
  max-height: 90svh;
  align-items: center;
}

.lightbox-frame {
  position: relative;
  display: flex;
  min-width: 0;
  max-width: min(100%, 1500px);
  max-height: 88svh;
  align-items: center;
  justify-content: center;
}

.lightbox-panel img {
  display: block;
  max-width: 100%;
  max-height: 88svh;
  border-radius: var(--radius);
  box-shadow: 0 28px 96px rgba(0, 0, 0, 0.58);
}

.lightbox-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(8, 11, 17, 0.78);
  color: #ffffff;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 950;
  line-height: 1;
  transform: translate(50%, -50%);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.lightbox-nav {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(8, 11, 17, 0.72);
  color: #ffffff;
  cursor: pointer;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
}

.lightbox-nav span {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

.lightbox-nav svg {
  display: block;
  width: 26px;
  height: 26px;
  overflow: visible;
}

.lightbox-nav path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.8;
}

.lightbox-prev {
  justify-self: end;
}

.lightbox-next {
  justify-self: start;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(16, 42, 67, 0.88), rgba(13, 98, 93, 0.42)),
    url("assets/images/coral-flow-wallpaper.png") center / cover;
}

.about-panel {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  color: #ffffff;
}

.about-panel h1 {
  max-width: 900px;
  color: #ffffff;
}

.about-panel p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.about-panel .eyebrow {
  color: #9ce6ee;
}

.about-panel .button.primary {
  background: #ffffff;
  color: var(--ink);
}

.about-panel .button.secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

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

.agency-grid article {
  min-height: 230px;
  padding: 20px;
}

.agency-grid article:first-child {
  background: var(--navy);
}

.agency-grid article:first-child h2,
.agency-grid article:first-child p {
  color: #ffffff;
}

.agency-grid article:first-child h2 {
  font-size: clamp(2.05rem, 4.4vw, 3.85rem);
}

.agency-grid h3 {
  font-size: 1.18rem;
  font-weight: 950;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.contact-form {
  display: grid;
  gap: 18px;
  grid-row: 1 / span 2;
  padding: 24px;
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  font-weight: 900;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  padding: 12px 13px;
  color: var(--ink);
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(13, 98, 93, 0.14);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: #0a6671;
  font-weight: 850;
}

.form-note.is-error {
  color: #a33145;
}

.contact-aside {
  padding: 24px;
}

.contact-aside img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius);
  box-shadow: 0 16px 30px rgba(27, 99, 214, 0.18);
}

.contact-aside h2 {
  margin-top: 24px;
  font-size: 1.9rem;
}

.account-deletion-card h2 {
  margin-top: 0;
}

.account-deletion-card {
  display: flex;
  flex-direction: column;
}

.account-deletion-card .button {
  margin-top: auto;
}

.deletion-hero {
  background:
    linear-gradient(90deg, rgba(16, 42, 67, 0.92), rgba(189, 82, 104, 0.5)),
    url("assets/images/coral-flow-wallpaper.jpg") center / cover;
}

.deletion-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 18px;
  align-items: start;
}

.deletion-panel,
.deletion-aside,
.deletion-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--thin-shadow);
}

.deletion-panel,
.deletion-aside {
  padding: 24px;
}

.deletion-heading {
  margin-bottom: 20px;
}

.deletion-heading h2,
.deletion-note h2,
.deletion-aside h2 {
  color: var(--ink);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 950;
}

.deletion-heading p,
.deletion-note p,
.deletion-aside p,
.deletion-steps p {
  color: var(--muted);
}

.deletion-heading strong {
  color: var(--ink);
}

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

.deletion-steps li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.deletion-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 950;
}

.deletion-steps strong {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 950;
}

.deletion-steps p {
  margin: 5px 0 0;
}

.deletion-aside img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius);
  box-shadow: 0 16px 30px rgba(27, 99, 214, 0.18);
}

.deletion-aside h2 {
  margin-top: 24px;
}

.deletion-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.copy-status {
  margin: 12px 0 0;
  color: var(--teal);
  font-weight: 850;
  text-align: center;
}

.deletion-note {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1fr);
  gap: 24px;
  padding: 26px;
}

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

.deletion-note-grid p {
  min-height: 120px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.legal-hero {
  background:
    linear-gradient(90deg, rgba(16, 42, 67, 0.94), rgba(76, 131, 181, 0.58)),
    url("assets/images/misty-river-wallpaper.jpg") center / cover;
}

.legal-layout {
  display: block;
}

.legal-document {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--thin-shadow);
}

.legal-document-header {
  display: grid;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.legal-document-header h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 950;
}

.legal-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 0;
}

.legal-meta div {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.legal-meta dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-meta dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.legal-section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.legal-intro {
  border-top: 0;
}

.legal-section h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-weight: 950;
}

.legal-section h2 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 950;
}

.legal-section p {
  max-width: 76ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.legal-section p + p {
  margin-top: 14px;
}

.legal-section a,
.legal-meta a {
  color: var(--blue);
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 950;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong {
  color: var(--ink);
  font-weight: 950;
}

.site-footer p {
  margin: 4px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  color: #344456;
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 1080px) {
  .hero-inner,
  .feature-ribbon,
  .split-section,
  .theme-band,
  .contact-layout,
  .deletion-layout,
  .deletion-note {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-rows: auto;
  }

  .contact-form {
    grid-row: auto;
  }

  .hero-inner {
    align-items: start;
  }

  .hero-copy,
  .hero-product,
  .hero-proof {
    grid-column: auto;
    grid-row: auto;
  }

  .feature-ribbon-grid,
  .download-grid,
  .agency-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mock-workspace {
    grid-template-columns: 1fr;
  }

  .mock-sidebar {
    display: none;
  }
}

@media (max-width: 780px) {
  .nav-wrap {
    width: min(100% - 28px, var(--max-width));
    min-height: 68px;
    gap: 12px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(247, 248, 244, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .hero-inner {
    width: min(100% - 28px, var(--max-width));
    min-height: auto;
    padding: 42px 0 34px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15.4vw, 4.6rem);
  }

  .hero-lede {
    font-size: 1.22rem;
  }

  .hero-support {
    font-size: 0.98rem;
  }

  .hero-proof,
  .feature-ribbon-grid,
  .feature-grid,
  .download-grid,
  .agency-grid,
  .compact-heading,
  .deletion-note-grid {
    grid-template-columns: 1fr;
  }

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

  .mock-column {
    min-height: auto;
  }

  .mock-composer {
    display: none;
  }

  .section,
  .cta-section,
  .site-footer {
    width: min(100% - 28px, var(--max-width));
  }

  .section {
    padding: 56px 0;
  }

  .feature-ribbon {
    padding-top: 22px;
  }

  .linux-file-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .linux-file-category-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .linux-file-category-heading small {
    text-align: left;
  }

  .linux-file-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .download-guidance-panel {
    padding: 14px;
  }

  .download-guidance-panel .macos-install-note ol {
    grid-template-columns: 1fr;
  }

  .download-keychain-row,
  .linux-keychain-panel .download-keychain-row {
    grid-template-columns: 1fr;
  }

  .download-keychain-copy {
    max-width: 100%;
  }

  .download-keychain-arrow {
    display: none;
  }

  .download-keychain-note,
  .linux-keychain-panel .download-keychain-note {
    width: 100%;
    margin-left: 0;
  }

  .windows-edge-layout {
    display: block;
    grid-template-columns: 1fr;
  }

  .windows-edge-primary,
  .windows-edge-secondary {
    width: min(100%, calc(100vw - 56px), 360px);
    margin-inline: 0;
  }

  .windows-edge-secondary {
    margin-top: 14px;
  }

  .windows-edge-image {
    display: block;
  }

  .features-section {
    padding-top: 34px;
  }

  .compact-heading .eyebrow {
    margin-bottom: -8px;
  }

  .feature-card {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .screenshot-card {
    min-height: 320px;
  }

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

  .wallpaper-strip img:nth-child(2),
  .wallpaper-strip img:nth-child(4) {
    transform: none;
  }

  .cta-section,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero,
  .about-hero {
    min-height: 320px;
    padding: 58px 14px 42px;
  }

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

  .gallery-shot,
  .gallery-shot.large {
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
  }

}

@media (max-width: 520px) {
  .nav-wrap,
  .hero-inner {
    width: min(100% - 28px, 362px);
    margin-left: 14px;
    margin-right: auto;
  }

  .hero-copy {
    max-width: 362px;
  }

  .brand {
    gap: 10px;
  }

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

  .brand strong {
    font-size: 0.94rem;
  }

  .brand small {
    display: none;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    min-height: 48px;
  }

  .app-window {
    display: none;
  }

  .feature-ribbon article,
  .feature-card,
  .platform-card,
  .agency-grid article,
  .deletion-note-grid p {
    min-height: auto;
  }

  .screenshot-card,
  .gallery-shot,
  .gallery-shot.large {
    min-height: auto;
  }

  .gallery-overlay {
    padding: 14px;
  }

  .gallery-overlay strong {
    font-size: 1rem;
  }

  .lightbox-close {
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
  }

  .lightbox-panel {
    gap: 8px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }
}

:root {
  --ink: #f4f7fb;
  --ink-soft: #d8e0ec;
  --muted: #9aa8bb;
  --paper: #0d1016;
  --paper-2: #121720;
  --surface: #171c24;
  --surface-soft: #1f2632;
  --line: #2f3949;
  --line-dark: #48566b;
  --navy: #0d1724;
  --teal: #56d6e3;
  --blue: #8baeff;
  --blue-soft: #1c2b44;
  --rose: #d4738c;
  --coral: #e47a63;
  --amber: #d1a24d;
  --mint: #16363d;
  --dark: #080b11;
  --shadow: 0 28px 86px rgba(0, 0, 0, 0.38);
  --thin-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

body {
  background:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    radial-gradient(circle at 12% 0%, rgba(86, 214, 227, 0.2), transparent 34rem),
    radial-gradient(circle at 86% 8%, rgba(212, 115, 140, 0.2), transparent 34rem),
    linear-gradient(135deg, #0d1016 0%, #111927 42%, #251522 100%);
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
  color: var(--ink);
}

.site-header {
  border-bottom-color: rgba(72, 86, 107, 0.72);
  background: rgba(13, 16, 22, 0.86);
}

.brand,
.brand strong {
  color: var(--ink);
}

.brand small,
.site-footer,
.site-footer p {
  color: var(--muted);
}

.brand img {
  box-shadow: 0 12px 30px rgba(139, 174, 255, 0.18);
}

.site-nav a {
  color: #c7d1df;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  border-color: rgba(139, 174, 255, 0.34);
  background: rgba(139, 174, 255, 0.14);
  color: #ffffff;
}

.nav-toggle {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.hero {
  min-height: 82svh;
  border-bottom-color: rgba(72, 86, 107, 0.76);
  background:
    linear-gradient(110deg, rgba(13, 16, 22, 0.96) 0%, rgba(13, 16, 22, 0.9) 40%, rgba(48, 20, 28, 0.78) 100%),
    url("assets/images/coral-flow-wallpaper.jpg") center / cover;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(86, 214, 227, 0.12), transparent 40%, rgba(228, 122, 99, 0.18)),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, 40px 40px, 40px 40px;
}

.hero-inner {
  grid-template-columns: minmax(0, 0.78fr) minmax(650px, 1.22fr);
  width: min(100% - 40px, 1280px);
  min-height: calc(82svh - 74px);
  padding: 34px 0 30px;
}

.hero-copy {
  align-self: center;
}

.eyebrow,
.hero .eyebrow,
.page-hero .eyebrow,
.about-panel .eyebrow,
.cta-section .eyebrow {
  color: var(--teal);
}

.hero h1 {
  max-width: none;
  color: var(--ink);
  font-size: clamp(2.8rem, 4vw, 3.65rem);
  line-height: 0.98;
}

.hero-lede {
  max-width: 680px;
  color: #ffffff;
  font-size: clamp(1.28rem, 2vw, 1.72rem);
}

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

.button.primary {
  background: linear-gradient(135deg, #8baeff, #56d6e3);
  color: #08111d;
  box-shadow: 0 16px 34px rgba(86, 214, 227, 0.2);
}

.button.secondary {
  border-color: rgba(139, 174, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.button.disabled {
  border-color: var(--line);
  background: var(--surface-soft);
  color: var(--muted);
}

.hero-proof {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 980px;
}

.hero-proof article,
.feature-ribbon article,
.feature-card,
.platform-card,
.linux-file-panel,
.agency-grid article,
.contact-form,
.contact-aside {
  border-color: rgba(72, 86, 107, 0.9);
  background: rgba(23, 28, 36, 0.78);
  box-shadow: var(--thin-shadow);
}

.hero-proof article {
  min-height: 82px;
  backdrop-filter: blur(16px);
}

.hero-proof strong,
.feature-ribbon strong,
.feature-card h3,
.platform-card h2,
.agency-grid h3,
.site-footer strong {
  color: var(--ink);
}

.hero-proof p,
.feature-ribbon p,
.feature-card p,
.platform-card p,
.agency-grid p,
.section-heading p,
.split-copy p,
.release-note p,
.contact-aside p {
  color: var(--muted);
}

.app-window {
  border-color: rgba(139, 174, 255, 0.18);
  background: rgba(8, 11, 17, 0.92);
  box-shadow: var(--shadow);
}

.window-bar {
  border-bottom-color: rgba(139, 174, 255, 0.14);
  background: rgba(23, 28, 36, 0.9);
}

.mock-workspace {
  background:
    linear-gradient(180deg, rgba(8, 11, 17, 0.94), rgba(13, 16, 22, 0.98)),
    url("assets/images/blue-waves-wallpaper.jpg") center / cover;
}

.mock-sidebar,
.mock-board,
.mock-composer {
  border-color: rgba(139, 174, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
}

.feature-ribbon {
  grid-template-columns: 230px minmax(0, 1fr);
  padding-top: 28px;
}

.quick-feature-header {
  border-color: rgba(86, 214, 227, 0.22);
  background:
    linear-gradient(145deg, rgba(28, 43, 68, 0.95), rgba(48, 20, 28, 0.8)),
    url("assets/images/blue-waves-wallpaper.jpg") center / cover;
}

.quick-feature-header h2 {
  color: #ffffff;
}

.feature-ribbon span {
  color: var(--coral);
}

.feature-ribbon article {
  min-height: 122px;
}

.features-section {
  padding-top: 44px;
}

.compact-heading h2,
.section-heading h2,
.split-copy h2,
.theme-band h2,
.release-note h2,
.contact-aside h2 {
  color: var(--ink);
}

.feature-card.emphasis,
.agency-grid article:first-child {
  background:
    linear-gradient(135deg, rgba(28, 43, 68, 0.96), rgba(48, 20, 28, 0.86)),
    url("assets/images/solar-tide-wallpaper.jpg") center / cover;
}

.feature-card.emphasis h3,
.feature-card.emphasis p,
.agency-grid article:first-child h2,
.agency-grid article:first-child p {
  color: #ffffff;
}

.check-list li {
  border-color: var(--line);
  background: rgba(23, 28, 36, 0.78);
  color: var(--ink-soft);
}

.check-list li::before {
  background: var(--teal);
  color: #08111d;
}

.screenshot-card,
.gallery-shot {
  background: var(--dark);
  box-shadow: var(--shadow);
}

.mini-window {
  border-color: rgba(139, 174, 255, 0.2);
  background: rgba(8, 11, 17, 0.78);
}

.wallpaper-strip img {
  border-color: rgba(139, 174, 255, 0.16);
  box-shadow: var(--thin-shadow);
}

.cta-section {
  border-color: rgba(139, 174, 255, 0.18);
  background:
    linear-gradient(90deg, rgba(13, 16, 22, 0.94), rgba(48, 20, 28, 0.84)),
    url("assets/images/coral-flow-wallpaper.jpg") center / cover;
}

.cta-section h2,
.cta-section p {
  color: #ffffff;
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(13, 16, 22, 0.94), rgba(48, 20, 28, 0.72)),
    url("assets/images/blue-waves-wallpaper.jpg") center / cover;
}

.screenshots-hero {
  background:
    linear-gradient(90deg, rgba(13, 16, 22, 0.94), rgba(28, 43, 68, 0.68)),
    url("assets/images/vibing-light-wallpaper.jpg") center / cover;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(13, 16, 22, 0.94), rgba(22, 54, 61, 0.68)),
    url("assets/images/misty-river-wallpaper.jpg") center / cover;
}

.deletion-hero {
  background:
    linear-gradient(90deg, rgba(13, 16, 22, 0.94), rgba(48, 20, 28, 0.78)),
    url("assets/images/coral-flow-wallpaper.jpg") center / cover;
}

.page-hero h1,
.about-panel h1 {
  color: #ffffff;
}

.page-hero p,
.about-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.platform-card.featured {
  background:
    linear-gradient(160deg, rgba(28, 43, 68, 0.94), rgba(48, 20, 28, 0.78)),
    url("assets/images/blue-waves-wallpaper.jpg") center / cover;
}

.platform-icon {
  background: var(--blue-soft);
  color: var(--blue);
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(13, 16, 22, 0.94), rgba(48, 20, 28, 0.68)),
    url("assets/images/coral-flow-wallpaper.png") center / cover;
}

.about-panel .button.primary {
  background: linear-gradient(135deg, #8baeff, #56d6e3);
  color: #08111d;
}

.about-panel .button.secondary {
  border-color: rgba(139, 174, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.form-row label {
  color: var(--ink);
}

.form-row input,
.form-row select,
.form-row textarea {
  border-color: var(--line);
  background: rgba(13, 16, 22, 0.72);
  color: var(--ink);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--teal);
  outline-color: rgba(86, 214, 227, 0.18);
}

.form-note {
  color: var(--teal);
}

.form-note.is-error {
  color: var(--rose);
}

.text-link {
  color: var(--teal);
}

.site-footer {
  border-top-color: var(--line);
}

.site-footer a {
  color: var(--ink-soft);
}

@media (max-width: 1080px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

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

  .feature-ribbon {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-nav {
    border-color: var(--line);
    background: rgba(13, 16, 22, 0.98);
  }

  .nav-wrap,
  .hero-inner,
  .section,
  .cta-section,
  .site-footer,
  .page-hero-copy,
  .about-panel {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    margin-left: 14px;
    margin-right: 14px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 38px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.02rem, 8.8vw, 2.45rem);
  }

  .hero-lede,
  .hero-support {
    max-width: 100%;
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .hero-actions,
  .button {
    width: 100%;
    max-width: 100%;
  }

  .hero-product {
    display: none;
  }

  .hero-screenshot {
    display: block;
    grid-column: 1;
    grid-row: auto;
    justify-self: stretch;
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .hero-proof {
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .hero-copy,
  .hero-actions,
  .hero-proof,
  .hero-lede,
  .hero-support {
    width: 100%;
    max-width: 330px;
  }

  .button {
    max-width: 330px;
  }
}
