:root {
  color-scheme: light;
  --paper: #f4f7f6;
  --surface: #ffffff;
  --ink: #14201c;
  --muted: #5f6f68;
  --line: #d8e0dc;
  --green: #17795a;
  --green-dark: #102c23;
  --mint: #54dca2;
  --orange: #f47a38;
  --sky: #69c6dc;
  --violet: #9e87dc;
  --shadow: 0 18px 50px rgba(17, 43, 34, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.55 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  border-radius: 6px;
  background: white;
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(11, 24, 20, 0.58);
  color: white;
  backdrop-filter: blur(18px) saturate(1.2);
}

.admin-bar .site-header {
  top: 32px;
}

.nav-shell {
  width: min(calc(100% - 40px), var(--max));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  font-weight: 850;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 7px;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

nav .menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

nav a:hover,
nav a:focus-visible {
  color: white;
}

.control-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 800;
}

.control-link:hover,
.control-link:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  position: relative;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  width: 18px;
  height: 2px;
  position: absolute;
  left: 11px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle::before {
  top: 13px;
}

.menu-toggle span {
  top: 19px;
}

.menu-toggle::after {
  top: 25px;
}

.menu-open .menu-toggle::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span {
  opacity: 0;
}

.menu-open .menu-toggle::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(790px, 86svh);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: white;
  background: #102c23;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-image: url("control-overview-public.png");
  background-position: 66% 18%;
  background-size: cover;
  filter: saturate(0.88) contrast(1.05);
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 20, 16, 0.94) 0%, rgba(7, 20, 16, 0.76) 43%, rgba(7, 20, 16, 0.24) 76%),
    linear-gradient(0deg, rgba(7, 20, 16, 0.9) 0%, transparent 44%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 170px 0 138px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--green);
}

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

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(58px, 8rem, 92px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 630px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.primary-action,
.secondary-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 850;
}

.primary-action {
  border: 1px solid var(--mint);
  background: var(--mint);
  color: #0a261b;
}

.primary-action:hover,
.primary-action:focus-visible {
  background: #74eab8;
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: white;
}

.secondary-action:hover,
.secondary-action:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.hero-foot {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 750;
}

.signal-band {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.signal-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.signal-inner > div {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  border-left: 1px solid var(--line);
  padding: 24px 30px;
}

.signal-inner > div:last-child {
  border-right: 1px solid var(--line);
}

.signal-inner strong {
  font-size: 25px;
}

.signal-inner span {
  color: var(--muted);
  font-size: 13px;
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 46px;
}

.section-heading h2,
.app-copy h2,
.status-intro h2,
.about-grid h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1.06;
  letter-spacing: 0;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
}

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

.section-end-link {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 8px 30px rgba(23, 56, 45, 0.06);
}

.project-card-featured {
  grid-row: span 2;
}

.project-media {
  height: 240px;
  display: block;
  overflow: hidden;
  background: #dfe8e4;
}

.project-card-featured .project-media {
  height: 560px;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 350ms ease;
}

.project-card:hover .project-media img {
  transform: scale(1.025);
}

.project-body {
  padding: 26px 28px 30px;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-body h3 {
  margin: 0;
  font-size: 25px;
}

.project-body p {
  margin: 12px 0 20px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 14px;
  font-weight: 850;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.text-link span {
  transition: transform 160ms ease;
}

.ai-visual {
  height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 32px;
  color: white;
  background:
    linear-gradient(120deg, rgba(84, 220, 162, 0.16), transparent 42%),
    linear-gradient(300deg, rgba(105, 198, 220, 0.2), transparent 48%),
    #152b25;
}

.ai-visual span {
  color: var(--mint);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.ai-visual strong {
  font-size: 70px;
  line-height: 0.95;
}

.ai-visual small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.62);
}

.app-band {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.8fr);
  align-items: center;
  gap: 80px;
  overflow: hidden;
  background:
    linear-gradient(130deg, rgba(84, 220, 162, 0.09), transparent 40%),
    #102820;
  color: white;
  padding: 90px max(40px, calc((100vw - var(--max)) / 2));
}

.app-copy {
  max-width: 620px;
}

.app-copy > p:not(.eyebrow) {
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.app-copy ul {
  display: grid;
  gap: 10px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.app-copy li::before {
  content: "✓";
  display: inline-block;
  width: 24px;
  color: var(--mint);
  font-weight: 900;
}

.primary-action.light {
  border-color: white;
  background: white;
  color: var(--ink);
}

.phone-stage {
  position: relative;
  height: 670px;
  display: grid;
  place-items: center;
}

.phone-stage img {
  position: relative;
  z-index: 2;
  width: min(330px, 74vw);
  height: 650px;
  border: 9px solid #07120f;
  border-radius: 42px;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.42);
  object-fit: cover;
  object-position: top;
}

.phone-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(84, 220, 162, 0.24);
  border-radius: 50%;
  background: rgba(84, 220, 162, 0.08);
}

.guide-list {
  border-top: 1px solid var(--line);
}

.guide-list a {
  min-height: 106px;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 18px 12px;
}

.guide-list a:hover,
.guide-list a:focus-visible {
  background: rgba(255, 255, 255, 0.66);
}

.guide-number {
  color: var(--green);
  font: 700 13px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.guide-list strong,
.guide-list small {
  display: block;
}

.guide-list strong {
  font-size: 19px;
}

.guide-list small {
  margin-top: 5px;
  color: var(--muted);
}

.guide-arrow {
  color: var(--green);
  font-size: 22px;
}

.status-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
  gap: 100px;
  background: #17201d;
  color: white;
  padding: 96px max(40px, calc((100vw - var(--max)) / 2));
}

.status-intro > p:not(.eyebrow) {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.status-list {
  align-self: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.status-list > div {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

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

.status-list i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(84, 220, 162, 0.11);
}

.status-list strong {
  color: var(--mint);
  font-size: 12px;
  text-transform: uppercase;
}

.status-list > p {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.about-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 90px;
}

.about-grid p {
  margin: 2px 0 24px;
  color: var(--muted);
  font-size: 18px;
}

.inner-hero {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(120deg, rgba(84, 220, 162, 0.13), transparent 46%),
    linear-gradient(300deg, rgba(105, 198, 220, 0.1), transparent 44%),
    #102820;
  color: white;
  padding: 150px max(40px, calc((100vw - var(--max)) / 2)) 86px;
}

.inner-hero h1,
.article-header h1 {
  margin: 0;
  font-size: 64px;
  line-height: 1;
}

.inner-hero > p:not(.eyebrow),
.article-header > p:not(.eyebrow) {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.archive-section {
  min-height: 480px;
}

.archive-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: 80px;
  background: #17201d;
  color: white;
  padding: 88px max(40px, calc((100vw - var(--max)) / 2));
}

.archive-cta h2 {
  max-width: 720px;
  margin: 0;
  font-size: 42px;
  line-height: 1.08;
}

.archive-cta p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.archive-cta .hero-actions {
  justify-content: flex-end;
  margin-top: 0;
}

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

.archive-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 8px 30px rgba(23, 56, 45, 0.06);
}

.archive-card > div:last-child {
  padding: 26px 28px 30px;
}

.archive-media,
.archive-placeholder {
  height: 290px;
  display: block;
  overflow: hidden;
  background: #18332a;
}

.archive-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 300ms ease;
}

.archive-card:hover .archive-media img {
  transform: scale(1.025);
}

.archive-placeholder {
  display: grid;
  place-items: center;
  color: var(--mint);
  font-size: 42px;
  font-weight: 900;
}

.archive-kicker {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.archive-card h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.15;
}

.archive-card p:not(.archive-kicker) {
  color: var(--muted);
}

.single-content {
  min-height: 700px;
  padding-bottom: 110px;
}

.article-header {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(120deg, rgba(84, 220, 162, 0.12), transparent 43%),
    #102820;
  color: white;
  padding: 150px max(40px, calc((100vw - 860px) / 2)) 82px;
}

.article-visual {
  width: min(calc(100% - 40px), 1040px);
  max-height: 620px;
  margin: 64px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.article-visual img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: top;
}

.entry-content,
.article-back {
  width: min(calc(100% - 40px), 780px);
  margin-right: auto;
  margin-left: auto;
}

.entry-content {
  padding-top: 72px;
  color: #263730;
  font-size: 18px;
  line-height: 1.75;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content h2,
.entry-content h3 {
  margin-top: 2.3em;
  margin-bottom: 0.6em;
  color: var(--ink);
  line-height: 1.15;
}

.entry-content h2 {
  font-size: 34px;
}

.entry-content h3 {
  font-size: 25px;
}

.entry-content a {
  color: var(--green);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content code {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #e9efec;
  padding: 2px 5px;
  font-size: 0.9em;
}

.entry-content pre {
  overflow-x: auto;
  border-radius: 7px;
  background: #14201c;
  color: #d8f5e7;
  padding: 22px;
}

.entry-content .wp-block-button__link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border-radius: 7px;
  background: var(--green);
  color: white;
  padding: 12px 20px;
  text-decoration: none;
}

.entry-content .wp-block-separator {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 48px 0;
}

.article-offer {
  width: min(calc(100% - 40px), 920px);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
  align-items: center;
  gap: 48px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  background: white;
  margin: 76px auto 0;
  padding: 34px 38px;
  box-shadow: 0 14px 38px rgba(17, 43, 34, 0.08);
}

.article-offer h2 {
  margin: 0;
  font-size: 29px;
  line-height: 1.14;
}

.article-offer p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
}

.offer-actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 18px;
}

.woocommerce .woocommerce-notices-wrapper,
.woocommerce .woocommerce-form-login,
.woocommerce .woocommerce-form-coupon,
.woocommerce form.checkout,
.woocommerce form.edit-account,
.woocommerce form.woocommerce-ResetPassword,
.woocommerce .woocommerce-MyAccount-content,
.woocommerce .woocommerce-MyAccount-navigation,
.woocommerce div.product {
  font-size: 16px;
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 52px;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  width: auto;
  float: none;
  margin: 0;
}

.woocommerce div.product div.images img {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.woocommerce div.product .product_title {
  margin: 0 0 14px;
  font-size: 38px;
  line-height: 1.08;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--green);
  font-size: 28px;
  font-weight: 850;
}

.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  min-height: 46px;
  border-radius: 7px;
  background: var(--green);
  color: white;
  padding: 12px 18px;
  font-weight: 850;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--green-dark);
  color: white;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce .select2-container .select2-selection--single,
.knvd-license-panel textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #b8c6bf;
  border-radius: 6px;
  background: white;
  color: var(--ink);
  padding: 10px 12px;
  font: inherit;
}

.woocommerce .woocommerce-MyAccount-navigation ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.woocommerce .woocommerce-MyAccount-navigation a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  padding: 8px 12px;
  text-decoration: none;
}

.woocommerce .woocommerce-MyAccount-navigation .is-active a {
  border-color: var(--green);
  background: #e6f6ef;
  color: var(--green-dark);
}

.knvd-license-panel {
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: white;
  margin: 28px 0;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(17, 43, 34, 0.08);
}

.knvd-license-panel h2 {
  margin-top: 0;
  font-size: 24px;
}

.knvd-license-panel textarea {
  min-height: 132px;
  resize: vertical;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 13px;
  line-height: 1.45;
}

.woocommerce table.shop_table {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
}

.woocommerce-message,
.woocommerce-info {
  border-top-color: var(--green);
  background: white;
}

.woocommerce-info::before,
.woocommerce-message::before {
  color: var(--green);
}

.article-back {
  border-top: 1px solid var(--line);
  margin-top: 70px;
  padding-top: 26px;
}

.error-hero {
  min-height: 760px;
  justify-content: center;
}

.error-hero .primary-action {
  align-self: flex-start;
  margin-top: 28px;
}

footer {
  min-height: 190px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 60px;
  border-top: 1px solid var(--line);
  background: white;
  padding: 40px max(40px, calc((100vw - var(--max)) / 2));
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand span,
footer > p {
  color: var(--muted);
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
  font-weight: 750;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(8, 23, 18, 0.97);
    padding: 18px max(20px, calc((100vw - var(--max)) / 2));
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  }

  .menu-open nav {
    display: block;
  }

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

  nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .control-link {
    margin-left: 0;
  }

  .signal-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .signal-inner > div:nth-child(odd) {
    border-left: 0;
  }

  .signal-inner > div {
    border-bottom: 1px solid var(--line);
  }

  .section-heading,
  .app-band,
  .status-band,
  .about-grid,
  .archive-grid,
  .archive-cta,
  .article-offer {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .status-band,
  .about-grid,
  .archive-cta,
  .article-offer {
    gap: 34px;
  }

  .app-band {
    gap: 40px;
  }

  .phone-stage {
    height: 590px;
  }

  .phone-stage img {
    height: 570px;
  }
}

@media (max-width: 680px) {
  .admin-bar .site-header {
    top: 46px;
  }

  .nav-shell {
    width: calc(100% - 28px);
    min-height: 64px;
  }

  .brand span {
    display: none;
  }

  .control-link {
    min-height: 38px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    background-position: 58% top;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(7, 20, 16, 0.96) 0%, rgba(7, 20, 16, 0.72) 64%, rgba(7, 20, 16, 0.46));
  }

  .hero-inner {
    width: calc(100% - 32px);
    padding: 150px 0 150px;
  }

  h1 {
    font-size: 58px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-foot {
    justify-content: flex-start;
    gap: 24px;
    overflow-x: auto;
    padding: 0 16px;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .hero-foot::-webkit-scrollbar {
    display: none;
  }

  .section,
  .signal-inner {
    width: 100%;
  }

  .section {
    padding: 78px 16px;
  }

  .section-heading h2,
  .app-copy h2,
  .status-intro h2,
  .about-grid h2 {
    font-size: 34px;
  }

  .inner-hero,
  .article-header {
    min-height: 460px;
    padding: 130px 16px 62px;
  }

  .inner-hero h1,
  .article-header h1 {
    font-size: 46px;
  }

  .archive-media,
  .archive-placeholder {
    height: 240px;
  }

  .archive-card > div:last-child {
    padding: 22px;
  }

  .archive-cta {
    padding: 72px 16px;
  }

  .archive-cta h2 {
    font-size: 34px;
  }

  .archive-cta .hero-actions {
    justify-content: flex-start;
  }

  .article-visual {
    width: calc(100% - 32px);
    margin-top: 36px;
  }

  .entry-content,
  .article-back {
    width: calc(100% - 32px);
  }

  .entry-content {
    padding-top: 48px;
    font-size: 17px;
  }

  .entry-content h2 {
    font-size: 29px;
  }

  .article-offer {
    width: calc(100% - 32px);
    margin-top: 52px;
    padding: 26px 24px;
  }

  .article-offer h2 {
    font-size: 25px;
  }

  .woocommerce div.product {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .woocommerce div.product .product_title {
    font-size: 31px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

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

  .project-card-featured {
    grid-row: auto;
  }

  .project-card-featured .project-media,
  .project-media,
  .ai-visual {
    height: 270px;
  }

  .project-body {
    padding: 22px;
  }

  .app-band,
  .status-band {
    padding: 76px 16px;
  }

  .phone-stage {
    height: 540px;
  }

  .phone-stage img {
    width: 270px;
    height: 520px;
    border-radius: 34px;
  }

  .phone-glow {
    width: 310px;
    height: 310px;
  }

  .guide-list a {
    grid-template-columns: 34px minmax(0, 1fr) 24px;
    gap: 10px;
    padding-right: 4px;
    padding-left: 4px;
  }

  .guide-list strong {
    font-size: 16px;
  }

  .status-band {
    gap: 42px;
  }

  .status-list > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding: 15px 0;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 20px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
