*,
*::before,
*::after {
  box-sizing: border-box;
}
:root {
  --ink: #17262d;
  --paper: #f1efe9;
  --blue: #315766;
  --acid: #cbb88c;
  --coral: #a86452;
  --line: #526169;
  --muted: #666b69;
  --white: #fbfaf6;
  font-family: Arial, 'Helvetica Neue', sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
}
button,
a,
summary {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 5px;
}
p,
h1,
h2,
h3 {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: -0.055em;
  text-wrap: balance;
}
h2 {
  font-size: clamp(3rem, 7vw, 7.5rem);
}
h3 {
  font-size: clamp(1.65rem, 2.5vw, 2.5rem);
}
.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 1000;
  background: var(--acid);
  padding: 0.8rem 1rem;
  border: 2px solid var(--ink);
  font-weight: 700;
}
.skip-link:focus {
  top: 1rem;
}
.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  height: 4px;
  z-index: 1000;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 2.5rem;
  border-bottom: 1px solid transparent;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s;
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  border-color: var(--line);
  backdrop-filter: blur(10px);
}
.wordmark {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem;
  background: #e3d8b0;
  border: 1px solid #ffffff52;
  border-radius: 0.35rem;
  box-shadow: 0 0.35rem 1.25rem #071b3024;
}
.brand-logo {
  display: block;
  width: auto;
  height: 4rem;
  object-fit: contain;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 700;
}
.site-nav > a:not(.nav-cta):hover {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}
.nav-cta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 0.75rem 1.1rem;
  background: var(--ink);
  color: var(--white);
  border: 2px solid var(--ink);
}
.nav-cta:hover {
  background: var(--acid);
  color: var(--ink);
}
.menu-button {
  display: none;
  background: none;
  border: 0;
  padding: 0.7rem;
  font-weight: 800;
}
.menu-button i,
.menu-button i::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  content: '';
}
.menu-button i::after {
  transform: translateY(5px);
}
.hero {
  --hero-rail-shift: 0vw;
  --hero-rail-drop: 0vh;
  --hero-rail-scale: 1;
  --hero-floor-drop: 0vh;
  --hero-floor-scale: 1;
  --hero-sky-scale: 1;
  --hero-wash-opacity: 0.58;
  --hero-copy-opacity: 1;
  --hero-copy-shift: 0vh;
  --hero-copy-blur: 0px;
  --hero-sticker-opacity: 1;
  --hero-sticker-shift: 0vw;
  position: relative;
  height: 175svh;
  min-height: 72rem;
  border-bottom: 2px solid var(--ink);
  background: #e6f2ff;
}
.hero-scene {
  position: sticky;
  top: 0;
  isolation: isolate;
  overflow: hidden;
  height: 100svh;
  min-height: 41rem;
  padding: 8.2rem 3vw 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #a7d9f8;
}
.hero-scene::before {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image:
    linear-gradient(#1714e80c 1px, transparent 1px),
    linear-gradient(90deg, #1714e80c 1px, transparent 1px);
  background-size: 3.5rem 3.5rem;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 35%,
    #000 80%,
    transparent
  );
  pointer-events: none;
}
.hero-scene::after {
  content: '';
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(
    180deg,
    #071b3014 0,
    transparent 52%,
    #071b303d 100%
  );
  pointer-events: none;
}
.hero-depth {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: #a7d9f8;
  pointer-events: none;
}
.hero-depth img {
  display: block;
  position: absolute;
  max-width: none;
  user-select: none;
}
.hero-skyline {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.94) contrast(0.96);
  transform: scale(var(--hero-sky-scale));
  transform-origin: center 42%;
  will-change: transform;
}
.hero-skyline-haze {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, #1024373d 100%);
}
.hero-bridge,
.hero-bridge-floor {
  left: 50%;
  bottom: -1px;
  width: max(100vw, 178vh);
  height: auto;
  will-change: transform;
}
.hero-bridge-left {
  z-index: 2;
  transform: translate3d(
      calc(-50% - var(--hero-rail-shift)),
      var(--hero-rail-drop),
      0
    )
    scale(var(--hero-rail-scale));
  transform-origin: 50% 78%;
}
.hero-bridge-right {
  z-index: 2;
  transform: translate3d(
      calc(-50% + var(--hero-rail-shift)),
      var(--hero-rail-drop),
      0
    )
    scale(var(--hero-rail-scale));
  transform-origin: 50% 78%;
}
.hero-bridge-floor {
  z-index: 1;
  transform: translate3d(-50%, var(--hero-floor-drop), 0)
    scale(var(--hero-floor-scale));
  transform-origin: center bottom;
}
.hero-depth-wash {
  position: absolute;
  z-index: 3;
  inset: 0;
  background: radial-gradient(
    circle at 50% 58%,
    transparent 0 34%,
    #071b3012 72%,
    #071b3042 100%
  );
  opacity: var(--hero-wash-opacity);
}
.hero-content {
  position: relative;
  z-index: 4;
  opacity: var(--hero-copy-opacity);
  transform: translate3d(0, var(--hero-copy-shift), 0);
  filter: blur(var(--hero-copy-blur));
  will-change: opacity, transform, filter;
}
.hero-content,
.hero-sticker {
  transition: opacity 0.08s linear;
}
.hero-sticker {
  z-index: 5;
  opacity: var(--hero-sticker-opacity);
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 2.2rem 13vw;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.availability-dot {
  width: 0.65rem;
  height: 0.65rem;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 6px #ff75572d;
  animation: pulse 2s infinite;
}
.hero-title {
  font-size: clamp(3rem, 10.3vw, 10rem);
  line-height: 0.78;
  letter-spacing: -0.075em;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line > span {
  display: block;
  animation: hero-in 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero-title .line:nth-child(2) > span {
  animation-delay: 0.08s;
}
.hero-title .line:nth-child(3) > span {
  animation-delay: 0.16s;
}
.line-outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  padding-left: 5vw;
}
.line-indent {
  display: flex !important;
  align-items: center;
  gap: 3vw;
  padding-left: 25vw;
}
.spark {
  font-style: normal;
  font-size: 0.34em;
  color: var(--blue);
  -webkit-text-stroke: 0;
  animation: spin 9s linear infinite;
}
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  margin: 3.3rem 7vw 0 25vw;
}
.hero-bottom p {
  max-width: 39rem;
  font-size: clamp(1.1rem, 1.55vw, 1.5rem);
  line-height: 1.45;
}
.round-link {
  width: 7.25rem;
  height: 7.25rem;
  border-radius: 50%;
  background: var(--acid);
  border: 2px solid var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-weight: 800;
  flex: none;
  transition: background 0.2s;
}
.round-link:hover {
  background: var(--coral);
}
.round-link b {
  font-size: 1.35rem;
}
.hero-sticker {
  position: absolute;
  display: grid;
  place-items: center;
  width: 6rem;
  height: 6rem;
  border: 2px solid var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.05em;
}
.sticker-one {
  top: 23%;
  right: 7%;
  background: var(--coral);
  transform: translateX(var(--hero-sticker-shift)) rotate(8deg);
}
.sticker-two {
  bottom: 20%;
  left: 5%;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  transform: translateX(calc(0px - var(--hero-sticker-shift))) rotate(-11deg);
}
.marquee {
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background: var(--blue);
  color: var(--white);
  padding: 0.95rem 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: marquee 24s linear infinite;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}
.marquee-track i {
  color: var(--acid);
  font-style: normal;
}
.section,
.about-section,
.process-section,
.faq-section {
  padding: 7rem 4vw;
}
.section-number {
  font-size: 0.75rem;
  font-weight: 800;
  border: 1px solid currentColor;
  border-radius: 50%;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  margin-bottom: 2rem;
}
.section-number-light {
  color: var(--acid);
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 1.3rem;
}
.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 30rem);
  align-items: end;
  gap: 5rem;
  margin-left: 10vw;
}
.section-intro h2 {
  max-width: 68rem;
  grid-column: 1/-1;
}
.section-intro > p:last-child {
  grid-column: 2;
  color: var(--muted);
  font-size: 1.1rem;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 5rem;
  perspective: 1200px;
}
.problem-card {
  min-height: 29rem;
  padding: 1.7rem;
  border: 2px solid var(--ink);
  background: var(--coral);
  display: flex;
  flex-direction: column;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}
.problem-card-yellow {
  background: var(--acid);
}
.problem-card-blue {
  background: var(--blue);
  color: var(--white);
}
.card-index {
  font-size: 0.75rem;
  font-weight: 800;
}
.scribble {
  position: absolute;
  top: 1.1rem;
  right: 1.5rem;
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1;
  transform: rotate(10deg);
}
.problem-card h3 {
  margin-top: auto;
  margin-bottom: 1rem;
}
.problem-card p {
  max-width: 27rem;
}
.card-answer {
  border-top: 1px solid currentColor;
  margin-top: 1.5rem;
  padding-top: 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.demo-section {
  background: var(--ink);
  color: var(--white);
  padding: 7rem 4vw;
  display: grid;
  grid-template-columns: minmax(19rem, 0.72fr) minmax(30rem, 1.28fr);
  gap: 4rem;
}
.demo-copy {
  align-self: center;
}
.demo-copy h2 {
  font-size: clamp(3.7rem, 6vw, 7rem);
}
.demo-copy > p:not(.eyebrow) {
  max-width: 36rem;
  color: #bbb8b1;
  font-size: 1.1rem;
  margin-top: 2rem;
}
.business-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-top: 2.5rem;
}
.picker-button {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-align: left;
  background: transparent;
  color: var(--white);
  border: 1px solid #5e5e5e;
  padding: 0.72rem 0.85rem;
  cursor: pointer;
}
.picker-button span {
  font-size: 0.65rem;
  color: #969696;
}
.picker-button:hover,
.picker-button.is-active {
  background: var(--acid);
  border-color: var(--acid);
  color: var(--ink);
}
.picker-button.is-active span {
  color: var(--ink);
}
.browser-stage {
  position: relative;
  align-self: center;
  perspective: 1200px;
}
.carousel-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #c9c9c9;
}
.carousel-controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.carousel-controls button {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border: 1px solid #777;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.carousel-controls button:hover {
  background: var(--acid);
  border-color: var(--acid);
  color: var(--ink);
}
.carousel-controls span {
  min-width: 3.5rem;
  text-align: center;
}
.browser-frame {
  background: #dadada;
  border: 2px solid var(--white);
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 1.8rem 1.8rem 0 var(--blue);
  transform: rotate(0.6deg);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.browser-stage:hover .browser-frame {
  transform: rotate(-0.5deg) translateY(-7px);
}
.browser-bar {
  height: 2.8rem;
  background: #e9e9e9;
  color: #222;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0.8rem;
}
.browser-bar > span {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: #aaa;
}
.browser-bar > span:first-child {
  background: var(--coral);
}
.browser-bar > div {
  background: #fff;
  border-radius: 0.25rem;
  margin: auto;
  padding: 0.3rem 3rem;
  font-size: 0.75rem;
  color: #777;
}
.browser-site {
  min-height: 32rem;
  position: relative;
  overflow: hidden;
  transition:
    color 0.25s,
    background 0.25s;
  font-size: 0.75rem;
}
.browser-site h3 {
  letter-spacing: -0.06em;
}
.browser-site .t-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.drag-note {
  position: absolute;
  right: -1.5rem;
  bottom: -3.2rem;
  font-size: 0.75rem;
  color: var(--acid);
  transform: rotate(-6deg);
  letter-spacing: 0.1em;
}

/* Starter 01: editorial split */
.template-yard {
  background: #eef0de;
  color: #153727;
  padding: 1.35rem 1.5rem;
}
.t-yard-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #153727;
  padding-bottom: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.t-yard-nav strong {
  font-size: 1rem;
  text-transform: none;
  letter-spacing: -0.04em;
}
.t-yard-nav b {
  background: #153727;
  color: #eef0de;
  padding: 0.55rem 0.7rem;
}
.t-yard-main {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 1rem;
  min-height: 23rem;
  padding: 2.7rem 0 1.2rem;
}
.t-yard-copy {
  align-self: center;
}
.t-yard-copy small {
  letter-spacing: 0.16em;
}
.t-yard-copy h3 {
  font-size: clamp(3rem, 4.5vw, 5rem);
  line-height: 0.82;
  margin: 1rem 0;
}
.t-yard-copy h3 em {
  font-family: Georgia, serif;
  font-weight: 400;
}
.t-yard-copy p {
  max-width: 15rem;
}
.t-yard-copy .t-cta {
  margin-top: 1.2rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.25rem;
}
.t-yard-art {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
  background: linear-gradient(150deg, #cfe856, #9fca34 48%, #427044);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  color: #10251a;
}
.t-yard-art::before {
  content: '';
  position: absolute;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: #f2ff9b;
  right: -3rem;
  top: -3rem;
}
.t-yard-art i {
  position: absolute;
  inset: 40% -20% -30%;
  border-radius: 50% 50% 0 0;
  background: #315f3d;
  transform: rotate(-8deg);
}
.t-yard-art strong,
.t-yard-art span {
  position: relative;
  z-index: 1;
}
.t-yard-art strong {
  font-size: 2.5rem;
  line-height: 1;
}
.t-yard-services {
  border-top: 1px solid #153727;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.85rem;
  font-weight: 800;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
}

/* Starter 02: editorial wellness */
.template-editorial {
  background: #f7f7f2;
  color: #182116;
  padding: 1.2rem 1.35rem;
}
.t-clean-nav {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1.3rem;
  border-bottom: 1px solid #849078;
  padding-bottom: 0.85rem;
}
.t-clean-nav strong {
  font-size: 1rem;
}
.t-clean-nav strong i {
  font-style: normal;
  color: #768d55;
}
.t-clean-nav span {
  font-size: 0.65rem;
}
.t-clean-nav > b {
  background: #182116;
  color: #fff;
  border-radius: 99px;
  padding: 0.5rem 0.75rem;
  font-size: 0.62rem;
}
.t-clean-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  min-height: 22.5rem;
  padding: 1.4rem 0;
}
.t-clean-copy {
  align-self: center;
}
.t-clean-copy small {
  letter-spacing: 0.12em;
  color: #66705d;
}
.t-clean-copy h3 {
  font-family: Arial, sans-serif;
  font-size: clamp(2.8rem, 4.2vw, 4.6rem);
  line-height: 0.9;
  margin: 1rem 0;
  font-weight: 500;
}
.t-clean-copy h3 em {
  font-family: Georgia, serif;
  color: #677c4d;
  font-weight: 400;
}
.t-clean-copy p {
  max-width: 17rem;
  color: #5e6658;
}
.t-clean-copy .t-cta {
  margin-top: 1.25rem;
  background: #182116;
  color: #fff;
  border-radius: 99px;
  padding: 0.65rem 0.85rem;
  font-size: 0.62rem;
}
.t-clean-visual {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  background:
    radial-gradient(circle at 75% 20%, #dbe9b7 0 7%, transparent 26%),
    linear-gradient(145deg, #82906c, #46573b);
  color: #f7f7f2;
}
.t-clean-visual::before {
  content: '';
  position: absolute;
  inset: 28% -15% -38% 12%;
  border-radius: 50%;
  background: linear-gradient(140deg, #a6b58e, #33472b);
  transform: rotate(-9deg);
}
.t-clean-visual span {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.06em;
}
.t-clean-visual i {
  position: absolute;
  width: 7rem;
  height: 7rem;
  border: 1px solid #f7f7f288;
  border-radius: 50%;
  right: 1.2rem;
  top: 1.2rem;
}
.t-clean-visual b {
  position: absolute;
  right: 1rem;
  bottom: 0.8rem;
  font-size: 3.5rem;
  color: #ffffff20;
}
.t-clean-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  border-top: 1px solid #849078;
  padding-top: 0.8rem;
}
.t-clean-services p {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.55rem;
}
.t-clean-services span {
  grid-row: 1/3;
  color: #768d55;
}
.t-clean-services b,
.t-clean-services i {
  display: block;
}
.t-clean-services i {
  font-style: normal;
  color: #70776c;
  font-size: 0.62rem;
}

/* Starter 03: electric product showcase */
.template-electric {
  background-color: #0755c8;
  background-image: radial-gradient(#8ecbff70 0.8px, transparent 0.8px);
  background-size: 10px 10px;
  color: #fff;
  padding: 1rem 1.25rem;
}
.t-electric-nav {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.t-electric-nav strong {
  font-size: 1rem;
}
.t-electric-nav > span {
  background: #ffffff22;
  border: 1px solid #ffffff35;
  border-radius: 99px;
  padding: 0.55rem 0.8rem;
}
.t-electric-nav > span i {
  display: inline-grid;
  place-items: center;
  width: 1.4rem;
  height: 1.4rem;
  background: #fff;
  color: #0755c8;
  border-radius: 50%;
  font-style: normal;
  letter-spacing: -0.15em;
}
.t-electric-nav > b {
  justify-self: end;
  background: #071522;
  border: 1px solid #8df5ff;
  border-radius: 99px;
  padding: 0.5rem 0.8rem;
}
.t-electric-stage {
  position: relative;
  min-height: 25rem;
  padding-top: 2.4rem;
  overflow: hidden;
}
.t-electric-stage > small {
  position: relative;
  z-index: 2;
  font-family: Georgia, serif;
  font-size: 1rem;
}
.t-electric-year {
  position: absolute;
  z-index: 2;
  right: 0.5rem;
  top: 3rem;
  text-align: right;
  font-family: Georgia, serif;
  font-size: 1rem;
}
.t-electric-stage > h3 {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 6rem;
  text-align: center;
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: clamp(4.4rem, 7vw, 7.4rem);
  line-height: 0.7;
  letter-spacing: -0.09em;
  color: #f7fbff;
  text-shadow: 0 0.2rem 0 #034295;
}
.t-electric-product {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 4rem;
  width: 8.5rem;
  height: 17rem;
  transform: translateX(-50%) rotate(-8deg);
  border: 2px solid #a8f6ff;
  border-radius: 4rem 4rem 1.2rem 1.2rem;
  background: linear-gradient(
    160deg,
    #d9fbff 0 5%,
    #1fc5ef 20%,
    #06428a 57%,
    #031c39
  );
  box-shadow: 0 0 1.8rem #81efffcc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.t-electric-product::before {
  content: '';
  position: absolute;
  top: -1rem;
  width: 3.8rem;
  height: 1.5rem;
  border: 2px solid #a8f6ff;
  border-radius: 0.45rem;
  background: #06428a;
}
.t-electric-product > span {
  font-size: 0.48rem;
  letter-spacing: 0.14em;
}
.t-electric-product > strong {
  font-size: 2.2rem;
  margin: 0.55rem 0;
}
.t-electric-product > i {
  font-style: normal;
  font-size: 0.55rem;
}
.t-electric-product > b {
  margin-top: 1rem;
  border: 1px solid #fff;
  border-radius: 99px;
  padding: 0.3rem 0.5rem;
  font-size: 0.52rem;
}
.t-electric-stage > p {
  position: absolute;
  left: 0;
  bottom: 0.8rem;
  max-width: 13rem;
}
.t-electric-stage > .t-cta {
  position: absolute;
  right: 0;
  bottom: 0.8rem;
  background: #fff;
  color: #071522;
  border-radius: 99px;
  padding: 0.7rem 0.9rem;
}
.t-electric-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  border-top: 1px solid #9dd6ff;
  padding-top: 0.75rem;
  font-size: 0.58rem;
}
.t-electric-bottom strong {
  text-align: center;
}
.t-electric-bottom span:last-child {
  text-align: right;
}

/* Starter 04: high-energy modular */
.template-neon {
  background: #eaff5d;
  color: #fff;
  padding: 0.7rem;
}
.t-build-shell {
  min-height: 30.6rem;
  background: #060608;
  padding: 0.85rem;
  position: relative;
  overflow: hidden;
}
.t-build-shell::before {
  content: '';
  position: absolute;
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  background: #8c22ff;
  filter: blur(5rem);
  right: -4rem;
  bottom: -5rem;
  opacity: 0.7;
}
.t-build-nav {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-size: 0.62rem;
}
.t-build-nav strong {
  font-size: 0.8rem;
}
.t-build-nav b {
  justify-self: end;
  background: #8c22ff;
  border-radius: 99px;
  padding: 0.45rem 0.7rem;
}
.t-build-feature {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  margin-top: 1.2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #7d19f5, #a42cff);
  border-radius: 1rem;
  min-height: 18rem;
  overflow: hidden;
}
.t-build-feature::after {
  content: '';
  position: absolute;
  width: 9rem;
  height: 9rem;
  border: 1px solid #ffffff55;
  border-radius: 50%;
  right: -2rem;
  top: -2rem;
  box-shadow:
    0 0 0 2rem #ffffff08,
    0 0 0 4rem #ffffff08;
}
.t-build-feature > div {
  position: relative;
  z-index: 1;
}
.t-build-feature small {
  letter-spacing: 0.12em;
}
.t-build-feature h3 {
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.75;
  margin: 0.9rem 0;
}
.t-build-feature p {
  max-width: 15rem;
  color: #eadbff;
}
.t-build-feature aside {
  position: relative;
  z-index: 1;
  align-self: end;
  min-height: 11rem;
  padding: 1rem;
  background: linear-gradient(145deg, #111727, #093470);
  border: 1px solid #ffffff50;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transform: rotate(3deg);
}
.t-build-feature aside span,
.t-build-feature aside i {
  font-size: 0.55rem;
  letter-spacing: 0.12em;
}
.t-build-feature aside strong {
  font-size: 1.5rem;
  line-height: 0.9;
  margin: 0.6rem 0;
}
.t-build-feature aside i {
  font-style: normal;
  color: #62e8ff;
}
.t-build-modules {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 0.7rem;
}
.t-build-modules article {
  min-height: 7rem;
  background: #17171d;
  border: 1px solid #30303a;
  padding: 0.75rem;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.55rem;
}
.t-build-modules span {
  color: #c163ff;
}
.t-build-modules b {
  font-size: 0.8rem;
}
.t-build-modules p {
  grid-column: 2;
  color: #9696a0;
  font-size: 0.6rem;
  margin-top: 0.4rem;
}

/* Starter 05: atmospheric retreat */
.template-atmospheric {
  background: radial-gradient(
    circle at 50% -20%,
    #5c6e60,
    #073244 45%,
    #022535 78%
  );
  color: #f8f1df;
  padding: 1rem;
}
.t-pet-shell {
  min-height: 30rem;
  display: flex;
  flex-direction: column;
}
.t-pet-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.55rem 0.7rem;
  border: 1px solid #ffffff33;
  border-radius: 99px;
  background: #ffffff15;
  backdrop-filter: blur(8px);
}
.t-pet-nav strong {
  font-family: Georgia, serif;
  font-size: 0.9rem;
}
.t-pet-nav strong i {
  display: inline-grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  background: #ff9b27;
  border-radius: 50%;
  font-style: normal;
}
.t-pet-nav span {
  font-size: 0.62rem;
}
.t-pet-nav b {
  justify-self: end;
  background: #fff;
  color: #082d3c;
  border-radius: 99px;
  padding: 0.45rem 0.75rem;
}
.t-pet-hero {
  position: relative;
  overflow: hidden;
  min-height: 20.5rem;
  text-align: center;
  padding-top: 2rem;
}
.t-pet-hero > small {
  letter-spacing: 0.13em;
  color: #f0ad59;
}
.t-pet-hero > h3 {
  position: relative;
  z-index: 2;
  font-family: Georgia, serif;
  font-size: clamp(2.8rem, 4.5vw, 4.7rem);
  line-height: 0.92;
  margin: 0.75rem auto;
  font-weight: 400;
}
.t-pet-hero h3 em {
  color: #f0ad59;
  font-weight: 400;
}
.t-pet-hero > p {
  position: relative;
  z-index: 2;
  max-width: 26rem;
  margin: auto;
  color: #c8d0c8;
}
.t-pet-hero > .t-cta {
  position: relative;
  z-index: 2;
  margin-top: 1rem;
  background: #ff941c;
  color: #172319;
  border-radius: 99px;
  padding: 0.65rem 0.9rem;
}
.t-pet-wave {
  position: absolute;
  z-index: 1;
  left: 5%;
  right: 5%;
  height: 10rem;
  bottom: -4.5rem;
  background-image: radial-gradient(#f1ad5d 1.2px, transparent 1.2px);
  background-size: 8px 8px;
  clip-path: polygon(
    0 70%,
    12% 42%,
    24% 62%,
    38% 18%,
    48% 42%,
    61% 4%,
    74% 39%,
    86% 25%,
    100% 57%,
    100% 100%,
    0 100%
  );
  opacity: 0.85;
}
.t-pet-services {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.t-pet-services p {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #ffffff33;
  border-radius: 99px;
  background: #ffffff12;
  padding: 0.55rem 0.65rem;
}
.t-pet-services > p > i {
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: #fff0d7;
  color: #b96312;
  font-style: normal;
}
.t-pet-services span,
.t-pet-services b {
  display: block;
}
.t-pet-services span {
  font-size: 0.52rem;
  color: #c9d0cc;
}
.t-pet-services b {
  font-size: 0.62rem;
  color: #fff;
}
.deliverables {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #555;
  margin-top: 4rem;
}
.deliverables article {
  padding: 1.6rem 1.2rem 0;
  border-right: 1px solid #555;
}
.deliverables article:last-child {
  border: 0;
}
.deliverables span {
  font-size: 0.7rem;
  color: var(--acid);
}
.deliverables h3 {
  font-size: 1.35rem;
  margin: 0.8rem 0;
}
.deliverables p {
  font-size: 0.9rem;
  color: #aaa;
}
.about-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5vw;
  padding: 4rem 4vw 5rem 0;
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
}

.about-sticky {
  align-self: start;
  position: sticky;
  top: 5.5rem;
  min-height: calc(100svh - 9rem);
  display: flex;
  flex-direction: column;
}
.about-sticky > .eyebrow {
  margin-left: 4vw;
}
.about-intro {
  position: relative;
  flex: 1;
  min-height: 34rem;
}
.about-sticky h2 {
  position: absolute;
  z-index: 2;
  top: 18%;
  left: clamp(17rem, 21vw, 24rem);
  width: min(31rem, 32vw);
  font-size: clamp(3.2rem, 4.2vw, 5.2rem);
  line-height: 0.9;
}

.about-sticky h2 span {
  color: var(--blue);
}
.about-portrait {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: clamp(20rem, 32vw, 36rem);
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: left bottom;
  filter: drop-shadow(0.35rem 0.6rem 1.2rem #17262d24);
}
.about-sticky .text-link {
  position: relative;
  z-index: 3;
  align-self: flex-start;
  margin: 1rem 0 0 4vw;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  font-weight: 800;
  border-bottom: 2px solid var(--ink);
  padding: 0.5rem 0;
}
.about-story {
  border-top: 2px solid var(--ink);
}
.story-block {
  padding: 2.2rem 0;
  border-bottom: 2px solid var(--ink);
}
.story-block > span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.story-block p {
  font-size: clamp(1.4rem, 2.25vw, 2.35rem);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-top: 2.5rem;
}
.story-block-accent {
  background: var(--acid);
  margin: 0 -2rem;
  padding: 2rem;
}
.process-section {
  background: var(--coral);
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 7vw;
}
.process-heading {
  position: sticky;
  top: 8rem;
  align-self: start;
}
.process-heading h2 {
  font-size: clamp(4rem, 7vw, 8rem);
}
.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--ink);
}
.process-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: 2.4rem 0;
  border-bottom: 2px solid var(--ink);
  align-items: start;
}
.process-list li > div {
  min-width: 0;
}
.process-list h3 {
  font-size: 1.65rem;
}
.process-list p {
  margin-top: 0.8rem;
  max-width: 33rem;
}
.process-list b {
  align-self: center;
  font-size: clamp(0.95rem, 1vw, 1.15rem);
  line-height: 1;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
}
.faq-heading h2 {
  font-size: clamp(3.5rem, 5vw, 6rem);
}
.faq-list {
  border-top: 2px solid var(--ink);
}
.faq-list details {
  border-bottom: 2px solid var(--ink);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1.7rem 0;
  font-size: 1.25rem;
  font-weight: 800;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  font-size: 2rem;
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list details p {
  color: var(--muted);
  padding: 0 4rem 1.8rem 0;
  max-width: 44rem;
}
.contact-section {
  min-height: 80svh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
  padding: 7rem 4vw;
}
.contact-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 68rem;
}
.contact-content .eyebrow {
  color: var(--acid);
}
.contact-content h2 {
  font-size: clamp(4.5rem, 10vw, 11rem);
  line-height: 0.78;
}
.contact-content > p:not(.eyebrow) {
  max-width: 37rem;
  margin: 2rem auto;
  font-size: 1.1rem;
}
.contact-button {
  margin: 2rem auto 0;
  background: var(--acid);
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 1rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 22rem;
  font-weight: 800;
}
.contact-button:hover {
  background: var(--coral);
}
.contact-email {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}
.contact-email:hover {
  color: var(--acid);
}
.contact-orbit {
  position: absolute;
  z-index: 1;
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 6rem);
  color: transparent;
  -webkit-text-stroke: 1px #ffffff33;
  white-space: nowrap;
}
.orbit-one {
  top: 8%;
  left: -4%;
  transform: rotate(-8deg);
}
.orbit-two {
  bottom: 7%;
  right: -4%;
  transform: rotate(7deg);
}
.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 3vw;
  border-top: 2px solid var(--ink);
  font-size: 0.82rem;
}
.site-footer > p {
  text-align: center;
}
.site-footer > div {
  display: flex;
  justify-content: flex-end;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.site-footer a:not(.wordmark):hover {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}
.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@keyframes hero-in {
  from {
    transform: translateY(110%);
  }
  to {
    transform: none;
  }
}
@keyframes pulse {
  50% {
    box-shadow: 0 0 0 10px #ff755700;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
@media (pointer: fine) and (hover: hover) {
  .cursor-orbit {
    display: grid;
  }
  body {
    cursor: default;
  }
  .magnetic,
  .picker-button,
  [data-tilt],
  summary {
    cursor: pointer;
  }
}
@media (max-width: 980px) {
  .site-header {
    padding: 1rem 1.5rem;
  }
  .menu-button {
    display: flex;
    align-items: center;
    gap: 0.7rem;
  }
  .site-nav {
    display: none;
    position: fixed;
    inset: 4.8rem 0 0;
    background: var(--paper);
    padding: 3rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    font-size: 1.6rem;
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav .nav-cta {
    margin-top: auto;
    width: 100%;
    justify-content: space-between;
  }
  .hero-scene {
    padding-top: 8rem;
  }
  .hero-kicker {
    margin-left: 2vw;
  }
  .hero-bottom {
    margin-left: 15vw;
  }
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .problem-card {
    min-height: 23rem;
  }
  .demo-section {
    grid-template-columns: 1fr;
  }
  .browser-stage {
    max-width: 48rem;
    width: 100%;
    margin: auto;
  }
  .deliverables {
    grid-template-columns: 1fr 1fr;
  }
  .deliverables article {
    border-bottom: 1px solid #555;
  }
  .about-section,
  .process-section,
  .faq-section {
    grid-template-columns: 1fr;
  }
  .about-sticky,
  .process-heading {
    position: static;
  }
  .section-intro {
    margin-left: 0;
  }
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer > p {
    display: none;
  }
}
@media (max-width: 640px) {
  html {
    scroll-padding-top: 5rem;
  }
  h2 {
    font-size: 3.1rem;
  }
  .site-header {
    padding: 0.75rem 1rem;
  }
  .wordmark {
    font-size: 0.9rem;
  }
  .wordmark-mark {
    width: 2.3rem;
    height: 2.3rem;
  }
  .hero {
    height: 155svh;
    min-height: 0;
  }
  .hero-scene {
    min-height: 0;
    padding: 7rem 1rem 2rem;
  }
  .hero-scene::before {
    background-size: 2.5rem 2.5rem;
  }
  .hero-scene::after {
    background: linear-gradient(
      180deg,
      #f7f2e95c 0,
      transparent 43%,
      #11233a30 100%
    );
  }
  .hero-bridge,
  .hero-bridge-floor {
    width: 185vw;
  }
  .hero-title {
    font-size: 10.3vw;
    line-height: 0.8;
  }
  .line-outline {
    -webkit-text-stroke: 1.25px var(--ink);
    padding-left: 0;
  }
  .line-indent {
    padding-left: 13vw;
  }
  .hero-bottom {
    margin: 2.5rem 0 0 12vw;
    align-items: flex-start;
  }
  .hero-bottom p {
    font-size: 1rem;
  }
  .round-link {
    width: 5.6rem;
    height: 5.6rem;
    font-size: 0.75rem;
  }
  .hero-sticker {
    width: 4.2rem;
    height: 4.2rem;
  }
  .sticker-one {
    top: 20%;
    right: 4%;
  }
  .sticker-two {
    display: none;
  }
  .section,
  .about-section,
  .process-section,
  .faq-section,
  .demo-section {
    padding: 4.5rem 1rem;
  }
  .section-intro {
    display: block;
  }
  .section-intro > p:last-child {
    margin-top: 1.3rem;
  }
  .problem-grid {
    margin-top: 2.5rem;
  }
  .problem-card {
    min-height: 20rem;
  }
  .demo-copy h2 {
    font-size: 3.8rem;
  }
  .business-picker {
    gap: 0.4rem;
  }
  .picker-button {
    font-size: 0.72rem;
    padding: 0.6rem;
  }
  .picker-button span {
    display: none;
  }
  .browser-frame {
    box-shadow: 0.8rem 0.8rem 0 var(--blue);
  }
  .browser-bar > div {
    max-width: 68%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0.3rem 0.7rem;
  }
  .browser-site {
    min-height: 29rem;
  }
  .carousel-meta {
    margin-top: 1rem;
  }
  .drag-note {
    display: none;
  }
  .template-yard {
    padding: 0.8rem;
  }
  .t-yard-nav span {
    display: none;
  }
  .t-yard-main {
    display: block;
    min-height: 23rem;
    padding: 3rem 0.6rem 1rem;
    background: linear-gradient(135deg, transparent 55%, #badd54 55%);
  }
  .t-yard-copy h3 {
    font-size: 2.65rem;
  }
  .t-yard-copy p {
    max-width: 12rem;
  }
  .t-yard-art {
    display: none;
  }
  .t-yard-services {
    font-size: 0.52rem;
    gap: 0.4rem;
  }
  .template-editorial {
    padding: 0.65rem;
  }
  .t-clean-shell {
    min-height: 27.7rem;
  }
  .t-clean-nav {
    grid-template-columns: 1fr;
  }
  .t-clean-nav span {
    display: none;
  }
  .t-clean-grid {
    grid-template-columns: 1fr;
    padding: 2.2rem 0.5rem 0.8rem;
  }
  .t-clean-copy h3 {
    font-size: 2.8rem;
  }
  .t-clean-card {
    display: none;
  }
  .t-clean-proof {
    grid-template-columns: auto 1fr;
  }
  .t-clean-proof p {
    display: none;
  }
  .t-electric-nav {
    grid-template-columns: 1fr auto;
  }
  .t-electric-nav > span {
    display: none;
  }
  .t-electric-stage {
    min-height: 23rem;
  }
  .t-electric-stage h3 {
    font-size: 3.4rem;
    max-width: 100%;
  }
  .t-electric-glow {
    width: 90%;
    right: -30%;
  }
  .t-electric-mark {
    font-size: 0.85rem;
  }
  .t-electric-stats span {
    font-size: 0.52rem;
  }
  .t-build-shell {
    grid-template-columns: 3rem 1fr;
  }
  .t-build-main {
    padding: 0.9rem;
  }
  .t-build-main nav > span {
    display: none;
  }
  .t-build-main header {
    display: block;
    padding: 2rem 0 1rem;
  }
  .t-build-main header h3 {
    font-size: 2.75rem;
  }
  .t-build-main header p {
    display: none;
  }
  .t-build-projects article {
    min-height: 8rem;
  }
  .t-build-projects b {
    font-size: 0.9rem;
  }
  .t-pet-nav > span {
    font-size: 0;
  }
  .t-pet-nav b {
    font-size: 0.62rem;
  }
  .t-pet-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    min-height: 25rem;
  }
  .t-pet-hero {
    grid-column: 1/-1;
    grid-row: auto;
    min-height: 16rem;
    padding: 1.4rem 1rem;
  }
  .t-pet-hero h3 {
    font-size: 2.75rem;
  }
  .t-pet-hero i {
    width: 5rem;
    height: 5rem;
    font-size: 0.62rem;
  }
  .t-pet-services > strong {
    font-size: 1.05rem;
  }
  .t-pet-review {
    font-size: 0.72rem;
  }
  .t-bake-nav {
    grid-template-columns: 1fr;
  }
  .t-bake-nav > span {
    display: none;
  }
  .t-bake-hero {
    min-height: 21.5rem;
  }
  .t-bake-hero h3 {
    font-size: 2.8rem;
  }
  .t-bake-hero p {
    max-width: 14rem;
  }
  .t-bake-seal {
    right: -0.5rem;
    top: 1.2rem;
    width: 3.6rem;
    height: 3.6rem;
  }
  .t-bake-menu {
    grid-template-columns: auto 1fr;
  }
  .t-bake-menu p:nth-of-type(n + 2) {
    display: none;
  }
  .deliverables {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }
  .deliverables article {
    border-right: 0;
    padding: 1.3rem 0;
  }
  .about-section {
    gap: 3rem;
  }
  .about-sticky h2 {
    font-size: 3.8rem;
  }
  .story-block p {
    font-size: 1.45rem;
    margin-top: 1.5rem;
  }
  .story-block-accent {
    margin: 0 -1rem;
    padding: 1.5rem 1rem;
  }
  .process-section {
    gap: 3rem;
  }
  .process-heading h2 {
    font-size: 4rem;
  }
  .process-list li {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.25rem;
  }
  .process-list li b {
    display: block;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
  }
  .faq-section {
    gap: 2rem;
  }
  .faq-list summary {
    font-size: 1rem;
  }
  .faq-list details p {
    padding-right: 1rem;
  }
  .contact-section {
    min-height: 72svh;
    padding-inline: 1rem;
  }
  .contact-content h2 {
    font-size: 19vw;
  }
  .contact-button {
    gap: 1rem;
  }
  .site-footer {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
  }
  .site-footer > div {
    justify-content: flex-start;
  }
}
@media (max-width: 640px) {
  .template-editorial {
    padding: 0.75rem;
  }
  .t-clean-nav {
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
  }
  .t-clean-nav > span {
    display: none;
  }
  .t-clean-nav > b {
    font-size: 0.5rem;
  }
  .t-clean-hero {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 0.55rem;
    min-height: 22rem;
    padding: 1rem 0;
  }
  .t-clean-copy h3 {
    font-size: 2.2rem;
  }
  .t-clean-copy p {
    font-size: 0.65rem;
  }
  .t-clean-copy .t-cta {
    font-size: 0.5rem;
    padding: 0.55rem 0.6rem;
  }
  .t-clean-visual span {
    font-size: 1.15rem;
  }
  .t-clean-visual i {
    width: 4rem;
    height: 4rem;
  }
  .t-clean-services {
    gap: 0.35rem;
  }
  .t-clean-services p {
    display: block;
  }
  .t-clean-services span {
    display: none;
  }
  .t-clean-services b {
    font-size: 0.58rem;
  }
  .t-clean-services i {
    font-size: 0.5rem;
  }
  .template-electric {
    padding: 0.8rem;
  }
  .t-electric-nav {
    grid-template-columns: 1fr auto;
  }
  .t-electric-nav > span {
    display: none;
  }
  .t-electric-nav > b {
    font-size: 0.55rem;
  }
  .t-electric-stage {
    min-height: 23rem;
  }
  .t-electric-stage > h3 {
    top: 6rem;
    font-size: 3.6rem;
  }
  .t-electric-product {
    top: 4.7rem;
    width: 6.8rem;
    height: 14rem;
  }
  .t-electric-stage > p {
    display: none;
  }
  .t-electric-stage > .t-cta {
    font-size: 0.55rem;
  }
  .t-electric-bottom {
    grid-template-columns: 1fr 1fr;
  }
  .t-electric-bottom > strong {
    display: none;
  }
  .template-neon {
    padding: 0.45rem;
  }
  .t-build-shell {
    display: block;
    padding: 0.65rem;
  }
  .t-build-nav {
    grid-template-columns: 1fr auto;
  }
  .t-build-nav > span {
    display: none;
  }
  .t-build-feature {
    grid-template-columns: 1.15fr 0.85fr;
    padding: 0.9rem;
    min-height: 17.5rem;
  }
  .t-build-feature h3 {
    font-size: 2.6rem;
  }
  .t-build-feature p {
    font-size: 0.6rem;
  }
  .t-build-feature aside {
    min-height: 9rem;
    padding: 0.6rem;
  }
  .t-build-feature aside strong {
    font-size: 1rem;
  }
  .t-build-modules {
    gap: 0.35rem;
  }
  .t-build-modules article {
    min-height: 5.8rem;
    display: block;
    padding: 0.5rem;
  }
  .t-build-modules p {
    display: none;
  }
  .t-build-modules b {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.62rem;
  }
  .template-atmospheric {
    padding: 0.7rem;
  }
  .t-pet-nav {
    grid-template-columns: 1fr auto;
  }
  .t-pet-nav > span {
    display: none;
  }
  .t-pet-nav b {
    font-size: 0.52rem;
  }
  .t-pet-hero {
    min-height: 20rem;
    padding: 1.4rem 0.35rem 0;
  }
  .t-pet-hero > h3 {
    font-size: 2.35rem;
  }
  .t-pet-hero > p {
    font-size: 0.62rem;
    max-width: 17rem;
  }
  .t-pet-services {
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem;
  }
  .t-pet-services p {
    padding: 0.4rem;
  }
  .t-pet-services > p > i {
    width: 1.4rem;
    height: 1.4rem;
  }
  .t-pet-services span {
    font-size: 0.46rem;
  }
  .t-pet-services b {
    font-size: 0.55rem;
  }
}
@media (max-width: 640px) {
  .about-portrait {
    width: min(20rem, calc(100% - 1rem));
    margin: 1.75rem auto 1.5rem;
  }
  .about-portrait-frame {
    box-shadow: 0.7rem 0.7rem 0 var(--blue);
  }
  .about-portrait figcaption {
    margin-top: 1.2rem;
  }
}

@media (max-width: 980px) {
  .about-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .about-sticky {
    min-height: auto;
    display: block;
  }
  .about-sticky > .eyebrow {
    margin-left: 0;
  }
  .about-intro {
    min-height: 38rem;
  }
  .about-portrait {
    left: 0;
    width: clamp(19rem, 48vw, 28rem);
    max-width: none;
    margin: 0;
  }
  .about-sticky h2 {
    top: 16%;
    left: clamp(13rem, 38vw, 23rem);
    width: min(32rem, calc(100% - 14rem));
  }
  .about-sticky .text-link {
    margin: 1.25rem 0 0;
  }
}

@media (max-width: 640px) {
  .hero-scene::after {
    background: linear-gradient(
      180deg,
      #071b3012 0,
      transparent 48%,
      #071b3040 100%
    );
  }
  .about-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .about-intro {
    min-height: 30rem;
    margin-inline: -1rem;
  }
  .about-portrait {
    left: -0.5rem;
    bottom: 0;
    width: min(20rem, 78vw);
    max-height: 94%;
    margin: 0;
  }
  .about-sticky h2 {
    top: 13%;
    left: 38%;
    width: 64%;
    font-size: clamp(2.75rem, 12vw, 4rem);
    line-height: 0.84;
  }
  .about-sticky .text-link {
    margin-top: 1rem;
  }
}
/* Refined main-site theme */
h1,
h2,
h3 {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.045em;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline-color: var(--acid);
}
.scroll-progress {
  height: 3px;
}
.scroll-progress span {
  background: var(--acid);
}
.cursor-orbit {
  border-color: var(--blue);
}
.cursor-orbit.is-hovering {
  background: var(--acid);
}
.site-header {
  border-bottom-width: 1px;
}
.site-header:not(.is-scrolled) {
  color: var(--white);
  text-shadow: 0 1px 18px #08192399;
}
.site-header:not(.is-scrolled) .wordmark-mark {
  border: 1px solid #ffffff73;
}
.site-header:not(.is-scrolled) .nav-cta {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
  text-shadow: none;
}
.site-header.is-scrolled {
  box-shadow: 0 0.75rem 2.5rem #17262d0d;
}
.wordmark {
  letter-spacing: -0.015em;
}
.wordmark-mark {
  background: var(--blue);
  font-weight: 700;
}
.wordmark-mark span {
  color: var(--acid);
}
.nav-cta {
  border-width: 1px;
  background: var(--blue);
  border-color: var(--blue);
}
.nav-cta:hover {
  background: var(--acid);
  border-color: var(--acid);
}
.hero {
  border-bottom-width: 1px;
  background: #8fb5cc;
}
.hero-scene {
  background: #8fb5cc;
}
.hero-scene::before {
  opacity: 0.28;
  background-image:
    linear-gradient(#fbfaf610 1px, transparent 1px),
    linear-gradient(90deg, #fbfaf610 1px, transparent 1px);
}
.hero-scene::after {
  background:
    linear-gradient(90deg, #071923a3 0, #0719234d 38%, #07192314 72%),
    linear-gradient(180deg, #07192333 0, transparent 42%, #071923a3 100%);
}
.hero-skyline {
  filter: saturate(0.78) contrast(1.03) brightness(0.88);
}
.hero-skyline-haze {
  background: linear-gradient(
    180deg,
    #07192314 0,
    transparent 48%,
    #07192370 100%
  );
}
.hero-depth-wash {
  background: radial-gradient(
    circle at 50% 55%,
    transparent 0 30%,
    #0719231c 70%,
    #07192370 100%
  );
}
.hero-content {
  width: 100%;
  color: var(--white);
}
.hero-kicker {
  width: max-content;
  margin: 0 0 2rem 2vw;
  padding: 0.48rem 0.7rem;
  border: 1px solid #ffffff4d;
  background: #07192366;
  backdrop-filter: blur(8px);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-shadow: 0 1px 8px #071923;
}
.availability-dot {
  background: var(--acid);
  box-shadow: none;
  animation: none;
}
.hero-title {
  font-size: clamp(3rem, 8.6vw, 8.75rem);
  line-height: 0.82;
  letter-spacing: -0.06em;
  color: var(--white);
  text-shadow: 0 0.18rem 1.4rem #07192380;
}
.hero-title .line {
  padding-block: 0.03em;
}
.line-outline {
  padding-left: 4vw;
  color: #eee4d0;
  -webkit-text-stroke: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.045em;
}
.line-outline span {
  font-size: 0.84em;
}
.line-indent {
  padding-left: 22vw;
}
.hero-bottom {
  display: block;
  width: min(38rem, 52vw);
  margin: 2.25rem 5vw 0 auto;
}
.hero-bottom p {
  max-width: none;
  padding: 1rem 1.2rem;
  border-left: 2px solid var(--acid);
  background: #071923bf;
  color: var(--white);
  backdrop-filter: blur(9px);
  box-shadow: 0 1.25rem 3rem #0719232e;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.55;
}
.round-link,
.hero-sticker {
  display: none !important;
}
.marquee {
  border-bottom-width: 1px;
  background: var(--blue);
  padding: 0.82rem 0;
}
.marquee-track {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.marquee-track i {
  color: var(--acid);
}
.section-number {
  border-color: #52616980;
  font-weight: 600;
}
.eyebrow {
  font-weight: 700;
  color: #43545c;
}
.problem-grid {
  gap: 1.1rem;
}
.problem-card {
  border: 1px solid #817669;
  background: #c9bdad;
  box-shadow: 0 1.5rem 3.5rem #17262d12;
}
.problem-card-yellow {
  background: #e1ddd3;
}
.problem-card-blue {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}
.scribble {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3.2rem;
  opacity: 0.24;
  transform: none;
}
.card-answer {
  font-weight: 600;
  letter-spacing: 0.08em;
}
.demo-section {
  background: #17282f;
}
.demo-copy > p:not(.eyebrow) {
  color: #c9cecc;
}
.picker-button {
  border-color: #718087;
  color: var(--white);
}
.picker-button:hover,
.picker-button.is-active {
  background: var(--acid);
  border-color: var(--acid);
}
.browser-frame {
  border: 1px solid #d8d6d0;
  border-radius: 0.35rem;
  box-shadow: 0 2rem 4.5rem #07131873;
  transform: none;
}
.browser-stage:hover .browser-frame {
  transform: translateY(-6px);
}
.drag-note {
  color: #c8b98f;
  transform: none;
}
.deliverables {
  border-color: #68767b;
}
.deliverables article {
  border-color: #68767b;
}
.deliverables span {
  color: var(--acid);
}
.about-section {
  border-bottom-width: 1px;
}
.about-sticky h2 span {
  color: #7f4f43;
}
.about-portrait {
  filter: drop-shadow(0.35rem 0.6rem 1.2rem #17262d24);
}
.text-link {
  border-bottom-width: 1px;
}
.about-story,
.story-block {
  border-width: 1px;
}
.story-block-accent {
  background: #d8ccb3;
}
.process-section {
  background: #d5c9ba;
}
.process-list {
  border-top-width: 1px;
}
.process-list li {
  border-bottom-width: 1px;
}
.process-list li > div {
  min-width: 0;
}
.process-list b {
  color: #5f554b;
}
.faq-list {
  border-top-width: 1px;
}
.faq-list details {
  border-bottom-width: 1px;
}
.faq-list summary {
  font-weight: 700;
}
.faq-list summary span {
  color: #7f4f43;
}
.contact-section {
  background: #284b58;
}
.contact-content .eyebrow {
  color: #d9c89e;
}
.contact-button {
  border: 1px solid #d5c49a;
  background: #d5c49a;
  box-shadow: 0 1rem 2.5rem #10272f4d;
}
.contact-button:hover {
  background: var(--white);
  border-color: var(--white);
}
.contact-email:hover {
  color: #e4d5b2;
}
.contact-orbit {
  opacity: 0.45;
}
.site-footer {
  border-top-width: 1px;
}

.footer-mark {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.footer-mark img {
  display: block;
  width: 4rem;
  height: 4rem;
  object-fit: contain;
}

@media (max-width: 980px) {
  .site-header:not(.is-scrolled) .site-nav.is-open {
    color: var(--ink);
    text-shadow: none;
  }
  .hero-kicker {
    margin-left: 0;
  }
  .hero-bottom {
    width: min(36rem, 68vw);
    margin-right: 2vw;
    margin-left: auto;
  }
}
@media (max-width: 640px) {
  .hero-scene::after {
    background:
      linear-gradient(90deg, #0719238f 0, #07192338 75%),
      linear-gradient(180deg, #0719232b 0, transparent 38%, #071923b8 100%);
  }
  .hero-title {
    font-size: clamp(2.65rem, 11vw, 4.3rem);
    line-height: 0.88;
    letter-spacing: -0.05em;
  }
  .line-outline {
    padding-left: 0;
  }
  .line-outline span {
    font-size: 0.77em;
  }
  .line-indent {
    padding-left: 7vw;
  }
  .hero-kicker {
    font-size: 0.68rem;
    line-height: 1.35;
    letter-spacing: 0.09em;
  }
  .hero-bottom {
    width: 100%;
    margin: 2rem 0 0;
  }
  .hero-bottom p {
    font-size: 1rem;
    padding: 0.9rem 1rem;
  }
  .browser-frame {
    box-shadow: 0 1.2rem 2.8rem #07131866;
  }
}

.about-section {
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5vw;
}
.about-sticky h2 {
  left: clamp(25rem, 29vw, 35rem);
  width: min(27rem, 24vw);
  font-size: clamp(3.15rem, 3.8vw, 5rem);
  line-height: 0.92;
}

@media (max-width: 1180px) {
  .about-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-sticky {
    position: static;
  }
  .about-intro {
    min-height: 38rem;
  }
  .about-portrait {
    left: 0;
    width: clamp(19rem, 42vw, 28rem);
  }
  .about-sticky h2 {
    top: 18%;
    left: clamp(20rem, 46vw, 29rem);
    width: min(30rem, 46vw);
    font-size: clamp(3.2rem, 6vw, 5.2rem);
  }
}

@media (max-width: 640px) {
  .about-section {
    display: block;
    padding: 3.5rem 1rem 4rem;
  }

  .about-sticky {
    position: relative;
  }

  .about-intro {
    position: relative;
    min-height: 24rem;
    margin: 1.5rem 0 0;
    padding: 0;
  }

  .about-portrait {
    position: absolute;
    left: 0;
    bottom: 0;
    width: min(18rem, 72vw);
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: left bottom;
  }

  .about-sticky h2 {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin: 1.5rem 0 1.25rem;
    padding: 0;
    font-size: clamp(2.75rem, 12vw, 4rem);
    line-height: 0.9;
  }

  .about-sticky .text-link {
    position: relative;
    display: inline-flex;
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .hero {
    height: auto;
    min-height: 92svh;
  }
  .hero-scene {
    position: relative;
    min-height: 92svh;
  }
  .hero-content {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .cursor-orbit {
    display: none;
  }
  .marquee-track {
    transform: none;
  }
}

/* Supplied Created by Alvin brand assets. */
@media (max-width: 980px) {
  .site-header {
    padding: 0.5rem 1.5rem;
  }
  .brand-logo {
    height: 3.2rem;
  }
  .site-nav {
    inset: 4.35rem 0 0;
  }
}
@media (max-width: 640px) {
  .site-header {
    padding: 0.4rem 1rem;
  }
  .brand-logo {
    height: 2.9rem;
  }
  .site-nav {
    inset: 3.95rem 0 0;
  }
}

.picker-more {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0.55rem 0 0;
  color: #d5c59e;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.picker-more::before {
  content: '';
  width: 2.5rem;
  height: 1px;
  flex: none;
  background: currentColor;
}

@media (max-width: 640px) {
  .picker-more {
    font-size: 0.65rem;
    letter-spacing: 0.075em;
  }
}

.why-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 72rem;
  background: #f5f4f0;
}

.why-backdrop {
  position: absolute;
  z-index: -2;
  inset: 0;
  pointer-events: none;
}

.why-backdrop img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.82) contrast(0.96);
}

.why-backdrop::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      110deg,
      #f5f4f0 0%,
      rgb(245 244 240 / 96%) 28%,
      rgb(245 244 240 / 64%) 49%,
      rgb(245 244 240 / 8%) 74%
    ),
    linear-gradient(
      180deg,
      #f5f4f0 0%,
      transparent 28%,
      rgb(245 244 240 / 85%) 87%,
      #f5f4f0 100%
    );
}

.why-content {
  position: relative;
  z-index: 1;
}

@media (max-width: 980px) {
  .why-section {
    min-height: 0;
  }

  .why-backdrop {
    height: 54rem;
  }

  .why-backdrop img {
    object-position: 58% top;
  }

  .why-backdrop::after {
    background: linear-gradient(
      180deg,
      #f5f4f0 0%,
      rgb(245 244 240 / 72%) 36%,
      #f5f4f0 100%
    );
  }
}

@media (max-width: 640px) {
  .why-backdrop {
    height: 40rem;
  }

  .why-backdrop img {
    object-position: 61% top;
    opacity: 0.72;
  }
}

.why-section .section-intro > p:last-child {
  position: relative;
  z-index: 2;
  padding: 1.1rem 1.25rem;
  border-left: 3px solid var(--acid);
  background: rgb(23 38 45 / 92%);
  color: var(--white);
  box-shadow: 0 1rem 2.5rem rgb(23 38 45 / 22%);
  backdrop-filter: blur(12px);
  text-shadow: none;
}

@media (max-width: 640px) {
  .why-section .section-intro > p:last-child {
    width: 100%;
    margin-top: 1.5rem;
    background: rgb(23 38 45 / 95%);
  }
}

.site-footer {
  display: grid;
  grid-template-columns: 6rem minmax(15rem, 1fr) auto;
  align-items: center;
  gap: 2rem;
  min-height: 0;
  padding: 1.75rem 3vw;
  border-top: 1px solid var(--line);
}

.footer-mark {
  display: block;
  width: 5rem;
  height: 5rem;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.footer-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer > p {
  margin: 0;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

@media (max-width: 760px) {
  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 1.25rem;
    padding: 2rem 1rem;
  }

  .footer-mark {
    width: 4.5rem;
    height: 4.5rem;
  }

  .site-footer > p {
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

/* =========================================================
   ELECTRIC SHOWCASE
   ========================================================= */

.template-electric {
  background: #07111c;
  color: #f4f7f8;
  overflow: hidden;
}

.template-electric .t-electric-preview {
  min-height: 100%;
  position: relative;
  background:
    radial-gradient(
      circle at 72% 58%,
      rgba(41, 101, 150, 0.35),
      transparent 28%
    ),
    linear-gradient(135deg, #07111c 0%, #0a1826 55%, #050a10 100%);
}

.template-electric .t-electric-nav {
  position: relative;
  z-index: 5;
}

.template-electric .t-electric-hero {
  position: relative;
  min-height: 420px;
  padding: 34px 34px 28px;
}

.template-electric .t-electric-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 3;
}

.template-electric .t-electric-meta small {
  font-size: 9px;
  letter-spacing: 0.18em;
  opacity: 0.7;
}

.template-electric .t-electric-meta span {
  font-size: 11px;
  line-height: 1.05;
  letter-spacing: 0.12em;
  text-align: right;
}

.template-electric .t-electric-heading {
  position: relative;
  z-index: 4;
  margin-top: 45px;
  max-width: 390px;
}

.template-electric .t-electric-heading h3 {
  margin: 0;
  font-size: clamp(52px, 7vw, 90px);
  line-height: 0.78;
  letter-spacing: -0.07em;
  font-weight: 800;
}

.template-electric .t-electric-heading h3 em {
  color: #77b9e8;
  font-style: normal;
}

.template-electric .t-electric-heading p {
  width: 220px;
  margin-top: 26px;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.68);
}

.template-electric .t-electric-car {
  position: absolute;
  width: 58%;
  height: 52%;
  right: -3%;
  top: 25%;
  transform: skewX(-8deg);
}

.template-electric .t-electric-car-glow {
  position: absolute;
  inset: 15% 5%;
  border-radius: 50%;
  background: rgba(55, 130, 185, 0.28);
  filter: blur(45px);
}

.template-electric .t-electric-car-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
  border-radius: 50% 48% 18% 12%;
  background: linear-gradient(
    150deg,
    transparent 0 18%,
    rgba(122, 181, 221, 0.5) 19%,
    #162d40 31%,
    #09131d 66%,
    #02070b 100%
  );
  box-shadow:
    0 35px 50px rgba(0, 0, 0, 0.55),
    inset 0 2px 15px rgba(255, 255, 255, 0.12);
}

.template-electric .t-electric-car-shape span {
  position: absolute;
  width: 48%;
  height: 36%;
  top: 9%;
  right: 17%;
  border-radius: 70% 35% 10% 10%;
  background: linear-gradient(135deg, #294b61, #07111a);
  opacity: 0.9;
}

.template-electric .t-electric-car-shape i {
  position: absolute;
  width: 85%;
  height: 3px;
  right: 4%;
  bottom: 27%;
  background: #79bde9;
  box-shadow: 0 0 18px #5caee3;
}

.template-electric .t-electric-package {
  position: absolute;
  right: 28px;
  bottom: 20px;
  z-index: 5;
  width: 120px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(3, 10, 16, 0.72);
  backdrop-filter: blur(8px);
}

.template-electric .t-electric-package small,
.template-electric .t-electric-package span,
.template-electric .t-electric-package b {
  display: block;
  font-size: 7px;
  letter-spacing: 0.13em;
}

.template-electric .t-electric-package strong {
  display: block;
  margin: 8px 0;
  font-size: 27px;
  color: #8bc9ef;
}

.template-electric .t-electric-bottom {
  display: grid;
  grid-template-columns: 1fr 1.5fr auto;
  gap: 15px;
  align-items: center;
  padding: 14px 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 8px;
  letter-spacing: 0.13em;
}

/* =========================================================
   NEON MODULAR
   ========================================================= */

.template-neon {
  background: #111;
  color: #f4f4ee;
  overflow: hidden;
}

.template-neon .t-build-shell {
  min-height: 100%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #111;
  background-size: 32px 32px;
}

.template-neon .t-build-nav {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.template-neon .t-build-nav strong i {
  color: #b8ff00;
  font-style: normal;
}

.template-neon .t-build-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.template-neon .t-build-intro {
  min-height: 340px;
  padding: 42px 36px;
  background: #111;
}

.template-neon .t-build-intro small {
  font-size: 8px;
  letter-spacing: 0.17em;
  color: #b8ff00;
}

.template-neon .t-build-intro h3 {
  margin: 20px 0;
  font-size: clamp(60px, 8vw, 105px);
  line-height: 0.75;
  letter-spacing: -0.07em;
}

.template-neon .t-build-intro h3 span {
  color: #b8ff00;
}

.template-neon .t-build-intro p {
  max-width: 250px;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

.template-neon .t-build-arrow {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 12px;
  background: #b8ff00;
  color: #111;
  font-size: 8px;
  letter-spacing: 0.08em;
}

.template-neon .t-build-project {
  min-height: 340px;
  padding: 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(145deg, rgba(184, 255, 0, 0.16), transparent 50%), #181818;
}

.template-neon .t-build-project span {
  font-size: 8px;
  letter-spacing: 0.14em;
  color: #b8ff00;
}

.template-neon .t-build-project strong {
  font-size: clamp(30px, 4vw, 53px);
  line-height: 0.82;
  letter-spacing: -0.06em;
}

.template-neon .t-build-project i {
  font-size: 8px;
  font-style: normal;
  letter-spacing: 0.12em;
}

.template-neon .t-build-project b {
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: #b8ff00;
  font-size: 8px;
}

.template-neon .t-build-module {
  padding: 20px;
  min-height: 110px;
  background: #151515;
}

.template-neon .t-build-module small {
  color: #b8ff00;
  font-size: 8px;
}

.template-neon .t-build-module strong {
  display: block;
  margin-top: 20px;
  font-size: 13px;
}

.template-neon .t-build-module p {
  margin: 5px 0 0;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
}

.template-neon .t-build-module-one {
  grid-column: 1;
}

.template-neon .t-build-module-two,
.template-neon .t-build-module-three {
  display: none;
}

/* =========================================================
   ATMOSPHERIC
   ========================================================= */

.template-atmospheric {
  background: #e8dfd2;
  color: #34352f;
  overflow: hidden;
}

.template-atmospheric .t-pet-shell {
  min-height: 100%;
  background: #e8dfd2;
}

.template-atmospheric .t-pet-nav {
  position: relative;
  z-index: 5;
}

.template-atmospheric .t-pet-hero {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  padding: 50px 36px;
}

.template-atmospheric .t-pet-copy {
  position: relative;
  z-index: 4;
  max-width: 440px;
}

.template-atmospheric .t-pet-copy small {
  font-size: 8px;
  letter-spacing: 0.16em;
  color: #777466;
}

.template-atmospheric .t-pet-copy h3 {
  margin: 22px 0 18px;
  font-family: Georgia, serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  font-weight: 400;
}

.template-atmospheric .t-pet-copy h3 em {
  color: #8b755f;
  font-style: italic;
}

.template-atmospheric .t-pet-copy p {
  max-width: 270px;
  font-size: 11px;
  line-height: 1.6;
  color: #6d6b61;
}

.template-atmospheric .t-pet-copy .t-cta {
  display: inline-block;
  margin-top: 16px;
  color: #34352f;
  border-bottom: 1px solid #34352f;
  font-size: 9px;
  letter-spacing: 0.08em;
  padding-bottom: 4px;
}

.template-atmospheric .t-pet-atmosphere {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.template-atmospheric .t-pet-sun {
  position: absolute;
  width: 230px;
  height: 230px;
  right: 4%;
  top: 7%;
  border-radius: 50%;
  background: #c9ad8b;
  opacity: 0.42;
  filter: blur(2px);
}

.template-atmospheric .t-pet-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.template-atmospheric .t-pet-blob-one {
  width: 270px;
  height: 170px;
  right: -40px;
  bottom: -30px;
  background: #9c947f;
  opacity: 0.35;
  transform: rotate(-18deg);
}

.template-atmospheric .t-pet-blob-two {
  width: 180px;
  height: 260px;
  right: 18%;
  bottom: -100px;
  background: #776e5c;
  opacity: 0.22;
  transform: rotate(18deg);
}

.template-atmospheric .t-pet-dog {
  position: absolute;
  width: 170px;
  height: 210px;
  right: 13%;
  bottom: 20px;
  border-radius: 48% 48% 35% 35%;
  background: #b6a188;
  opacity: 0.75;
  transform: rotate(7deg);
  box-shadow: inset -15px -10px 25px rgba(70, 55, 38, 0.12);
}

.template-atmospheric .t-pet-dog span {
  position: absolute;
  width: 75px;
  height: 85px;
  top: 24px;
  left: 47px;
  border-radius: 50%;
  background: #c6b49c;
}

.template-atmospheric .t-pet-dog i {
  position: absolute;
  width: 30px;
  height: 45px;
  top: 0;
  left: 17px;
  border-radius: 80% 20% 80% 20%;
  background: #88745d;
  transform: rotate(-22deg);
}

.template-atmospheric .t-pet-services {
  background: rgba(255, 255, 255, 0.18);
  border-top: 1px solid rgba(60, 50, 40, 0.12);
}

.template-atmospheric .t-pet-services p {
  border-color: rgba(60, 50, 40, 0.12);
}

.template-atmospheric .t-pet-services i {
  color: #8b755f;
}

/* =========================================================
   LIVE WEBSITE PREVIEW
   ========================================================= */

.browser-site {
  position: relative;
  width: 100%;
  height: clamp(500px, 60vh, 620px);
  min-height: 500px;
  overflow: hidden;
}

.browser-site > iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  border: 0;
  margin: 0;
  padding: 0;
  background: #f4f1eb;

  opacity: 1;
  transition: opacity 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.browser-site {
  position: relative;
  width: 100%;
  height: clamp(500px, 60vh, 620px);
  min-height: 500px;
  overflow: hidden;
}

.browser-site > iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;

  border: 0;
  margin: 0;
  padding: 0;

  background: #f4f1eb;

  opacity: 1;

  transition: opacity 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.browser-site > iframe.is-loading {
  opacity: 0;
}

.business-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.picker-button {
  cursor: pointer;
}

/* =========================================================
   LEGAL PAGES (privacy.html, terms.html)
   ========================================================= */

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 2.5rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.legal-header .brand-logo {
  height: 3.25rem;
}

.legal-back {
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.legal-back:hover {
  color: var(--coral);
}

.legal-page {
  width: min(100% - 2rem, 46rem);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(4rem, 10vw, 7rem);
}

.legal-intro {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}

.legal-intro h1 {
  font-size: clamp(2.75rem, 7vw, 4.75rem);
}

.legal-lede {
  margin-top: 1.25rem;
  color: var(--muted);
  font-style: italic;
  font-size: 1.05rem;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  margin: 1.75rem 0 0;
}

.legal-meta dt {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #43545c;
}

.legal-meta dd {
  margin: 0.2rem 0 0;
  font-weight: 700;
}

.legal-section {
  padding: 2.25rem 0;
  border-bottom: 1px solid #52616933;
}

.legal-section:last-child {
  border-bottom: 0;
}

.legal-section h2 {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.legal-num {
  flex: none;
  display: inline-grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0;
}

.legal-section p + p {
  margin-top: 1rem;
}

.legal-section a,
.legal-contact a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.legal-section a:hover {
  color: var(--coral);
}

.legal-contact {
  font-style: normal;
  line-height: 1.7;
}

.footer-links a[aria-current='page'] {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

@media (max-width: 640px) {
  .legal-header {
    padding: 0.75rem 1rem;
  }

  .legal-header .brand-logo {
    height: 2.75rem;
  }
}
