:root {
  --ink: #1d1410;
  --ink-soft: #392820;
  --muted: #78675d;
  --muted-strong: #5d4d44;
  --cream: #fbf4eb;
  --cream-2: #f3e3d3;
  --cream-3: #ead4bf;
  --paper: rgba(255, 252, 247, 0.82);
  --paper-solid: #fffaf3;
  --line: rgba(122, 84, 58, 0.16);
  --line-strong: rgba(122, 84, 58, 0.26);
  --accent: #a46f4b;
  --accent-2: #c4936d;
  --accent-dark: #704832;
  --success: #5fa86b;
  --shadow: 0 26px 72px rgba(77, 49, 31, 0.13);
  --shadow-soft: 0 18px 46px rgba(77, 49, 31, 0.09);
  --radius: 28px;
  --radius-lg: 36px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 6%, rgba(255, 255, 255, 0.96) 0 16rem, transparent 34rem),
    radial-gradient(circle at 90% 12%, rgba(196, 147, 109, 0.18) 0 18rem, transparent 35rem),
    radial-gradient(circle at 50% 92%, rgba(112, 72, 50, 0.10) 0 18rem, transparent 40rem),
    linear-gradient(180deg, #fffaf3 0%, #f6eadc 46%, #fff7ef 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(112, 72, 50, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 72, 50, 0.055) 1px, transparent 1px);
  background-size: 74px 74px;
  opacity: 0.5;
  mask-image: radial-gradient(circle at 50% 16%, #000 0%, transparent 70%);
  z-index: 0;
}

body > *:not(.soft-bg) {
  position: relative;
  z-index: 1;
}

.soft-bg {
  position: fixed;
  inset: -18%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 17% 24%, rgba(255, 255, 255, 0.75), transparent 24rem),
    radial-gradient(circle at 76% 6%, rgba(196, 147, 109, 0.20), transparent 25rem),
    radial-gradient(circle at 70% 68%, rgba(112, 72, 50, 0.10), transparent 28rem);
  filter: blur(8px);
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; height: auto; }
button, input { font: inherit; }
figure { margin: 0; }
section[id] { scroll-margin-top: 112px; }

.section,
.nav,
.footer {
  width: min(100% - 56px, 1220px);
  margin-inline: auto;
}

.nav {
  position: sticky;
  top: 16px;
  z-index: 50;
  height: 74px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(122, 84, 58, 0.17);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.78);
  box-shadow: 0 18px 55px rgba(78, 50, 32, 0.10);
  backdrop-filter: blur(22px) saturate(135%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  font-size: 20px;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.brand span {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-dark));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 12px 28px rgba(112, 72, 50, 0.22);
  color: #fff8ef;
  font-weight: 900;
  font-size: 23px;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.navlinks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1 1 auto;
}

.navlinks a.active,
.navlinks a[aria-current="page"] {
  background: rgba(164, 111, 75, 0.12);
  color: var(--accent-dark);
}

.navlinks a {
  padding: 12px 14px;
  border-radius: 999px;
  color: #66554c;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.navlinks a:hover {
  background: rgba(164, 111, 75, 0.10);
  color: var(--accent-dark);
  transform: translateY(-1px);
}

.actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 252, 247, 0.72);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(77, 49, 31, 0.08);
}

.btn {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn.slim { min-height: 42px; padding-inline: 17px; font-size: 13px; }
.btn.filled {
  color: #fff8ef;
  background: linear-gradient(135deg, #b9825d, #6e452f);
  box-shadow: 0 16px 38px rgba(112, 72, 50, 0.22);
}
.btn.ghost {
  color: #5e4b42;
  background: rgba(255, 252, 247, 0.62);
  border-color: var(--line);
}
.btn:hover { transform: translateY(-2px); }
.btn.filled:hover { box-shadow: 0 20px 46px rgba(112, 72, 50, 0.28); }
.btn.ghost:hover { background: rgba(255, 252, 247, 0.92); border-color: var(--line-strong); }

.hero {
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(600px, 1.18fr);
  align-items: start;
  gap: clamp(32px, 3.6vw, 48px);
  padding: 48px 0 42px;
}

.hero-copy { max-width: 535px; }
.eyebrow {
  margin: 0 0 20px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  line-height: 1.7;
  text-transform: uppercase;
}
.eyebrow i { margin-inline: 9px; color: rgba(164, 111, 75, 0.52); font-style: normal; }

h1, h2, h3, p { margin-top: 0; }
h1,
.products h2,
.packages h2,
.data-text h2,
.control-copy h2,
.title-line h2,
.cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  letter-spacing: -0.06em;
}

h1 {
  margin-bottom: 21px;
  max-width: 600px;
  font-size: clamp(42px, 3.15vw, 58px);
  line-height: 0.99;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

h1 span { display: block; }

.lead {
  max-width: 535px;
  margin-bottom: 26px;
  color: var(--muted-strong);
  font-size: 16.5px;
  line-height: 1.74;
}

.checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.checks span {
  position: relative;
  min-height: 39px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px 0 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.62);
  box-shadow: 0 10px 24px rgba(77, 49, 31, 0.05);
  color: #5d4d44;
  font-size: 13px;
  font-weight: 850;
}

.checks span::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff8ef, var(--success));
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px rgba(95, 168, 107, 0.13);
}

.status-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px;
  max-width: 524px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 252, 247, 0.86), rgba(246, 232, 216, 0.66));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.status-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -94px;
  top: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 147, 109, 0.28), transparent 65%);
}


.status-live {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #54463f;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.status-live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(95, 168, 107, 0.13);
}

.status-icon {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 19px;
  background: linear-gradient(135deg, #2b1d17, #704832);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 15px 30px rgba(77, 49, 31, 0.18);
}
.status-icon::before {
  content: "";
  position: absolute;
  inset: 14px 18px 12px 19px;
  background: #fff8ef;
  clip-path: polygon(47% 0, 94% 0, 58% 42%, 100% 42%, 34% 100%, 49% 56%, 9% 56%);
}
.status-card small {
  display: block;
  margin-bottom: 5px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.status-card h2 { margin-bottom: 7px; font-size: 22px; letter-spacing: -0.045em; }
.status-card p { margin: 0; color: var(--muted); line-height: 1.58; font-size: 14px; }

.hero-visual {
  position: relative;
  justify-self: end;
  align-self: start;
  width: min(740px, calc(100% + 80px));
  margin-top: -32px;
  transform: translateX(-24px);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 9% -2% 1% 4%;
  border-radius: 50%;
  background: radial-gradient(circle at 52% 48%, rgba(255, 255, 255, 0.74), rgba(196, 147, 109, 0.18) 48%, transparent 73%);
  filter: blur(22px);
  z-index: -1;
}
.hero-visual img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 34px 64px rgba(77, 49, 31, 0.13));
}

.products,
.packages {
  padding: 38px 0 14px;
  text-align: center;
}
.products h2,
.packages h2 {
  margin-bottom: 26px;
  font-size: clamp(36px, 4vw, 50px);
}

.product-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-grid article,
.price-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255, 252, 247, 0.84), rgba(247, 232, 216, 0.70));
  box-shadow: var(--shadow-soft);
}

.product-grid article::before,
.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.72), transparent 34%, rgba(164,111,75,.08));
  pointer-events: none;
}

.product-grid article {
  min-height: 236px;
  padding: 32px 24px 30px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.product-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(164, 111, 75, 0.30);
  box-shadow: 0 24px 58px rgba(77, 49, 31, 0.13);
}

.round-icon {
  position: relative;
  width: 78px;
  height: 78px;
  margin: 0 auto 19px;
  border-radius: 25px;
  background: linear-gradient(135deg, #fff8ef, #ead2bc);
  border: 1px solid rgba(122, 84, 58, 0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75), 0 14px 28px rgba(77, 49, 31, 0.10);
}
.round-icon::before,
.round-icon::after { content: ""; position: absolute; }
.round-icon.storage::before {
  left: 22px; top: 24px; width: 34px; height: 18px;
  border-radius: 50% / 42%;
  background: var(--accent);
  box-shadow: 0 13px 0 var(--accent), 0 26px 0 var(--accent);
}
.round-icon.storage::after {
  left: 22px; top: 24px; width: 34px; height: 9px; border-radius: 50%;
  background: #d8b18f;
}
.round-icon.calls::before {
  left: 18px; top: 26px; width: 32px; height: 25px; border-radius: 9px; background: var(--accent);
}
.round-icon.calls::after {
  left: 50px; top: 24px; width: 0; height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 22px solid var(--accent);
}
.round-icon.emergency::before {
  left: 20px; top: 17px; width: 38px; height: 46px;
  clip-path: polygon(50% 0, 88% 16%, 82% 70%, 50% 100%, 18% 70%, 12% 16%);
  background: var(--accent);
}
.round-icon.emergency::after {
  left: 31px; top: 32px; width: 22px; height: 13px;
  border-left: 5px solid #fff8ef;
  border-bottom: 5px solid #fff8ef;
  transform: rotate(-45deg);
}
.round-icon.tenant::before {
  left: 20px; top: 24px; width: 20px; height: 20px; border-radius: 50%; background: var(--accent);
  box-shadow: 21px 2px 0 rgba(164,111,75,.72);
}
.round-icon.tenant::after {
  left: 16px; top: 50px; width: 48px; height: 18px; border-radius: 24px 24px 7px 7px;
  background: linear-gradient(90deg, var(--accent) 0 58%, rgba(164,111,75,.72) 58% 100%);
}

.product-grid h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  font-size: 21px;
  letter-spacing: -0.03em;
}
.product-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.package-grid { align-items: stretch; }
.price-card {
  min-height: 342px;
  padding: 32px 26px 28px;
  text-align: left;
}
.price-card h3,
.price-card > p,
.price-card strong,
.price-card > small,
.price-card ul { position: relative; z-index: 1; }
.price-card h3 { margin-bottom: 8px; text-align: center; font-size: 20px; letter-spacing: -0.035em; }
.price-card > p { min-height: 42px; margin-bottom: 22px; text-align: center; color: var(--muted); font-size: 13px; line-height: 1.45; }
.price-card strong {
  display: block;
  margin-bottom: 8px;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  letter-spacing: -0.06em;
}
.price-card strong span { font-family: inherit; font-size: 15px; letter-spacing: -0.02em; }
.price-card > small {
  display: block;
  margin-bottom: 22px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  color: #7a685e;
}
.price-card ul { margin: 0; padding: 0; display: grid; gap: 12px; list-style: none; color: #5f4f46; font-size: 13px; }
.price-card li { position: relative; padding-left: 28px; }
.price-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 1px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: rgba(95,168,107,.16);
  box-shadow: inset 0 0 0 1px rgba(95,168,107,.28);
}
.price-card li::after {
  content: "";
  position: absolute;
  left: 5px; top: 5px;
  width: 7px; height: 4px;
  border-left: 2px solid var(--success);
  border-bottom: 2px solid var(--success);
  transform: rotate(-45deg);
}
.price-card.featured {
  border-color: rgba(164, 111, 75, 0.48);
  background: linear-gradient(180deg, rgba(255,252,247,.96), rgba(244,225,207,.88));
  box-shadow: 0 30px 74px rgba(112, 72, 50, 0.17);
}
.badge {
  position: absolute;
  top: -1px;
  left: 50%;
  z-index: 2;
  height: 32px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  transform: translateX(-50%);
  border-radius: 0 0 14px 14px;
  background: linear-gradient(135deg, #2d2019, #704832);
  color: #fff8ef;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.data-band {
  position: relative;
  display: grid;
  grid-template-columns: 132px 1fr;
  align-items: center;
  gap: 34px;
  margin-top: 42px;
  padding: 42px 48px;
  border: 1px solid rgba(255, 248, 239, 0.12);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 14%, rgba(196, 147, 109, 0.26), transparent 30rem),
    linear-gradient(135deg, #211713, #704832 110%);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.data-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}
.shield {
  position: relative;
  z-index: 1;
  width: 108px;
  height: 108px;
  border-radius: 31px;
  background: rgba(255, 248, 239, 0.10);
  border: 1px solid rgba(255, 248, 239, 0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.13);
}
.shield::before {
  content: "";
  position: absolute;
  left: 29px; top: 22px;
  width: 50px; height: 60px;
  clip-path: polygon(50% 0, 90% 17%, 84% 70%, 50% 100%, 16% 70%, 10% 17%);
  background: linear-gradient(135deg, #f8dfc6, #c4936d);
}
.shield::after {
  content: "";
  position: absolute;
  left: 45px; top: 46px;
  width: 23px; height: 13px;
  border-left: 5px solid #211713;
  border-bottom: 5px solid #211713;
  transform: rotate(-45deg);
}
.data-text { position: relative; z-index: 1; }
.data-text h2 { margin-bottom: 23px; color: #fff8ef; font-size: clamp(32px, 4vw, 48px); }
.data-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.data-points span {
  position: relative;
  padding-left: 28px;
  color: #edddce;
  font-size: 14px;
  line-height: 1.5;
}
.data-points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 14px;
  height: 14px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--success), #d8b18f);
}

.control {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1.48fr);
  gap: 34px;
  align-items: center;
  margin-top: 36px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 252, 247, 0.74), rgba(246, 232, 216, 0.54));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.control-copy h2 { margin-bottom: 18px; font-size: clamp(32px, 3.7vw, 48px); line-height: 1.04; }
.control-copy p:not(.eyebrow) { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.dashboard-visual { position: relative; }
.dashboard-visual::before {
  content: "";
  position: absolute;
  inset: 9% 4% -8% 4%;
  border-radius: 36px;
  background: rgba(164, 111, 75, 0.16);
  filter: blur(25px);
  z-index: -1;
}
.dashboard-visual img { width: 100%; filter: drop-shadow(0 24px 44px rgba(77, 49, 31, 0.13)); }

.tenant-proof {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 36px;
  margin-top: 34px;
  padding: 40px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(110deg, rgba(255,252,247,.86), rgba(240,224,208,.68));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.tenant-proof::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -150px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,147,109,.20), transparent 68%);
}
.tenant-copy, .device-preview { position: relative; z-index: 1; }
.title-line { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; }
.title-line h2 { margin: 0; font-size: clamp(32px, 3.8vw, 46px); line-height: 1.05; }
.title-line span {
  min-height: 31px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(95,168,107,.27);
  border-radius: 999px;
  background: rgba(95,168,107,.11);
  color: #4e8757;
  font-size: 12px;
  font-weight: 900;
}
.tenant-copy p { color: var(--muted); line-height: 1.75; font-size: 15px; }
.tenant-points { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.tenant-points span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,252,247,.62);
  color: #6b5a50;
  font-size: 12px;
  font-weight: 750;
}
.device-preview img { width: 100%; filter: drop-shadow(0 25px 52px rgba(77, 49, 31, 0.13)); }

.cta {
  position: relative;
  display: grid;
  grid-template-columns: 104px 1fr auto;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
  margin-bottom: 36px;
  padding: 34px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,252,247,.90), rgba(234,212,191,.76));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -130px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 147, 109, 0.22), transparent 70%);
}
.plane {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 28px;
  background: linear-gradient(135deg, #2b1d17, #704832);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 18px 38px rgba(77,49,31,.17);
}
.plane::before {
  content: "";
  position: absolute;
  inset: 21px;
  background: #fff8ef;
  clip-path: polygon(4% 44%, 94% 8%, 62% 94%, 48% 59%, 4% 44%, 44% 52%, 62% 94%, 55% 55%);
}
.cta > div:not(.plane), .cta-actions { position: relative; z-index: 1; }
.cta h2 { margin-bottom: 8px; font-size: clamp(30px, 3.5vw, 44px); }
.cta p { margin: 0; max-width: 650px; color: var(--muted); line-height: 1.65; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 0 56px;
  color: #705f55;
}
.footer p { margin: 0; max-width: 560px; text-align: right; line-height: 1.55; }

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .65s ease, transform .65s ease;
}
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
}
.js .reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .reveal, .js .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1120px) {
  .section, .nav, .footer { width: min(100% - 40px, 1220px); }
  .nav { top: 10px; }
  .navlinks {
    position: absolute;
    left: 0;
    right: 0;
    top: 84px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255,250,243,.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
  }
  .navlinks.open { display: flex; }
  .navlinks a { padding: 14px 16px; }
  .menu-btn { display: grid; place-items: center; margin-left: auto; }
  .actions { margin-left: 0; }
 .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 46px;
    gap: 34px;
  }
  .hero-copy { max-width: 720px; }
  .hero-visual { width: min(720px, 100%); justify-self: center; margin-top: 0; transform: none; }
  .product-grid, .package-grid { grid-template-columns: repeat(2, 1fr); }
  .data-band { grid-template-columns: 1fr; text-align: center; }
  .shield { margin: auto; }
  .data-points { text-align: left; }
  .control, .tenant-proof { grid-template-columns: 1fr; }
  .control-copy, .tenant-copy { max-width: 720px; }
  .cta { grid-template-columns: 1fr; text-align: center; }
  .plane { margin: auto; }
  .cta p { margin-inline: auto; }
  .cta-actions { justify-content: center; }
  .footer { display: block; text-align: center; }
  .footer .brand { justify-content: center; }
  .footer p { text-align: center; margin: 14px auto 0; }
}

@media (max-width: 720px) {
  .section, .nav, .footer { width: min(100% - 28px, 1220px); }
  .nav { height: 68px; padding-left: 12px; }
  .brand span { width: 38px; height: 38px; border-radius: 13px; font-size: 21px; }
  .brand strong { font-size: 22px; }
  .actions { display: none; }
 .hero { padding: 36px 0 28px; }
  .eyebrow { font-size: 10px; line-height: 1.7; letter-spacing: .15em; }
  .eyebrow i { margin-inline: 5px; }
  h1 { max-width: 100%; font-size: clamp(32px, 8.8vw, 42px); line-height: 1.05; letter-spacing: -0.045em; }
  .lead { font-size: 15.5px; line-height: 1.68; }
  .checks { gap: 8px; }
  .checks span { width: 100%; }
  .status-card { grid-template-columns: 48px 1fr; padding: 18px; border-radius: 21px; }
  .status-icon { width: 48px; height: 48px; border-radius: 16px; }
  .status-icon::before { inset: 12px 15px 10px 16px; }
  .hero-visual { width: calc(100% + 12px); transform: none; }
  .products, .packages { padding-top: 22px; }
  .products h2, .packages h2 { font-size: 38px; }
  .product-grid, .package-grid { grid-template-columns: 1fr; }
  .price-card { min-height: auto; }
  .data-band { padding: 30px 22px; border-radius: 28px; }
  .data-text h2 { font-size: 34px; }
  .data-points { grid-template-columns: 1fr; }
  .control, .tenant-proof, .cta { padding: 28px 20px; border-radius: 28px; }
  .control { gap: 22px; }
  .title-line h2, .control-copy h2 { font-size: 34px; }
  .tenant-proof { gap: 22px; }
  .tenant-points span { width: calc(50% - 5px); justify-content: center; }
  .cta-actions { flex-direction: column; width: 100%; }
  .btn { width: 100%; }
  .footer { padding-bottom: 38px; }
}

/* BridgeKit Data Exchange */
.exchange-teaser {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.84fr) minmax(0, 1.16fr);
  gap: 38px;
  align-items: center;
  margin-top: 12px;
  padding: 40px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 10%, rgba(196, 147, 109, 0.18), transparent 30rem),
    linear-gradient(135deg, rgba(255, 252, 247, 0.90), rgba(246, 232, 216, 0.68));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.exchange-teaser::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(112, 72, 50, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 72, 50, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 72% 42%, #000 0 20%, transparent 72%);
  pointer-events: none;
}

.exchange-copy,
.exchange-visual {
  position: relative;
  z-index: 1;
}

.exchange-copy h2,
.solution-head h2 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.exchange-copy h2 { font-size: clamp(36px, 4.2vw, 58px); }
.solution-head h2 { max-width: 900px; font-size: clamp(34px, 4vw, 54px); }

.exchange-kicker {
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.exchange-copy p:not(.eyebrow):not(.exchange-kicker),
.solution-copy p {
  color: var(--muted-strong);
  font-size: 15.5px;
  line-height: 1.75;
}

.exchange-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.exchange-visual {
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,.90) 0 12%, rgba(234,212,191,.44) 13% 44%, transparent 45%),
    linear-gradient(145deg, rgba(255,252,247,.82), rgba(239,221,202,.64));
  box-shadow: 0 28px 68px rgba(77, 49, 31, 0.12);
  overflow: hidden;
}

.exchange-visual::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px dashed rgba(164,111,75,.23);
  border-radius: 999px;
}

.exchange-visual::after {
  content: "";
  position: absolute;
  inset: 88px;
  border: 1px solid rgba(164,111,75,.15);
  border-radius: 999px;
}

.exchange-diagram {
  position: absolute;
  inset: 0;
}

.exchange-node {
  position: absolute;
  z-index: 2;
  min-width: 154px;
  padding: 16px 17px 15px;
  border: 1px solid rgba(122, 84, 58, 0.15);
  border-radius: 22px;
  background: rgba(255, 252, 247, 0.86);
  box-shadow: 0 18px 38px rgba(77, 49, 31, 0.10);
}

.exchange-node span,
.exchange-feature span {
  display: block;
  position: relative;
  width: 37px;
  height: 37px;
  margin-bottom: 10px;
  border-radius: 14px;
  background: linear-gradient(135deg, #c4936d, #704832);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.24), 0 12px 24px rgba(112,72,50,.16);
}

.exchange-node span::before,
.exchange-node span::after,
.exchange-feature span::before,
.exchange-feature span::after {
  content: "";
  position: absolute;
}

.exchange-node.source span::before,
.exchange-node.target span::before,
.exchange-feature.files span::before {
  left: 10px;
  top: 8px;
  width: 17px;
  height: 21px;
  border-radius: 3px;
  background: #fff8ef;
}

.exchange-node.source span::after,
.exchange-node.target span::after,
.exchange-feature.files span::after {
  left: 13px;
  top: 14px;
  width: 11px;
  height: 2px;
  background: rgba(112,72,50,.46);
  box-shadow: 0 5px 0 rgba(112,72,50,.36);
}

.exchange-node strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 15px;
  letter-spacing: -0.025em;
}

.exchange-node small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.exchange-node.source { left: 34px; top: 40px; }
.exchange-node.target { right: 34px; top: 40px; }
.exchange-node.gateway {
  left: 50%;
  top: 46%;
  min-width: 184px;
  text-align: center;
  transform: translate(-50%, -50%);
  background: rgba(255, 250, 243, 0.92);
}
.exchange-node.gateway span { margin-inline: auto; }
.exchange-node.gateway span::before {
  content: "B";
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff8ef;
  font-size: 21px;
  font-weight: 950;
}
.exchange-node.fallback {
  left: 50%;
  bottom: 30px;
  min-width: 232px;
  transform: translateX(-50%);
}
.exchange-node.fallback span::before,
.exchange-feature.fallback span::before {
  left: 9px;
  top: 18px;
  width: 20px;
  height: 11px;
  border-radius: 12px 12px 5px 5px;
  background: #fff8ef;
}
.exchange-node.fallback span::after,
.exchange-feature.fallback span::after {
  left: 11px;
  top: 9px;
  width: 16px;
  height: 15px;
  border: 4px solid #fff8ef;
  border-bottom: 0;
  border-radius: 11px 11px 0 0;
}

.exchange-line {
  position: absolute;
  z-index: 1;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(164,111,75,.44) 0 9px, transparent 9px 17px);
}
.exchange-line.primary {
  left: 188px;
  right: 188px;
  top: 92px;
}
.exchange-line.fallback-left,
.exchange-line.fallback-right {
  width: 170px;
  top: 248px;
  transform-origin: center;
}
.exchange-line.fallback-left { left: 160px; transform: rotate(28deg); }
.exchange-line.fallback-right { right: 160px; transform: rotate(-28deg); }

.exchange-chip {
  position: absolute;
  z-index: 3;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(122,84,58,.14);
  border-radius: 999px;
  background: rgba(255,252,247,.74);
  color: #6b5142;
  box-shadow: 0 12px 26px rgba(77,49,31,.08);
  font-size: 11px;
  font-weight: 900;
}
.exchange-chip.lock { left: 40px; bottom: 45px; }
.exchange-chip.audit { right: 44px; bottom: 45px; }
.exchange-chip.resume { left: 50%; top: 33px; transform: translateX(-50%); }

.exchange-solution {
  margin-top: 30px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,252,247,.82), rgba(246,232,216,.58));
  box-shadow: var(--shadow-soft);
}

.solution-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 32px;
  align-items: start;
  margin-bottom: 30px;
}

.solution-head .eyebrow,
.solution-head h2 { grid-column: 1 / 2; }
.solution-copy { grid-column: 2 / 3; grid-row: 1 / span 2; }
.solution-copy p:last-child { margin-bottom: 0; }

.exchange-statement {
  grid-column: 1 / -1;
  margin-top: 4px;
  padding: 18px 22px;
  border: 1px solid rgba(255,248,239,.13);
  border-radius: 22px;
  background: linear-gradient(135deg, #261913, #704832);
  color: #fff8ef;
  box-shadow: 0 20px 44px rgba(77,49,31,.13);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2.5vw, 30px);
  line-height: 1.25;
  letter-spacing: -0.045em;
}

.exchange-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.exchange-feature {
  position: relative;
  min-height: 230px;
  padding: 22px 20px 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,252,247,.84), rgba(247,232,216,.66));
  box-shadow: 0 16px 36px rgba(77,49,31,.07);
  overflow: hidden;
}

.exchange-feature::after {
  content: "";
  position: absolute;
  right: -56px;
  top: -62px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,147,109,.17), transparent 69%);
}

.exchange-feature h3,
.exchange-feature p,
.exchange-feature span { position: relative; z-index: 1; }
.exchange-feature h3 {
  margin-bottom: 9px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.18;
  letter-spacing: -0.035em;
}
.exchange-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
}

.exchange-feature.p2p span::before {
  left: 9px;
  top: 17px;
  width: 20px;
  height: 3px;
  border-radius: 99px;
  background: #fff8ef;
  box-shadow: -5px -6px 0 -1px #fff8ef, 5px 6px 0 -1px #fff8ef;
}
.exchange-feature.crypto span::before {
  left: 11px;
  top: 17px;
  width: 16px;
  height: 12px;
  border-radius: 5px;
  background: #fff8ef;
}
.exchange-feature.crypto span::after {
  left: 13px;
  top: 8px;
  width: 12px;
  height: 14px;
  border: 4px solid #fff8ef;
  border-bottom: 0;
  border-radius: 11px 11px 0 0;
}
.exchange-feature.access span::before,
.exchange-feature.workspace span::before {
  left: 9px;
  top: 9px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff8ef;
  box-shadow: 12px 2px 0 rgba(255,248,239,.72);
}
.exchange-feature.access span::after,
.exchange-feature.workspace span::after {
  left: 7px;
  top: 24px;
  width: 25px;
  height: 9px;
  border-radius: 12px 12px 5px 5px;
  background: linear-gradient(90deg, #fff8ef 0 58%, rgba(255,248,239,.72) 58%);
}
.exchange-feature.logs span::before {
  left: 10px;
  top: 9px;
  width: 18px;
  height: 23px;
  border-radius: 4px;
  background: #fff8ef;
}
.exchange-feature.logs span::after {
  left: 14px;
  top: 15px;
  width: 10px;
  height: 2px;
  background: rgba(112,72,50,.42);
  box-shadow: 0 5px 0 rgba(112,72,50,.36), 0 10px 0 rgba(112,72,50,.30);
}
.exchange-feature.resume span::before {
  left: 9px;
  top: 9px;
  width: 18px;
  height: 18px;
  border: 4px solid #fff8ef;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(30deg);
}
.exchange-feature.resume span::after {
  right: 8px;
  top: 8px;
  width: 0;
  height: 0;
  border-left: 7px solid #fff8ef;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transform: rotate(42deg);
}

.page-title {
  margin-bottom: 14px;
  max-width: 680px;
  font-size: clamp(44px, 4.8vw, 70px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.exchange-page-main { padding-bottom: 10px; }
.exchange-page-hero { margin-top: 52px; }
.exchange-page-hero .exchange-copy { max-width: 610px; }
.exchange-page-hero .exchange-visual { min-height: 500px; }
.exchange-statement.compact {
  margin: 22px 0 0;
  padding: 16px 20px;
  font-size: clamp(20px, 2.2vw, 27px);
}

@media (max-width: 1120px) {
  .exchange-teaser,
  .solution-head {
    grid-template-columns: 1fr;
  }
  .solution-head .eyebrow,
  .solution-head h2,
  .solution-copy {
    grid-column: auto;
    grid-row: auto;
  }
  .exchange-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .exchange-visual { min-height: 360px; }
}

@media (max-width: 720px) {
  .exchange-teaser,
  .exchange-solution {
    padding: 28px 20px;
    border-radius: 28px;
  }
  .exchange-actions { flex-direction: column; }
  .exchange-copy h2 { font-size: 35px; }
  .page-title { font-size: clamp(36px, 11vw, 48px); }
  .exchange-page-hero { margin-top: 34px; }
  .solution-head h2 { font-size: 34px; }
  .exchange-visual { min-height: auto; padding: 18px; }
  .exchange-visual::before,
  .exchange-visual::after,
  .exchange-line { display: none; }
  .exchange-diagram {
    position: relative;
    inset: auto;
    display: grid;
    gap: 12px;
  }
  .exchange-node,
  .exchange-node.source,
  .exchange-node.target,
  .exchange-node.gateway,
  .exchange-node.fallback,
  .exchange-chip,
  .exchange-chip.lock,
  .exchange-chip.audit,
  .exchange-chip.resume {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    min-width: 0;
    width: 100%;
    transform: none;
  }
  .exchange-chip { justify-content: center; }
  .exchange-feature-grid { grid-template-columns: 1fr; }
  .exchange-feature { min-height: auto; }
}

/* Final hero rebuild: real HTML/CSS architecture visual instead of the old image/SVG */
.hero {
  grid-template-columns: minmax(0, 0.86fr) minmax(600px, 1.14fr);
  align-items: start;
  gap: clamp(40px, 4.8vw, 74px);
  min-height: 660px;
  padding: 46px 0 70px;
}

.hero-copy {
  position: relative;
  z-index: 8;
  max-width: 585px;
  padding-top: 10px;
}

.hero h1 {
  max-width: 540px;
  margin-bottom: 22px;
  font-size: clamp(44px, 3.55vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.hero .lead {
  max-width: 570px;
  margin-bottom: 26px;
  font-size: 16.4px;
  line-height: 1.72;
}

.hero-visual.architecture-visual {
  position: relative;
  justify-self: end;
  width: min(820px, calc(100% + 112px));
  aspect-ratio: 800 / 660;
  margin-top: -28px;
  transform: translateX(-8px);
}

.architecture-canvas {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 560px;
  isolation: isolate;
}

.architecture-glow {
  position: absolute;
  inset: 3% 2% 0 2%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 49%, rgba(255, 253, 248, 0.96) 0 16%, rgba(246, 226, 207, 0.72) 34%, rgba(196, 147, 109, 0.22) 57%, transparent 76%),
    radial-gradient(circle at 62% 44%, rgba(255,255,255,.76), transparent 44%);
  filter: drop-shadow(0 36px 70px rgba(77, 49, 31, .10));
  z-index: 0;
}

.architecture-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.ring-outer {
  width: 88%;
  aspect-ratio: 1;
  border: 1.5px solid rgba(196, 147, 109, .26);
  background: radial-gradient(circle, transparent 0 48%, rgba(196, 147, 109, .08) 49% 61%, transparent 62%);
}

.ring-band {
  width: 69%;
  aspect-ratio: 1;
  border: clamp(34px, 5.8vw, 62px) solid rgba(196, 147, 109, .12);
  box-shadow: inset 0 0 0 1px rgba(196, 147, 109, .08);
}

.ring-dash {
  width: 55%;
  aspect-ratio: 1;
  border: 1.6px dashed rgba(164, 111, 75, .34);
}

.ring-inner {
  width: 31%;
  aspect-ratio: 1;
  border: 1.4px solid rgba(196, 147, 109, .34);
  box-shadow: 0 0 0 20px rgba(255, 252, 247, .20);
}

.architecture-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: visible;
}

.architecture-lines path {
  fill: none;
  stroke: rgba(164, 111, 75, .66);
  stroke-width: .27;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.architecture-lines circle {
  fill: #fffaf3;
  stroke: rgba(164, 111, 75, .74);
  stroke-width: .25;
  vector-effect: non-scaling-stroke;
}

.architecture-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: clamp(156px, 24.5%, 194px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  display: grid;
  align-content: center;
  justify-items: center;
  border: 1.5px solid rgba(196, 147, 109, .26);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 30%, #fffdf8 0 20%, #fff8ef 58%, #f1ddc8 100%);
  box-shadow:
    0 24px 55px rgba(77, 49, 31, .13),
    inset 0 1px 0 rgba(255,255,255,.94);
}

.architecture-hub::before,
.architecture-hub::after {
  content: "";
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(196, 147, 109, .16);
  border-radius: inherit;
}

.architecture-hub::after {
  inset: -9%;
  border-color: rgba(196, 147, 109, .12);
}

.hub-mark {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff8ef;
  background: linear-gradient(135deg, #c9956f 0%, #704832 100%);
  font-size: 34px;
  font-weight: 950;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 16px 32px rgba(77, 49, 31, .17);
}

.architecture-hub strong {
  position: relative;
  z-index: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1;
  letter-spacing: -0.055em;
  color: var(--ink);
}

.architecture-hub small {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  color: var(--accent-dark);
  font-size: clamp(8px, .9vw, 10px);
  font-weight: 950;
  letter-spacing: .065em;
  text-transform: uppercase;
}

.architecture-card {
  position: absolute;
  z-index: 5;
  width: clamp(218px, 32.5%, 286px);
  min-height: clamp(96px, 11vw, 118px);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(122, 84, 58, .15);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 252, 247, .98), rgba(248, 235, 222, .95));
  box-shadow:
    0 26px 46px rgba(77, 49, 31, .10),
    inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
}

.architecture-card h3 {
  margin: 0 0 7px;
  color: var(--accent-dark);
  font-size: clamp(10px, .92vw, 12px);
  font-weight: 950;
  letter-spacing: .13em;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.architecture-card p {
  margin: 0;
  max-width: 178px;
  color: #4f3d34;
  font-size: clamp(10.5px, .92vw, 12px);
  line-height: 1.44;
}

.card-storage { left: 4%; top: 12.5%; }
.card-calls { right: 1.5%; top: 12.5%; }
.card-emergency { left: 1%; top: 50%; }
.card-tenant { right: 0; top: 50%; }
.card-license {
  left: 50%;
  top: 76%;
  width: clamp(252px, 37%, 318px);
  transform: translateX(-50%);
}

.architecture-icon {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  color: var(--accent);
  flex: 0 0 auto;
}

.icon-storage::before,
.icon-storage::after {
  content: "";
  position: absolute;
  left: 9px;
  width: 30px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b9825d, #704832);
}
.icon-storage::before { top: 8px; box-shadow: 0 13px 0 #9e6c48, 0 26px 0 #8a5c3d; }
.icon-storage::after { top: 17px; height: 28px; border-radius: 4px 4px 12px 12px; opacity: .30; }

.icon-calls::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 15px;
  width: 27px;
  height: 20px;
  border-radius: 7px;
  background: linear-gradient(135deg, #b9825d, #704832);
}
.icon-calls::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 13px;
  width: 18px;
  height: 24px;
  background: linear-gradient(135deg, #b9825d, #704832);
  clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 70%);
}

.icon-emergency::before {
  content: "";
  position: absolute;
  inset: 2px 7px 4px;
  border: 4px solid #9a6847;
  clip-path: polygon(50% 0, 92% 18%, 86% 70%, 50% 100%, 14% 70%, 8% 18%);
  border-radius: 9px;
}
.icon-emergency::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 18px;
  height: 9px;
  border-left: 4px solid #9a6847;
  border-bottom: 4px solid #9a6847;
  transform: rotate(-45deg);
  border-radius: 2px;
}

.icon-tenant::before {
  content: "";
  position: absolute;
  inset: 6px 4px 7px;
  background:
    radial-gradient(circle at 30% 30%, #a46f4b 0 8px, transparent 8.5px),
    radial-gradient(circle at 58% 31%, #b9825d 0 7px, transparent 7.5px),
    radial-gradient(ellipse at 37% 82%, #9a6847 0 20px, transparent 20.5px),
    radial-gradient(ellipse at 69% 82%, #b9825d 0 17px, transparent 17.5px);
}

.icon-license::before {
  content: "";
  position: absolute;
  left: 11px;
  bottom: 5px;
  width: 28px;
  height: 29px;
  border-radius: 8px;
  background: linear-gradient(135deg, #b9825d, #704832);
}
.icon-license::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 2px;
  width: 18px;
  height: 25px;
  border: 5px solid #9a6847;
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 44px;
    gap: 36px;
  }
  .hero-copy { max-width: 720px; padding-top: 0; }
  .hero-visual.architecture-visual {
    justify-self: center;
    width: min(790px, 100%);
    margin-top: 0;
    transform: none;
  }
}

@media (max-width: 720px) {
  .hero h1 {
    font-size: clamp(34px, 9.2vw, 46px);
    line-height: 1.04;
    letter-spacing: -0.052em;
  }
  .hero-visual.architecture-visual {
    width: calc(100% + 20px);
    min-width: 0;
    aspect-ratio: 800 / 760;
  }
  .architecture-canvas { min-height: 590px; }
  .architecture-hub { top: 42%; width: 174px; }
  .architecture-card {
    width: min(45%, 235px);
    grid-template-columns: 40px 1fr;
    gap: 11px;
    padding: 13px;
    border-radius: 20px;
  }
  .architecture-icon { width: 40px; height: 40px; }
  .architecture-card h3 { font-size: 9.5px; letter-spacing: .095em; }
  .architecture-card p { font-size: 10px; line-height: 1.35; }
  .card-storage { left: 0; top: 8%; }
  .card-calls { right: 0; top: 8%; }
  .card-emergency { left: 0; top: 58%; }
  .card-tenant { right: 0; top: 58%; }
  .card-license { top: 78%; width: min(70%, 275px); }
  .architecture-lines { transform: translateY(-7%); }
}

/* Sharp inline icons for final hero cards */
.architecture-icon svg { width: 100%; height: 100%; color: var(--accent); }

/* Keep the architecture halo inside the hero instead of letting it run under the nav */
.ring-outer { width: 78%; }
.ring-band { width: 62%; }
.ring-dash { width: 49%; }
.ring-inner { width: 29%; }
.architecture-glow { inset: 10% 5% 2% 5%; }
