* { box-sizing:border-box; }
:root {
  --amp-green:#42a51f;
  --amp-green-dark:#004f3c;
  --amp-ink:#111827;
  --amp-muted:#64748b;
  --amp-line:#dbe7dd;
  --amp-bg:#f8fff5;
  --amp-card:rgba(255,255,255,.88);
}
html { scroll-behavior:smooth; }
body {
  margin:0;
  min-height:100vh;
  font-family:Arial, system-ui, -apple-system, Segoe UI, sans-serif;
  background:
    radial-gradient(circle at 18% 18%, rgba(66,165,31,.16), transparent 34%),
    radial-gradient(circle at 82% 12%, rgba(0,79,60,.18), transparent 30%),
    linear-gradient(135deg,#f8fff5 0%,#edf8ec 42%,#ffffff 100%);
  color:var(--amp-ink);
}
body::before {
  content:"";
  position:fixed;
  inset:-20%;
  background:
    linear-gradient(115deg, transparent 0 36%, rgba(0,79,60,.06) 36% 38%, transparent 38% 100%),
    linear-gradient(20deg, transparent 0 58%, rgba(66,165,31,.08) 58% 60%, transparent 60% 100%);
  pointer-events:none;
  z-index:-1;
}
a { color:var(--amp-green-dark); }
.site-header {
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter:blur(14px);
  background:rgba(248,255,245,.78);
  border-bottom:1px solid rgba(66,165,31,.18);
}
.header-inner {
  max-width:1180px;
  margin:0 auto;
  padding:18px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}
.brand {
  display:flex;
  align-items:baseline;
  gap:4px;
  font-size:24px;
  font-weight:950;
  letter-spacing:4px;
  text-decoration:none;
}
.brand .amp { color:var(--amp-green); }
.brand .proxy { color:#20282d; }
.nav {
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav a {
  text-decoration:none;
  color:#244436;
  font-weight:850;
  font-size:14px;
}
.nav .login {
  padding:10px 16px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--amp-green-dark),var(--amp-green));
  color:white;
  box-shadow:0 10px 24px rgba(66,165,31,.22);
}
.main {
  max-width:1180px;
  margin:0 auto;
  padding:54px 22px 70px;
}
.hero {
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr);
  gap:34px;
  align-items:center;
  min-height:520px;
}
.hero h1 {
  margin:0;
  max-width:760px;
  font-size:clamp(42px,6vw,76px);
  line-height:.95;
  letter-spacing:-2.5px;
  color:#0f2f25;
}
.hero p {
  max-width:680px;
  color:#36513f;
  font-size:20px;
  line-height:1.55;
  font-weight:700;
}
.tagline {
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--amp-green);
  font-size:13px;
  font-weight:950;
  letter-spacing:2.8px;
  text-transform:uppercase;
  margin-bottom:24px;
}
.tagline::before {
  content:"";
  width:48px;
  height:3px;
  background:var(--amp-green);
  border-radius:999px;
}
.cta-row {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:26px;
}
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 20px;
  border-radius:14px;
  font-weight:950;
  text-decoration:none;
  border:1px solid rgba(66,165,31,.25);
}
.button.primary {
  background:linear-gradient(90deg,var(--amp-green-dark),var(--amp-green));
  color:white;
  box-shadow:0 12px 28px rgba(66,165,31,.24);
}
.button.secondary {
  background:rgba(255,255,255,.78);
  color:#153b2d;
}
.panel, .card {
  background:var(--amp-card);
  border:1px solid rgba(66,165,31,.22);
  border-radius:28px;
  box-shadow:0 28px 80px rgba(0,79,60,.13);
}
.panel { padding:30px; }
.panel h2, .section h2 {
  margin:0 0 12px;
  color:#0f2f25;
  letter-spacing:-.6px;
}
.panel p, .section p, .card p {
  color:#4b6355;
  line-height:1.55;
}
.grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.card {
  padding:22px;
}
.card h3 {
  margin:0 0 8px;
  color:#0f2f25;
}
.section {
  margin-top:50px;
}
.badge {
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  background:#edf8ec;
  border:1px solid #cbdccb;
  color:#31523d;
  font-size:12px;
  font-weight:900;
}
.form {
  display:grid;
  gap:14px;
  max-width:760px;
}
label {
  display:grid;
  gap:7px;
  font-weight:850;
  color:#1f3328;
}
input, select, textarea {
  width:100%;
  padding:13px 14px;
  border:1px solid #cbdccb;
  border-radius:12px;
  font:inherit;
  background:white;
}
textarea { min-height:140px; resize:vertical; }
input:focus, select:focus, textarea:focus {
  outline:none;
  border-color:var(--amp-green);
  box-shadow:0 0 0 4px rgba(66,165,31,.13);
}
.notice {
  padding:14px 16px;
  border-radius:14px;
  background:#f7fbf4;
  border:1px solid #cbdccb;
  color:#334155;
  line-height:1.45;
}
.footer {
  max-width:1180px;
  margin:0 auto;
  padding:34px 22px 52px;
  color:#5e7464;
  font-size:13px;
  font-weight:700;
  border-top:1px solid rgba(66,165,31,.16);
}
.footer a { font-weight:900; }
.migration-box {
  display:grid;
  gap:14px;
  max-width:780px;
}
.guide-result {
  margin-top:10px;
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(66,165,31,.22);
}
.code {
  font-family:ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background:#0f2f25;
  color:#eaffea;
  padding:10px 12px;
  border-radius:10px;
  display:inline-block;
  word-break:break-all;
}
@media (max-width:860px) {
  .header-inner { align-items:flex-start; flex-direction:column; }
  .nav { justify-content:flex-start; gap:12px; }
  .hero { grid-template-columns:1fr; min-height:auto; }
  .grid { grid-template-columns:1fr; }
}

/* WWW-4C2 home refinement overrides */
.hero h1 {
  color: #0b321f;
  font-size: clamp(42px, 4.6vw, 68px);
  line-height: 1.02;
  max-width: 720px;
}

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.tagline::after {
  content: "";
  display: inline-block;
  width: 52px;
  height: 3px;
  background: var(--amp-green);
  border-radius: 999px;
}

.panel .badge {
  display: inline-block;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--amp-green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

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

.card {
  min-height: 170px;
}

@media (max-width: 1120px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

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

  .tagline::after {
    width: 38px;
  }
}
/* END WWW-4C2 home refinement overrides */

/* WWW-5B features hub */
.feature-intro h1 {
  margin: 0 0 18px;
  max-width: 820px;
  color: #0b321f;
  font-size: clamp(42px, 4.5vw, 70px);
  line-height: 1;
}

.feature-intro p {
  max-width: 840px;
  font-size: 18px;
  font-weight: 700;
  color: #36513f;
}

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

.feature-tile {
  background: var(--amp-card);
  border: 1px solid rgba(54, 128, 70, .18);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 24px 70px rgba(45, 85, 62, .10);
}

.feature-tile.feature-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: center;
}

.feature-kicker {
  margin: 0 0 8px;
  color: var(--amp-green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.feature-tile h2 {
  margin: 0 0 12px;
  color: #0f2f25;
  font-size: 26px;
  line-height: 1.08;
}

.feature-tile p {
  margin: 0;
  color: #456354;
  font-size: 16px;
  font-weight: 650;
}

.feature-graphic {
  min-height: 150px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(61, 159, 46, .12), rgba(255, 255, 255, .7)),
    radial-gradient(circle at 80% 20%, rgba(61, 159, 46, .16), transparent 34%);
  border: 1px solid rgba(54, 128, 70, .14);
  position: relative;
  overflow: hidden;
}

.doproxy-graphic,
.fleet-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.doproxy-graphic span,
.fleet-graphic span {
  display: grid;
  place-items: center;
  min-width: 76px;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  color: #0f2f25;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(45, 85, 62, .12);
}

.doproxy-graphic i,
.fleet-graphic i {
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--amp-green);
}

.commissioning-graphic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 26px;
  align-items: end;
}

.commissioning-graphic span {
  display: block;
  height: 88px;
  border-radius: 16px 16px 8px 8px;
  background: #fff;
  border: 2px solid rgba(61, 159, 46, .22);
  box-shadow: inset 0 -18px 0 rgba(61, 159, 46, .12);
}

.load-graphic {
  display: flex;
  align-items: end;
  gap: 16px;
  padding: 26px;
}

.load-graphic span {
  flex: 1;
  min-height: 38px;
  border-radius: 12px 12px 6px 6px;
  background: linear-gradient(180deg, #43a837, #0f7b2b);
  opacity: .86;
}

.solar-graphic .sun {
  position: absolute;
  top: 26px;
  left: 30px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #45a832;
  box-shadow: 0 0 0 14px rgba(69, 168, 50, .14);
}

.solar-graphic .flow {
  position: absolute;
  left: 98px;
  right: 94px;
  top: 72px;
  height: 4px;
  border-radius: 999px;
  background: var(--amp-green);
}

.solar-graphic .battery {
  position: absolute;
  right: 34px;
  top: 48px;
  width: 70px;
  height: 48px;
  border-radius: 12px;
  background: #fff;
  border: 3px solid rgba(61, 159, 46, .38);
}

.brf-graphic {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 26px;
}

.brf-graphic span {
  border-radius: 10px;
  background: rgba(15, 47, 37, .12);
  border: 1px solid rgba(15, 47, 37, .12);
}

.brf-graphic span.active {
  background: linear-gradient(180deg, #49b63d, #168231);
  box-shadow: 0 12px 24px rgba(61, 159, 46, .16);
}

.feature-next {
  margin-bottom: 56px;
}

@media (max-width: 900px) {
  .feature-map,
  .feature-tile.feature-wide {
    grid-template-columns: 1fr;
  }

  .feature-tile.feature-wide {
    grid-column: span 1;
  }

  .fleet-graphic {
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .feature-tile {
    padding: 22px;
  }

  .doproxy-graphic,
  .fleet-graphic {
    flex-direction: column;
  }

  .doproxy-graphic i,
  .fleet-graphic i {
    width: 3px;
    height: 24px;
  }
}
/* END WWW-5B features hub */

/* WWW-5C feature graphics rework */
.feature-graphic {
  min-height: 170px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 20%, rgba(61, 159, 46, .16), transparent 24%),
    linear-gradient(135deg, rgba(248, 255, 247, .95), rgba(224, 241, 228, .72));
  border: 1px solid rgba(54, 128, 70, .16);
  position: relative;
  overflow: hidden;
}

.node,
.fleet-node,
.grid-node,
.api-node,
.site-meter {
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: #0f2f25;
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(45, 85, 62, .14);
  border: 1px solid rgba(54, 128, 70, .15);
  z-index: 3;
}

.flow-line,
.animated-flow,
.v2g-flow {
  position: absolute;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(61,159,46,.12), rgba(61,159,46,1), rgba(61,159,46,.12));
  background-size: 220% 100%;
  animation: ampFlow 2.2s linear infinite;
  z-index: 1;
}

@keyframes ampFlow {
  from { background-position: 220% 0; }
  to { background-position: -220% 0; }
}

/* DoProxy */
.doproxy-graphic {
  display: block;
}

.doproxy-graphic .node {
  position: absolute;
  min-width: 92px;
  min-height: 42px;
  padding: 0 12px;
  font-size: 13px;
}

.charger-node { left: 26px; top: 38px; }
.proxy-node { left: 50%; top: 38px; transform: translateX(-50%); }
.backend-node { right: 24px; top: 38px; }
.amp-node { left: 50%; bottom: 22px; transform: translateX(-50%); color: #fff; background: #147c2e; }

.doproxy-graphic .flow-a {
  left: 118px;
  right: calc(50% + 58px);
  top: 58px;
}

.doproxy-graphic .flow-b {
  left: calc(50% + 58px);
  right: 122px;
  top: 58px;
}

.tap-line {
  position: absolute;
  left: 50%;
  top: 82px;
  bottom: 64px;
  width: 4px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(61,159,46,.18), rgba(61,159,46,1), rgba(61,159,46,.18));
  background-size: 100% 220%;
  animation: ampFlowY 2.4s linear infinite;
}

@keyframes ampFlowY {
  from { background-position: 0 220%; }
  to { background-position: 0 -220%; }
}

/* Commissioning / OCPP commands */
.command-scene {
  display: block;
}

.cloud-node {
  position: absolute;
  left: 22px;
  top: 24px;
  min-width: 96px;
  min-height: 42px;
}

.command-stack {
  position: absolute;
  left: 24px;
  bottom: 22px;
  display: grid;
  gap: 8px;
  z-index: 4;
}

.command-stack span {
  display: block;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #0f2f25;
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(45,85,62,.10);
}

.command-flow {
  left: 128px;
  right: 98px;
  top: 84px;
}

.charger-shape {
  position: absolute;
  right: 28px;
  top: 38px;
  width: 70px;
  height: 98px;
  border-radius: 16px 16px 10px 10px;
  background: #fff;
  border: 2px solid rgba(61,159,46,.26);
  box-shadow: 0 14px 28px rgba(45,85,62,.12);
  z-index: 3;
}

.charger-shape i {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 14px;
  height: 30px;
  border-radius: 8px;
  background: rgba(61,159,46,.14);
}

.charger-shape strong {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  text-align: center;
  color: #147c2e;
  font-size: 12px;
}

/* Load balancing */
.energy-scene {
  padding: 26px;
}

.site-meter {
  position: absolute;
  left: 26px;
  top: 24px;
  width: 62px;
  height: 62px;
  background: #147c2e;
  color: #fff;
}

.load-bus {
  position: absolute;
  left: 92px;
  right: 28px;
  top: 54px;
  height: 5px;
  border-radius: 999px;
  background: var(--amp-green);
  box-shadow: 0 0 0 8px rgba(61,159,46,.08);
}

.charger-row {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: end;
}

.charger-row span {
  display: grid;
  place-items: end center;
  height: var(--h);
  min-height: 44px;
  padding-bottom: 8px;
  border-radius: 12px 12px 7px 7px;
  background: linear-gradient(180deg, #43a837, #0f7b2b);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.limit-line {
  position: absolute;
  right: 24px;
  top: 20px;
  color: #147c2e;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Solar / API / charger / vehicle */
.solar-flow-scene {
  min-height: 190px;
}

.solar-panel {
  position: absolute;
  left: 24px;
  top: 28px;
  width: 92px;
  height: 70px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 5px;
  padding: 7px;
  border-radius: 14px;
  background: #123c2b;
  transform: skewX(-8deg);
  z-index: 3;
}

.solar-panel span {
  border-radius: 5px;
  background: linear-gradient(135deg, #8ee27e, #e8fff0);
}

.api-node {
  position: absolute;
  left: 142px;
  top: 42px;
  width: 58px;
  height: 40px;
}

.amp-energy-node {
  position: absolute;
  left: 224px;
  top: 42px;
  width: 90px;
  height: 40px;
  background: #147c2e;
  color: #fff;
}

.solar-charger {
  right: 112px;
  top: 38px;
  width: 54px;
  height: 76px;
}

.vehicle-shape {
  position: absolute;
  right: 24px;
  bottom: 42px;
  width: 82px;
  height: 34px;
  border-radius: 18px 22px 10px 10px;
  background: #fff;
  border: 2px solid rgba(61,159,46,.26);
  box-shadow: 0 14px 28px rgba(45,85,62,.12);
  z-index: 3;
}

.vehicle-shape::before,
.vehicle-shape::after {
  content: "";
  position: absolute;
  bottom: -8px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #0f2f25;
}

.vehicle-shape::before { left: 14px; }
.vehicle-shape::after { right: 14px; }

.solar-flow-a { left: 116px; top: 62px; width: 28px; }
.solar-flow-b { left: 200px; top: 62px; width: 24px; }
.solar-flow-c { right: 78px; top: 88px; width: 68px; transform: rotate(28deg); transform-origin: right center; }

/* BRF usage */
.brf-usage-scene {
  padding: 24px;
}

.brf-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 7px;
  height: 82px;
}

.brf-grid span {
  border-radius: 8px;
  background: rgba(15, 47, 37, .11);
  border: 1px solid rgba(15, 47, 37, .10);
}

.brf-grid span.active {
  background: linear-gradient(180deg, #49b63d, #168231);
  box-shadow: 0 10px 22px rgba(61,159,46,.16);
}

.usage-label,
.billing-label {
  position: absolute;
  bottom: 24px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  color: #0f2f25;
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(45,85,62,.10);
}

.usage-label { left: 24px; }
.billing-label { right: 24px; color: #147c2e; }

/* Fleet / V2G */
.v2g-scene {
  min-height: 190px;
}

.fleet-node.control {
  position: absolute;
  left: 24px;
  top: 28px;
  min-width: 112px;
  min-height: 42px;
  background: #147c2e;
  color: #fff;
}

.fleet-cars {
  position: absolute;
  left: 168px;
  right: 120px;
  top: 34px;
  display: flex;
  justify-content: space-between;
  z-index: 3;
}

.fleet-cars span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 34px;
  border-radius: 18px 22px 10px 10px;
  background: #fff;
  color: #0f2f25;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(45,85,62,.12);
}

.grid-node {
  position: absolute;
  right: 24px;
  bottom: 28px;
  width: 82px;
  height: 44px;
}

.v2g-flow {
  height: 4px;
}

.v2g-a { left: 136px; right: 120px; top: 52px; }
.v2g-b { right: 78px; top: 76px; width: 92px; transform: rotate(34deg); }
.v2g-c { left: 170px; right: 116px; bottom: 52px; animation-direction: reverse; }

/* Remove older simplified graphic assumptions where possible */
.doproxy-graphic i,
.fleet-graphic i {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .flow-line,
  .animated-flow,
  .v2g-flow,
  .tap-line {
    animation: none;
  }
}

@media (max-width: 900px) {
  .doproxy-graphic .node {
    min-width: 76px;
    font-size: 11px;
  }

  .backend-node {
    right: 14px;
  }

  .charger-node {
    left: 14px;
  }

  .command-stack span {
    font-size: 10px;
  }

  .fleet-cars {
    left: 150px;
    right: 96px;
  }
}

@media (max-width: 560px) {
  .feature-graphic {
    min-height: 220px;
  }

  .doproxy-graphic .node,
  .cloud-node,
  .api-node,
  .amp-energy-node,
  .fleet-node.control,
  .grid-node {
    transform: none;
  }

  .doproxy-graphic {
    display: grid;
    place-items: center;
  }

  .doproxy-graphic .node {
    position: static;
    margin: 5px 0;
  }

  .doproxy-graphic .flow-line,
  .tap-line {
    display: none;
  }

  .command-flow {
    left: 44px;
    right: 44px;
    top: 108px;
  }

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

  .solar-panel {
    left: 20px;
  }

  .api-node {
    left: 128px;
  }

  .amp-energy-node {
    left: 196px;
  }

  .solar-charger {
    right: 78px;
  }

  .brf-grid {
    grid-template-columns: repeat(5, 1fr);
    height: 118px;
  }

  .fleet-cars {
    left: 24px;
    right: 24px;
    top: 90px;
  }
}
/* END WWW-5C feature graphics rework */

/* WWW-5D calmer feature graphics */
.flow-line,
.animated-flow,
.v2g-flow {
  animation-duration: 4.8s;
  opacity: .78;
}

.tap-line {
  animation-duration: 5.2s;
  opacity: .70;
}

.feature-graphic {
  background:
    radial-gradient(circle at 20% 20%, rgba(61, 159, 46, .10), transparent 25%),
    linear-gradient(135deg, rgba(250, 255, 249, .96), rgba(231, 244, 234, .70));
}

/* Reduce pill dominance across diagrams */
.node,
.fleet-node,
.grid-node,
.api-node,
.site-meter {
  box-shadow: 0 8px 18px rgba(45, 85, 62, .08);
  border: 1px solid rgba(54, 128, 70, .20);
  font-size: 12px;
  letter-spacing: -.01em;
}

/* DoProxy: clearer spacing and less smearing */
.doproxy-graphic .node {
  min-width: 84px;
  min-height: 36px;
  padding: 0 10px;
  font-size: 11px;
}

.doproxy-graphic .backend-node {
  min-width: 118px;
}

.charger-node {
  left: 22px;
  top: 34px;
}

.proxy-node {
  top: 34px;
}

.backend-node {
  right: 18px;
  top: 34px;
}

.amp-node {
  min-width: 112px;
  bottom: 24px;
}

.doproxy-graphic .flow-a {
  left: 108px;
  right: calc(50% + 52px);
  top: 52px;
}

.doproxy-graphic .flow-b {
  left: calc(50% + 52px);
  right: 140px;
  top: 52px;
}

/* Commissioning: make OCPP commands look like command rows, not floating pills */
.command-stack {
  left: 24px;
  bottom: 24px;
  width: 150px;
}

.command-stack span {
  border-radius: 8px;
  padding: 6px 9px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(54, 128, 70, .14);
  box-shadow: none;
  font-size: 10px;
  text-align: left;
}

.cloud-node {
  min-width: 92px;
  min-height: 36px;
  opacity: .88;
}

.command-flow {
  left: 186px;
  right: 92px;
  top: 86px;
}

.charger-shape {
  right: 24px;
}

/* Solar: make API/AmpProxy labels calmer */
.api-node {
  width: 50px;
  height: 34px;
  font-size: 11px;
}

.amp-energy-node {
  width: 82px;
  height: 34px;
  font-size: 11px;
}

.solar-flow-a,
.solar-flow-b,
.solar-flow-c {
  height: 3px;
}

/* BRF: reduce label weight */
.usage-label,
.billing-label {
  padding: 7px 10px;
  font-size: 11px;
  box-shadow: 0 6px 14px rgba(45,85,62,.08);
}

/* V2G: reduce pills and separate labels */
.fleet-node.control {
  min-width: 104px;
  min-height: 36px;
  font-size: 11px;
}

.fleet-cars {
  left: 170px;
  right: 128px;
  top: 38px;
}

.fleet-cars span {
  width: 48px;
  height: 30px;
  font-size: 11px;
  box-shadow: 0 8px 18px rgba(45,85,62,.08);
}

.grid-node {
  width: 72px;
  height: 38px;
  font-size: 11px;
}

.v2g-a {
  left: 132px;
  right: 136px;
}

.v2g-b {
  right: 74px;
  width: 78px;
}

.v2g-c {
  left: 184px;
  right: 122px;
}

/* Make diagram labels less visually competitive with actual content */
.feature-graphic strong,
.feature-graphic span,
.feature-graphic div {
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 900px) {
  .doproxy-graphic .backend-node {
    min-width: 96px;
    font-size: 10px;
  }

  .doproxy-graphic .node {
    min-width: 72px;
    font-size: 10px;
  }

  .doproxy-graphic .flow-b {
    right: 108px;
  }

  .command-stack {
    width: 132px;
  }

  .command-flow {
    left: 160px;
  }
}
/* END WWW-5D calmer feature graphics */

/* WWW-5E SVG feature illustrations */
.svg-graphic {
  min-height: 210px;
  padding: 0;
  background: transparent;
  border: 0;
}

.feature-svg {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 210px;
}

.svg-panel {
  fill: rgba(250, 255, 249, .82);
  stroke: rgba(54, 128, 70, .16);
  stroke-width: 2;
}

.svg-flow,
.subtle-stroke {
  fill: none;
  stroke: url(#flowGreenA);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 16 18;
  animation: svgFlow 5.6s linear infinite;
}

.subtle-stroke {
  stroke: #3d9f2e;
  opacity: .42;
}

.reverse-flow {
  animation-direction: reverse;
}

.delay-1 { animation-delay: -.8s; }
.delay-2 { animation-delay: -1.6s; }
.delay-3 { animation-delay: -2.4s; }

@keyframes svgFlow {
  from { stroke-dashoffset: 120; }
  to { stroke-dashoffset: 0; }
}

.charger-icon rect,
.server-icon rect,
.terminal-window rect,
.vehicle-icon path,
.fleet-control rect {
  fill: #ffffff;
  stroke: rgba(54, 128, 70, .22);
  stroke-width: 3;
}

.charger-icon path,
.terminal-window path,
.fleet-control path,
.grid-tower path {
  fill: none;
  stroke: #0f7b2b;
  stroke-width: 4;
  stroke-linecap: round;
}

.server-icon circle,
.terminal-window circle {
  fill: #3d9f2e;
}

.amp-core circle,
.meter-core,
.api-core {
  fill: #137b2d;
  filter: drop-shadow(0 12px 18px rgba(45, 85, 62, .16));
}

.amp-core path {
  fill: none;
  stroke: #ffffff;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.amp-core.small path {
  stroke-width: 4;
}

.svg-label {
  fill: #456354;
  font-size: 15px;
  font-weight: 800;
}

.svg-label.strong {
  fill: #0f2f25;
  font-size: 17px;
  font-weight: 950;
}

.meter-text {
  fill: #ffffff;
  font-size: 20px;
  font-weight: 950;
  text-anchor: middle;
}

.limit-path {
  fill: none;
  stroke: rgba(15, 47, 37, .18);
  stroke-width: 3;
  stroke-linecap: round;
}

.load-bars rect {
  fill: url(#flowGreenA);
  filter: drop-shadow(0 10px 14px rgba(45, 85, 62, .12));
}

.solar-array rect {
  fill: #0f2f25;
  stroke: rgba(54, 128, 70, .20);
  stroke-width: 3;
}

.solar-array path {
  fill: none;
  stroke: #a8ed9f;
  stroke-width: 3;
}

.vehicle-icon path {
  fill: #ffffff;
}

.vehicle-icon circle {
  fill: #0f2f25;
}

.small-charger rect {
  stroke-width: 3;
}

.outlet-grid rect {
  fill: rgba(15, 47, 37, .10);
  stroke: rgba(15, 47, 37, .12);
  stroke-width: 2;
}

.outlet-grid rect.active {
  fill: #1c9337;
}

.usage-curve {
  fill: none;
  stroke: #3d9f2e;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 12 14;
  animation: svgFlow 6.2s linear infinite;
}

.grid-tower path {
  stroke: #0f2f25;
}

.fleet-vehicles .vehicle-icon path {
  fill: #ffffff;
}

.fleet-vehicles .vehicle-icon circle {
  fill: #137b2d;
}

@media (prefers-reduced-motion: reduce) {
  .svg-flow,
  .subtle-stroke,
  .usage-curve {
    animation: none;
  }
}

@media (max-width: 560px) {
  .svg-graphic,
  .feature-svg {
    min-height: 230px;
  }

  .svg-label {
    font-size: 13px;
  }
}
/* END WWW-5E SVG feature illustrations */


/* WWW-6A promoted features product mockups */
.feature-page .feature-intro h1 {
  margin: 0 0 18px;
  max-width: 860px;
  color: #0b321f;
  font-size: clamp(42px, 4.5vw, 70px);
  line-height: 1;
}

.feature-page .feature-intro p {
  max-width: 860px;
  font-size: 18px;
  font-weight: 700;
  color: #36513f;
}

.e-showcase {
  display: grid;
  gap: 28px;
  margin: 26px 0 66px;
}

.e-hero-card,
.e-card {
  background: rgba(255,255,255,.93);
  border: 1px solid rgba(54,128,70,.16);
  border-radius: 34px;
  padding: 28px;
  box-shadow: 0 30px 90px rgba(45, 85, 62, .11);
}

.e-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(340px, .78fr);
  gap: 30px;
  align-items: center;
}

.e-hero-card.reverse {
  grid-template-columns: minmax(340px, .78fr) minmax(0, 1.22fr);
}

.e-hero-card.reverse .e-mockup {
  order: 2;
}

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

.e-card {
  display: grid;
  gap: 22px;
}

.e-copy h2,
.e-copy h3 {
  margin: 0 0 12px;
  color: #0f2f25;
  letter-spacing: -.045em;
  line-height: 1.03;
}

.e-copy h2 {
  font-size: clamp(34px, 3.8vw, 54px);
}

.e-copy h3 {
  font-size: clamp(28px, 3vw, 40px);
}

.e-copy p {
  margin: 0;
  color: #486454;
  font-size: 16px;
  font-weight: 700;
}

.e-copy.small p {
  font-size: 15px;
}

.e-mockup {
  min-height: 340px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 12%, rgba(61,159,46,.14), transparent 30%),
    linear-gradient(135deg, rgba(247,255,247,.97), rgba(227,242,231,.80));
  border: 1px solid rgba(54,128,70,.14);
  padding: 22px;
  overflow: hidden;
}

.mock-window,
.mini-window {
  height: 100%;
  min-height: 296px;
  border-radius: 24px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(54,128,70,.15);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 20px 60px rgba(45,85,62,.09);
  overflow: hidden;
}

.mock-topbar,
.mini-top {
  min-height: 58px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(54,128,70,.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mock-brand,
.mini-top span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0f2f25;
  font-weight: 950;
}

.ap-logo-mark {
  display: inline-grid;
  place-items: center;
  width: 60px;
  height: 34px;
  flex: 0 0 auto;
}

.ap-logo-mark svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.ap-logo-mark .ap-a {
  fill: #00513f;
}

.ap-logo-mark .ap-p {
  fill: #3fa62b;
}

.mock-brand .ap-logo-mark {
  width: 49px;
  height: 27px;
}

.ap-node .ap-logo-mark,
.ap-control .ap-logo-mark {
  width: 66px;
  height: 36px;
}

.route-node.ap .route-ap-logo .ap-logo-mark {
  width: 70px;
  height: 38px;
}

.mini-top .ap-logo-mark {
  width: 49px;
  height: 27px;
}

.mock-pill,
.mini-top b {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(17,127,47,.10);
  color: #117f2f;
  font-size: 12px;
  font-weight: 950;
}

.mock-pill.live {
  box-shadow: 0 0 0 8px rgba(17,127,47,.055);
}

.mock-layout {
  display: grid;
  grid-template-columns: 76px 1fr;
  min-height: 238px;
}

.mock-sidebar {
  padding: 24px 18px;
  display: grid;
  align-content: start;
  gap: 16px;
  background: rgba(244,251,244,.72);
  border-right: 1px solid rgba(54,128,70,.10);
}

.mock-sidebar span {
  height: 12px;
  border-radius: 999px;
  background: rgba(15,47,37,.16);
}

.mock-sidebar span:first-child {
  background: #117f2f;
}

.mock-content {
  padding: 24px;
}

.mock-header-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.mock-kicker {
  margin: 0 0 6px;
  color: #117f2f;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.mock-header-row h4,
.fleet-side h4 {
  margin: 0;
  color: #0f2f25;
  font-size: 25px;
  letter-spacing: -.035em;
}

.mock-status {
  align-self: start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(17,127,47,.10);
  color: #117f2f;
  font-size: 12px;
  font-weight: 950;
}

.mock-route {
  margin: 26px 0 20px;
  display: grid;
  grid-template-columns: 1fr 42px 1fr 42px 1fr;
  align-items: center;
  gap: 10px;
}

.route-node {
  min-height: 86px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(247,255,247,.94);
  border: 1px solid rgba(54,128,70,.13);
}

.route-node strong {
  display: block;
  color: #0f2f25;
  font-size: 15px;
}

.route-node small {
  display: block;
  margin-top: 7px;
  color: #5d7465;
  font-weight: 700;
}

.route-node.ap,
.route-node.active {
  background: #117f2f;
}

.route-node.ap strong,
.route-node.ap small,
.route-node.active strong,
.route-node.active small {
  color: #fff;
}

.route-ap-logo {
  display: block;
  margin: 0 0 8px;
}

.route-node.ap .route-ap-logo .ap-logo-mark .ap-a,
.route-node.ap .route-ap-logo .ap-logo-mark .ap-p {
  fill: #fff;
}

.route-flow,
.solar-flow {
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(17,127,47,.12), #117f2f, rgba(17,127,47,.12));
  background-size: 220% 100%;
  animation: productFlow 7s linear infinite;
}

.route-flow.muted {
  opacity: .55;
}

@keyframes productFlow {
  from { background-position: 220% 0; }
  to { background-position: -220% 0; }
}

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

.mock-data-grid div,
.fleet-metric {
  padding: 14px;
  border-radius: 18px;
  background: rgba(247,255,247,.92);
  border: 1px solid rgba(54,128,70,.12);
}

.mock-data-grid b,
.fleet-metric b {
  display: block;
  color: #0f2f25;
  font-size: 24px;
}

.mock-data-grid span,
.fleet-metric span {
  display: block;
  color: #5d7465;
  font-size: 12px;
  font-weight: 800;
}

.commission-panel,
.load-panel,
.solar-product,
.brf-product {
  padding: 24px;
}

.commission-panel {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items: stretch;
}

.command-list {
  display: grid;
  gap: 12px;
}

.command-row {
  min-height: 54px;
  padding: 0 14px;
  border-radius: 16px;
  background: rgba(247,255,247,.94);
  border: 1px solid rgba(54,128,70,.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.command-row span {
  color: #0f2f25;
  font-weight: 900;
}

.command-row b {
  color: #117f2f;
  font-size: 12px;
}

.command-row.wait b {
  color: #6f7f54;
}

.charger-card {
  border-radius: 22px;
  background: rgba(247,255,247,.94);
  border: 1px solid rgba(54,128,70,.12);
  display: grid;
  place-items: center;
  text-align: center;
  color: #0f2f25;
  font-weight: 950;
  padding: 18px;
  gap: 8px;
}

.charger-card small {
  display: block;
  color: #5d7465;
  font-weight: 800;
}

.charger-visual {
  position: relative;
  width: 54px;
  height: 94px;
  margin-bottom: 10px;
  border-radius: 16px 16px 12px 12px;
  background: linear-gradient(180deg, #fff, #f2faf3);
  border: 3px solid rgba(17,127,47,.28);
  box-shadow: 0 14px 26px rgba(45,85,62,.10);
}

.charger-visual .screen {
  position: absolute;
  left: 13px;
  right: 13px;
  top: 13px;
  height: 28px;
  border-radius: 8px;
  background: rgba(17,127,47,.12);
  border: 1px solid rgba(17,127,47,.20);
}

.charger-visual .socket {
  position: absolute;
  left: 21px;
  top: 52px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #117f2f;
  box-shadow: 0 18px 0 #117f2f;
}

.charger-visual .cable {
  position: absolute;
  left: 26px;
  bottom: 13px;
  width: 3px;
  height: 22px;
  border-radius: 999px;
  background: #0f2f25;
}

.capacity-line {
  height: 12px;
  border-radius: 999px;
  background: rgba(15,47,37,.12);
  overflow: hidden;
}

.capacity-line i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #117f2f;
}

.load-bars {
  height: 150px;
  margin: 26px 0 16px;
  display: flex;
  align-items: end;
  gap: 18px;
}

.load-bars span {
  flex: 1;
  border-radius: 16px 16px 8px 8px;
  background: linear-gradient(180deg, #33ad42, #117f2f);
  display: grid;
  place-items: end center;
  padding-bottom: 10px;
  color: #fff;
  font-weight: 950;
}

.load-footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: #5d7465;
  font-size: 13px;
  font-weight: 850;
}

.fleet-dashboard {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 22px;
  padding: 24px;
}

.fleet-map {
  position: relative;
  min-height: 246px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 50%, rgba(17,127,47,.06), transparent 34%),
    rgba(247,255,247,.92);
  border: 1px solid rgba(54,128,70,.12);
  overflow: hidden;
}

.parking-grid {
  position: absolute;
  inset: 24px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  opacity: .42;
}

.parking-grid i {
  border-radius: 10px;
  border: 2px solid rgba(15,47,37,.16);
}

.fleet-car {
  position: absolute;
  width: 72px;
  height: 36px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(17,127,47,.08) 12% 16%, transparent 16% 100%),
    #fff;
  border: 2px solid rgba(54,128,70,.24);
  box-shadow: 0 10px 22px rgba(45,85,62,.10);
}

.fleet-car::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 7px;
  height: 10px;
  border-radius: 6px;
  background: rgba(17,127,47,.10);
}

.fleet-car::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 12px;
  width: 7px;
  height: 12px;
  border-radius: 3px;
  background: #117f2f;
  box-shadow: 8px 0 0 rgba(17,127,47,.22);
}

.fleet-car.c1 { left: 70px; top: 66px; transform: rotate(-4deg); }
.fleet-car.c2 { left: 170px; top: 142px; transform: rotate(3deg); }
.fleet-car.c3 { right: 92px; top: 74px; transform: rotate(4deg); }
.fleet-car.c4 { right: 58px; bottom: 54px; transform: rotate(-3deg); }

.ap-control {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 86px;
  height: 74px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(54,128,70,.16);
  box-shadow: 0 16px 34px rgba(45,85,62,.12);
}

.energy-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 220px;
  height: 120px;
  transform: translate(-50%, -50%) rotate(-10deg);
  border: 2px dashed rgba(17,127,47,.30);
  border-radius: 50%;
  animation: orbitPulse 7s ease-in-out infinite;
}

.energy-orbit.o2 {
  width: 300px;
  height: 164px;
  transform: translate(-50%, -50%) rotate(18deg);
  animation-delay: -2s;
  border-color: rgba(17,127,47,.22);
}

@keyframes orbitPulse {
  0%, 100% { opacity: .32; }
  50% { opacity: .72; }
}

.fleet-side {
  display: grid;
  align-content: start;
  gap: 12px;
}

.fleet-side h4 {
  font-size: 26px;
  margin-bottom: 8px;
}

.solar-product,
.brf-product {
  min-height: 238px;
  display: grid;
  align-items: center;
}

.solar-product {
  position: relative;
  grid-template-columns: 1.05fr 54px 76px 54px 76px;
  gap: 12px;
}

.solar-label {
  position: absolute;
  left: 24px;
  top: 24px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(17,127,47,.10);
  color: #117f2f;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(45,85,62,.07);
}

.solar-card {
  position: relative;
  height: 126px;
  margin-top: 42px;
  border-radius: 24px;
  transform: perspective(420px) rotateX(8deg) rotateZ(-1deg);
  box-shadow: 0 18px 34px rgba(15,47,37,.14);
  background: #0f2f25;
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 8px;
}

.solar-card::before {
  content: none !important;
  display: none !important;
}

.solar-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.solar-card span {
  border-radius: 8px;
  background: linear-gradient(135deg, #8ee27e, #e9fff0);
}

.ap-node {
  width: 70px;
  height: 70px;
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(54,128,70,.16);
  box-shadow: 0 16px 34px rgba(45,85,62,.12);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 950;
}

.charge-device {
  position: relative;
  width: 56px;
  height: 96px;
  border-radius: 16px 16px 12px 12px;
  border: 3px solid rgba(17,127,47,.30);
  background: linear-gradient(180deg, #fff, #f2faf3);
  box-shadow: 0 14px 26px rgba(45,85,62,.10);
}

.charge-device .screen {
  position: absolute;
  left: 13px;
  right: 13px;
  top: 13px;
  height: 30px;
  border-radius: 8px;
  background: rgba(17,127,47,.12);
  border: 1px solid rgba(17,127,47,.20);
}

.charge-device .socket {
  position: absolute;
  left: 23px;
  top: 58px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #117f2f;
}

.brf-product {
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
}

.outlet-matrix {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 9px;
}

.outlet-matrix i {
  aspect-ratio: 1;
  border-radius: 10px;
  background: rgba(15,47,37,.10);
  border: 1px solid rgba(15,47,37,.10);
}

.outlet-matrix i.active {
  background: #117f2f;
}

.brf-summary {
  padding: 22px;
  border-radius: 22px;
  background: rgba(247,255,247,.94);
  border: 1px solid rgba(54,128,70,.12);
}

.brf-summary b {
  display: block;
  color: #0f2f25;
  font-size: 42px;
  line-height: 1;
}

.brf-summary span {
  color: #5d7465;
  font-weight: 850;
}

@media (prefers-reduced-motion: reduce) {
  .route-flow,
  .solar-flow,
  .energy-orbit {
    animation: none;
  }
}

@media (max-width: 980px) {
  .e-hero-card,
  .e-hero-card.reverse,
  .e-grid,
  .fleet-dashboard {
    grid-template-columns: 1fr;
  }

  .e-hero-card.reverse .e-mockup {
    order: 0;
  }
}

@media (max-width: 620px) {
  .e-hero-card,
  .e-card {
    padding: 20px;
  }

  .mock-route,
  .commission-panel,
  .solar-product,
  .brf-product,
  .mock-data-grid {
    grid-template-columns: 1fr;
  }

  .route-flow,
  .solar-flow {
    height: 32px;
    width: 5px;
    justify-self: center;
  }

  .solar-label {
    position: static;
    justify-self: center;
    margin-bottom: -4px;
  }

  .solar-card {
    margin-top: 0;
  }

  .ap-node,
  .charge-device {
    justify-self: center;
  }
}
/* END WWW-6A promoted features product mockups */

/* AmpProxy migration visual guide */
.visual-guide {
  margin-top: 6px;
}

.visual-guide > h3 {
  margin-bottom: 14px;
}

.visual-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.visual-step {
  border: 1px solid rgba(15,47,37,.12);
  border-radius: 22px;
  padding: 18px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 47, 37, .07);
}

.visual-step-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.visual-step-head span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #e7f4dd;
  color: #0f2f25;
  font-weight: 950;
}

.visual-step-head h4 {
  margin: 0;
  color: #0f2f25;
  font-size: 17px;
}

.visual-step p {
  margin: 0 0 14px;
  color: #4c6658;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.visual-step-image {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(15,47,37,.12);
  border-radius: 16px;
  overflow: hidden;
  background: #f6faf4;
  cursor: zoom-in;
}

.visual-step-image img {
  display: block;
  width: 100%;
  height: auto;
}

.guide-image-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
  background: rgba(6, 20, 15, .78);
}

.guide-image-overlay img {
  max-width: min(1200px, 94vw);
  max-height: 90vh;
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0,0,0,.38);
  background: #ffffff;
}

.guide-image-close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #0f2f25;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 900px) {
  .visual-guide-grid {
    grid-template-columns: 1fr;
  }

  .guide-image-overlay {
    padding: 16px;
  }
}

/* WWW-STATUS-PAGE-PATCH-1 */
.status-page {
  padding-top: 46px;
}

.status-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 34px;
  align-items: stretch;
}

.status-hero-copy h1 {
  margin: 0 0 18px;
  max-width: 820px;
  color: #0b321f;
  font-size: clamp(42px, 4.5vw, 70px);
  line-height: 1;
  letter-spacing: -2px;
}

.status-hero-copy p,
.status-summary p,
.status-notes p {
  max-width: 780px;
  color: #36513f;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 700;
}

.status-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 260px;
}

.status-summary h2 {
  margin-top: 18px;
  font-size: 30px;
  line-height: 1.08;
}

.status-indicator {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid rgba(66, 165, 31, .24);
  background: rgba(237, 248, 236, .9);
  color: #1c6b31;
}

.status-indicator::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--amp-green);
  box-shadow: 0 0 0 5px rgba(66, 165, 31, .13);
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.status-card {
  min-height: 230px;
  padding: 22px;
  background: var(--amp-card);
  border: 1px solid rgba(66, 165, 31, .22);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0, 79, 60, .11);
}

.status-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.status-card h3 {
  margin: 0 0 10px;
  color: #0f2f25;
}

.status-card p {
  color: #4b6355;
  line-height: 1.55;
}

.status-card a {
  display: inline-flex;
  margin-top: 6px;
  font-weight: 950;
  text-decoration: none;
}

.status-dot {
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: #cbd5c8;
  box-shadow: 0 0 0 6px rgba(100, 116, 139, .10);
}

.status-dot.ok {
  background: var(--amp-green);
  box-shadow: 0 0 0 6px rgba(66, 165, 31, .13);
}

.status-dot.neutral {
  background: #94a3b8;
}

.status-notes {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr);
  gap: 28px;
  align-items: start;
}

.status-notes h2 {
  margin: 0 0 14px;
  color: #0b321f;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.05;
  letter-spacing: -1.2px;
}

.status-note-list {
  display: grid;
  gap: 12px;
}

@media (max-width: 1120px) {
  .status-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .status-hero,
  .status-notes {
    grid-template-columns: 1fr;
  }

  .status-summary {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .status-grid {
    grid-template-columns: 1fr;
  }
}
/* END WWW-STATUS-PAGE-PATCH-1 */

/* WWW-STATUS-PAGE-PATCH-2 */
.status-metric {
  display: block;
  margin-top: 14px;
  color: #0b321f;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -1px;
}

.brand-uptime-card {
  min-height: 260px;
}

.brand-uptime-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.brand-uptime-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(237, 248, 236, .72);
  border: 1px solid rgba(66, 165, 31, .16);
}

.brand-uptime-list span {
  color: #244436;
  font-weight: 850;
  font-size: 13px;
}

.brand-uptime-list strong {
  color: #0b321f;
  font-size: 14px;
}
/* END WWW-STATUS-PAGE-PATCH-2 */

/* WWW-STATUS-PAGE-PATCH-4 */
.brand-uptime-card {
  min-height: 330px;
}

.brand-uptime-list div {
  min-height: 34px;
}

@media (max-width: 1120px) {
  .brand-uptime-card {
    min-height: auto;
  }
}
/* END WWW-STATUS-PAGE-PATCH-4 */

/* WWW-STATUS-PAGE-PATCH-6 */
.status-card {
  min-height: 210px;
}

.status-list-card {
  min-height: 210px;
}

.status-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.status-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 32px;
  padding: 7px 10px;
  border-radius: 12px;
  background: rgba(237, 248, 236, .72);
  border: 1px solid rgba(66, 165, 31, .16);
}

.status-list span {
  color: #244436;
  font-weight: 850;
  font-size: 13px;
}

.status-list strong {
  color: #0b321f;
  font-size: 13px;
  text-align: right;
}

.status-metric {
  margin-top: 10px;
  font-size: 30px;
}

.status-card p {
  margin-bottom: 10px;
}

.status-card-head {
  margin-bottom: 14px;
}
/* END WWW-STATUS-PAGE-PATCH-6 */

/* WWW-LEGAL-PAGE-1 */
.legal-intro h1 {
  margin: 0 0 18px;
  max-width: 820px;
  color: #0b321f;
  font-size: clamp(42px, 4.5vw, 70px);
  line-height: 1;
  letter-spacing: -2px;
}

.legal-intro p {
  max-width: 840px;
  font-size: 18px;
  font-weight: 700;
  color: #36513f;
  line-height: 1.55;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.legal-card {
  min-height: 220px;
}

.legal-card a {
  display: inline-flex;
  margin-top: 6px;
  font-weight: 950;
  text-decoration: none;
}

@media (max-width: 860px) {
  .legal-grid {
    grid-template-columns: 1fr;
  }
}
/* END WWW-LEGAL-PAGE-1 */

/* WWW-STATUS-PAGE-PATCH-7 */
.status-grid {
  align-items: stretch;
}

.status-card {
  min-height: 0;
  height: auto;
}

.status-list-card {
  min-height: 0;
}

.status-card p {
  margin-top: 0;
}

.status-card a {
  margin-top: 2px;
}

.status-metric {
  margin-bottom: 0;
}

@media (min-width: 1121px) {
  .status-card {
    min-height: 245px;
  }

  .status-list-card {
    min-height: 245px;
  }
}
/* END WWW-STATUS-PAGE-PATCH-7 */

/* WWW-STATUS-PAGE-PATCH-8 */
.status-mini-metrics {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.status-mini-metrics div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(237, 248, 236, .72);
  border: 1px solid rgba(66, 165, 31, .16);
}

.status-mini-metrics span {
  color: #244436;
  font-weight: 850;
  font-size: 13px;
}

.status-mini-metrics strong {
  color: #0b321f;
  font-size: 15px;
}
/* END WWW-STATUS-PAGE-PATCH-8 */

/* AmpProxy cookie consent — 2026-07-30-v1 */

html.cookie-consent-pending,
body.cookie-consent-pending {
  overflow: hidden;
}

.cookie-consent-blocker {
  position: fixed;
  inset: 0;
  z-index: 9997;
  background: rgba(8, 28, 22, 0.22);
  backdrop-filter: blur(1.5px);
}

.cookie-consent-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 9998;
  width: min(900px, calc(100% - 32px));
  transform: translateX(-50%);
  border: 1px solid rgba(15, 47, 37, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(8, 28, 22, 0.24);
  color: #173b30;
}

.cookie-consent-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 18px 20px;
}

.cookie-consent-copy {
  min-width: 0;
}

.cookie-consent-heading {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 7px;
}

.cookie-consent-heading h2 {
  margin: 0;
  color: #0f2f25;
  font-size: 18px;
  line-height: 1.2;
}

.cookie-consent-icon {
  width: 18px;
  height: 18px;
  border: 5px dotted #2f6b58;
  border-radius: 50%;
  color: transparent;
  flex: 0 0 auto;
}

.cookie-consent-copy > p {
  margin: 0;
  max-width: 650px;
  color: #4c665d;
  font-size: 14px;
  line-height: 1.55;
}

.cookie-consent-details {
  margin-top: 8px;
  color: #35564a;
  font-size: 13px;
}

.cookie-consent-details summary {
  width: fit-content;
  cursor: pointer;
  color: #245847;
  font-weight: 750;
}

.cookie-consent-details summary:hover {
  text-decoration: underline;
}

.cookie-consent-category {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e4ece8;
}

.cookie-consent-category strong {
  display: block;
  color: #173b30;
}

.cookie-consent-category p {
  margin: 4px 0 0;
  line-height: 1.5;
}

.cookie-consent-policy {
  margin-top: 10px;
  color: #71857d;
  font-size: 12px;
}

.cookie-consent-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  min-width: 218px;
}

.cookie-consent-button {
  width: 100%;
  min-height: 44px;
  border: 1px solid #275d4c;
  border-radius: 11px;
  background: #ffffff;
  color: #173b30;
  padding: 10px 15px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition:
    background 140ms ease,
    border-color 140ms ease,
    transform 140ms ease;
}

.cookie-consent-button:hover {
  background: #eef6f2;
  border-color: #173b30;
}

.cookie-consent-button:active {
  transform: translateY(1px);
}

.cookie-consent-button:focus-visible,
.cookie-settings-button:focus-visible,
.cookie-consent-details summary:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.35);
  outline-offset: 3px;
}

.cookie-settings-button {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 9996;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(15, 47, 37, 0.24);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 26px rgba(8, 28, 22, 0.18);
  color: #245847;
  cursor: pointer;
}

.cookie-settings-button span {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 5px dotted currentColor;
  border-radius: 50%;
  color: #2f6b58;
  font-size: 0;
}

.cookie-settings-button:hover {
  background: #eef6f2;
}

@media (max-width: 720px) {
  .cookie-consent-banner {
    bottom: 10px;
    width: calc(100% - 20px);
    border-radius: 15px;
  }

  .cookie-consent-main {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 16px;
  }

  .cookie-consent-actions {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .cookie-consent-button {
    min-height: 46px;
  }

  .cookie-settings-button {
    left: 10px;
    bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-consent-button {
    transition: none;
  }
}
