@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Syne:wght@700;800&display=swap");

:root {
  --bg: #04040e;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-solid: #0a0a18;
  --line: rgba(255, 255, 255, 0.08);
  --text: #eeeeff;
  --muted: rgba(238, 238, 255, 0.48);
  --violet: #7c6fff;
  --cyan: #00d4ff;
  --gradient: linear-gradient(135deg, #7c6fff, #00d4ff);
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
  --cx: 50vw;
  --cy: 30vh;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: #6257c9 var(--bg); }
body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font: 300 16px/1.65 "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(520px circle at var(--cx) var(--cy), rgba(124, 111, 255, .1), transparent 70%),
    radial-gradient(circle at 50% -20%, rgba(0, 212, 255, .06), transparent 38%);
  pointer-events: none;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4, .brand { font-family: "Syne", sans-serif; letter-spacing: -.035em; }
::selection { color: white; background: rgba(124, 111, 255, .6); }

.grain {
  position: fixed;
  z-index: 999;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .035;
  pointer-events: none;
}
.orb {
  position: fixed;
  z-index: -2;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(140px);
  opacity: .14;
  pointer-events: none;
}
.orb.one { top: -14rem; left: -10rem; background: var(--violet); }
.orb.two { right: -14rem; bottom: -14rem; background: var(--cyan); }
.progress {
  position: fixed;
  z-index: 1100;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  box-shadow: 0 0 14px var(--cyan);
}
.container { width: min(1180px, calc(100% - 44px)); margin-inline: auto; }
.gradient-text {
  color: transparent;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: rgba(238, 238, 255, .64);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--gradient); }
.section { position: relative; padding: 104px 0; }
.section-head { max-width: 700px; margin-bottom: 46px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2.3rem, 5vw, 4.7rem); line-height: 1; }
.section-head p { max-width: 590px; margin-top: 18px; color: var(--muted); }
.section-head.center p { margin-inline: auto; }

/* Shared header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 16px;
  left: 50%;
  width: min(1180px, calc(100% - 28px));
  transform: translateX(-50%);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 12px 0 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(4, 4, 14, .7);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .26);
  backdrop-filter: blur(24px) saturate(140%);
}
.brand { position: relative; font-size: 1.18rem; font-weight: 800; }
.brand::after {
  content: "";
  position: absolute;
  top: 4px;
  right: -8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}
.nav-center { display: flex; align-items: center; gap: 30px; }
.nav-link {
  color: rgba(238, 238, 255, .48);
  font-size: .78rem;
  transition: transform .22s, color .22s, text-shadow .22s;
}
.nav-link:hover, .nav-link.active {
  color: var(--text);
  transform: translateY(-2px);
  text-shadow: 0 0 18px rgba(124, 111, 255, .7);
}
.nav-actions { display: flex; align-items: center; gap: 9px; }
.icon-button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--panel);
  cursor: pointer;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.icon-button:hover { transform: translateY(-2px) rotate(3deg); border-color: rgba(124, 111, 255, .35); box-shadow: 0 0 24px rgba(124, 111, 255, .16); }
.icon-button svg { width: 17px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  color: var(--text);
  background: var(--panel);
  cursor: pointer;
  font-size: .8rem;
  font-weight: 500;
  transition: transform .24s, box-shadow .24s, border-color .24s;
}
.btn:hover { transform: translateY(-3px); border-color: rgba(255, 255, 255, .24); box-shadow: 0 15px 38px rgba(0, 0, 0, .28), 0 0 28px rgba(124, 111, 255, .14); }
.btn-primary {
  border: 0;
  background: linear-gradient(110deg, #695cff, #8b71ff 34%, #00d4ff 52%, #695cff);
  background-size: 200% 100%;
  box-shadow: 0 12px 34px rgba(124, 111, 255, .25);
  animation: shimmer 4.5s linear infinite;
}
.btn-sm { min-height: 40px; padding-inline: 17px; font-size: .74rem; }
.btn svg { width: 14px; transition: transform .22s; }
.btn:hover svg { transform: translateX(3px); }
@keyframes shimmer { to { background-position: -200% 0; } }

/* Industry drawer */
.drawer-backdrop {
  position: fixed;
  z-index: 1002;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(10px);
  transition: opacity .3s, visibility .3s;
}
.drawer {
  position: fixed;
  z-index: 1003;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(560px, 100%);
  height: 100dvh;
  padding: 28px;
  border-left: 1px solid var(--line);
  background: rgba(8, 8, 22, .96);
  box-shadow: -30px 0 100px rgba(0, 0, 0, .5);
  transform: translateX(102%);
  transition: transform .38s cubic-bezier(.2, .8, .2, 1);
}
body.menu-open .drawer-backdrop { visibility: visible; opacity: 1; }
body.menu-open .drawer { transform: translateX(0); }
.drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.drawer-title { font-size: 1.35rem; }
.search-wrap { position: relative; margin-bottom: 18px; }
.search-wrap svg { position: absolute; top: 50%; left: 17px; width: 17px; color: var(--muted); transform: translateY(-50%); }
.industry-search {
  width: 100%;
  height: 54px;
  padding: 0 18px 0 48px;
  border: 1px solid var(--line);
  border-radius: 15px;
  outline: 0;
  color: var(--text);
  background: rgba(255, 255, 255, .035);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.industry-search:focus { transform: translateY(-2px); border-color: rgba(124, 111, 255, .45); box-shadow: 0 0 0 4px rgba(124, 111, 255, .07); }
.industry-search::placeholder { color: rgba(238, 238, 255, .25); }
.drawer-meta { display: flex; justify-content: space-between; margin-bottom: 12px; color: rgba(238, 238, 255, .3); font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; }
.industry-list { display: grid; gap: 10px; overflow-y: auto; padding: 2px 4px 22px 0; }
.industry-item {
  display: grid;
  grid-template-columns: 78px 1fr auto;
  gap: 15px;
  align-items: center;
  min-height: 80px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .025);
  transition: transform .24s, box-shadow .24s, border-color .24s;
}
.industry-item:hover { transform: translateX(-5px); border-color: rgba(124, 111, 255, .32); box-shadow: 0 12px 35px rgba(0, 0, 0, .25), 0 0 26px rgba(124, 111, 255, .08); }
.industry-thumb { width: 78px; height: 60px; object-fit: cover; border-radius: 11px; filter: saturate(.8); }
.industry-item h4 { font-size: .9rem; }
.industry-item p { color: var(--muted); font-size: .69rem; }
.industry-arrow { margin-right: 8px; color: rgba(238, 238, 255, .3); }
.industry-item.is-upcoming { cursor: default; opacity: .58; }
.industry-item.is-upcoming:hover { transform: none; border-color: var(--line); box-shadow: none; }
.availability-tag {
  display: inline-flex;
  margin-top: 7px;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(238,238,255,.38);
  font-size: .55rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.availability-tag.live { border-color: rgba(0,212,255,.25); color: var(--cyan); background: rgba(0,212,255,.06); }
.empty-search { display: none; padding: 50px 20px; color: var(--muted); text-align: center; }

/* Homepage */
.hero {
  position: relative;
  display: grid;
  min-height: 880px;
  place-items: center;
  overflow: hidden;
  padding: 150px 0 90px;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  transform: perspective(700px) rotateX(64deg) scale(1.8) translateY(18%);
  transform-origin: bottom;
}
.hero-content { position: relative; z-index: 2; width: min(980px, calc(100% - 34px)); text-align: center; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 25px;
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(238, 238, 255, .58);
  background: rgba(255, 255, 255, .025);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px transparent, 0 0 15px var(--cyan); } }
.hero h1 { font-size: clamp(3.5rem, 8vw, 7.8rem); line-height: .9; text-wrap: balance; }
.hero-copy { max-width: 630px; margin: 28px auto 34px; color: var(--muted); font-size: 1.04rem; }
.hero-actions { display: flex; justify-content: center; gap: 12px; }
.floating-card {
  position: absolute;
  z-index: 1;
  width: 230px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: rgba(10, 10, 24, .6);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  animation: float 6s ease-in-out infinite;
}
.floating-card img { width: 100%; height: 126px; object-fit: cover; border-radius: 12px; }
.floating-card div { display: flex; justify-content: space-between; align-items: center; padding: 12px 4px 3px; }
.floating-card strong { font-family: "Syne"; font-size: .78rem; }
.floating-card span { color: var(--cyan); font-size: .64rem; }
.float-one { top: 25%; left: 4%; transform: rotate(-7deg); }
.float-two { right: 3%; bottom: 18%; transform: rotate(6deg); animation-delay: -3s; }
@keyframes float { 0%, 100% { margin-top: 0; } 50% { margin-top: -16px; } }
.trust-row { position: absolute; bottom: 36px; left: 50%; display: flex; gap: 34px; color: rgba(238, 238, 255, .25); font: 700 .72rem "Syne"; letter-spacing: .05em; transform: translateX(-50%); white-space: nowrap; }

.glass-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: var(--panel);
  box-shadow: inset 0 1px rgba(255, 255, 255, .04), 0 24px 70px rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px);
  transition: transform .28s, box-shadow .28s, border-color .28s;
}
.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .5), transparent);
}
.glass-card:hover { transform: translateY(-5px); border-color: rgba(124, 111, 255, .28); box-shadow: 0 25px 70px rgba(0, 0, 0, .3), 0 0 40px rgba(124, 111, 255, .1); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card { min-height: 285px; padding: 30px; }
.value-icon { display: grid; width: 46px; height: 46px; margin-bottom: 55px; place-items: center; border: 1px solid var(--line); border-radius: 14px; color: #a59cff; background: rgba(124, 111, 255, .1); box-shadow: 0 0 28px rgba(124, 111, 255, .1); }
.value-card h3 { margin-bottom: 10px; font-size: 1.24rem; }
.value-card p { color: var(--muted); font-size: .83rem; }

.catalog-preview { display: grid; grid-template-columns: repeat(5, 1fr); gap: 13px; }
.catalog-tile { position: relative; min-height: 230px; overflow: hidden; border-radius: 18px; }
.catalog-tile img { position: absolute; width: 100%; height: 100%; object-fit: cover; transition: transform .5s, filter .5s; }
.catalog-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 30%, rgba(4, 4, 14, .92)); }
.catalog-tile div { position: absolute; z-index: 2; right: 18px; bottom: 17px; left: 18px; }
.catalog-tile h3 { font-size: 1rem; }
.catalog-tile p { color: rgba(238, 238, 255, .5); font-size: .66rem; }
.catalog-tile:hover img { transform: scale(1.08); filter: saturate(1.2); }
.catalog-tile:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0, 0, 0, .35), 0 0 30px rgba(124, 111, 255, .12); }
.catalog-tile.is-upcoming { cursor: default; opacity: .55; }
.catalog-tile.is-upcoming img { filter: grayscale(.35) saturate(.45); }
.catalog-tile.is-upcoming:hover { transform: none; box-shadow: none; }
.catalog-tile.is-upcoming:hover img { transform: none; filter: grayscale(.35) saturate(.45); }
.tile-status {
  position: absolute;
  z-index: 3;
  top: 13px;
  left: 13px;
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(4,4,14,.68);
  color: rgba(238,238,255,.68);
  font-size: .56rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}
.catalog-tile.is-live .tile-status { border-color: rgba(0,212,255,.3); color: var(--cyan); }
.center-action { display: flex; justify-content: center; margin-top: 32px; }

.cta-card { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 420px; }
.cta-copy { padding: 55px; }
.cta-copy h2 { max-width: 600px; font-size: clamp(2.5rem, 5vw, 4.8rem); line-height: .98; }
.cta-copy p { max-width: 500px; margin: 18px 0 28px; color: var(--muted); }
.cta-visual { position: relative; overflow: hidden; border-left: 1px solid var(--line); background: radial-gradient(circle, rgba(0, 212, 255, .18), transparent 56%); }
.ring { position: absolute; top: 50%; left: 50%; width: 240px; height: 240px; border: 1px solid rgba(124, 111, 255, .25); border-radius: 50%; transform: translate(-50%, -50%); animation: spin 12s linear infinite; }
.ring::before, .ring::after { content: ""; position: absolute; border-radius: 50%; }
.ring::before { inset: 35px; border: 1px dashed rgba(0, 212, 255, .28); }
.ring::after { top: -5px; left: 50%; width: 10px; height: 10px; background: var(--cyan); box-shadow: 0 0 18px var(--cyan); }
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* Inner pages */
.page-hero { padding: 170px 0 74px; }
.page-hero h1 { max-width: 900px; font-size: clamp(3.2rem, 7vw, 6.8rem); line-height: .92; }
.page-hero p { max-width: 660px; margin-top: 24px; color: var(--muted); font-size: 1.02rem; }
.breadcrumbs { display: flex; gap: 9px; margin-bottom: 20px; color: rgba(238, 238, 255, .3); font-size: .7rem; }
.breadcrumbs a:hover { color: var(--cyan); }
.industry-hero { position: relative; overflow: hidden; padding-bottom: 92px; }
.industry-hero-bg { position: absolute; z-index: -1; top: 0; right: 0; width: 48%; height: 100%; object-fit: cover; opacity: .22; mask-image: linear-gradient(90deg, transparent, black); }
.industry-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.pill { padding: 7px 12px; border: 1px solid var(--line); border-radius: 999px; color: rgba(238, 238, 255, .48); background: rgba(255, 255, 255, .025); font-size: .68rem; }
.template-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.template-card { display: flex; flex-direction: column; }
.template-preview {
  position: relative;
  height: 340px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #10101c;
}
.browser-bar { position: absolute; z-index: 3; top: 12px; right: 12px; left: 12px; display: flex; align-items: center; gap: 5px; height: 27px; padding: 0 10px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 9px; background: rgba(4, 4, 14, .72); backdrop-filter: blur(9px); }
.browser-bar i { width: 5px; height: 5px; border-radius: 50%; background: rgba(255, 255, 255, .28); }
.mock-site { position: absolute; inset: 0; padding: 65px 26px 24px; background-size: cover; background-position: center; transition: transform .6s; }
.template-card:hover .mock-site { transform: scale(1.025); }
.mock-site::after { content: ""; position: absolute; inset: 0; background: linear-gradient(145deg, rgba(3, 3, 10, .25), rgba(3, 3, 10, .85)); }
.mock-content { position: relative; z-index: 2; }
.mock-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 72px; font: 700 .55rem "Syne"; }
.mock-nav span:last-child { padding: 5px 9px; border-radius: 999px; background: white; color: #111; }
.mock-label { color: rgba(255, 255, 255, .65); font-size: .52rem; letter-spacing: .12em; text-transform: uppercase; }
.mock-title { max-width: 250px; margin-top: 8px; color: white; font-size: 2rem; line-height: .9; }
.mock-button { display: inline-flex; margin-top: 16px; padding: 8px 13px; border-radius: 999px; background: var(--demo-accent, #7c6fff); color: white; font-size: .54rem; font-weight: 600; }
.style-minimal .mock-site::after { background: linear-gradient(145deg, rgba(246, 244, 238, .3), rgba(10, 10, 13, .67)); }
.style-bold .mock-title { font-size: 2.35rem; text-transform: uppercase; }
.template-info { display: flex; flex: 1; flex-direction: column; padding: 25px; }
.template-topline { display: flex; justify-content: space-between; gap: 15px; }
.template-info h3 { font-size: 1.22rem; }
.template-tag { color: var(--cyan); font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; }
.template-info p { margin: 11px 0 22px; color: var(--muted); font-size: .78rem; }
.template-actions { display: flex; gap: 8px; margin-top: auto; }
.template-actions .btn { flex: 1; }

.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.content-card { padding: 38px; }
.content-card h3 { margin-bottom: 12px; font-size: 1.4rem; }
.content-card p { color: var(--muted); font-size: .86rem; }
.number { margin-bottom: 42px; color: rgba(238, 238, 255, .18); font: 800 2.2rem "Syne"; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; }
.contact-copy { padding: 50px; border-right: 1px solid var(--line); background: radial-gradient(circle at 0 0, rgba(124, 111, 255, .14), transparent 50%); }
.contact-copy h2 { font-size: clamp(2.4rem, 5vw, 4.6rem); line-height: .96; }
.contact-copy p { margin-top: 20px; color: var(--muted); }
.contact-details { display: grid; gap: 10px; margin-top: 48px; color: rgba(238, 238, 255, .55); font-size: .78rem; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 50px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { color: rgba(238, 238, 255, .46); font-size: .65rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: 0;
  color: var(--text);
  background: rgba(4, 4, 14, .5);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.field input, .field select { height: 51px; padding: 0 15px; }
.field textarea { min-height: 125px; padding: 13px 15px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { transform: translateY(-2px); border-color: rgba(124, 111, 255, .45); box-shadow: 0 0 0 3px rgba(124, 111, 255, .07); }
.field input::placeholder, .field textarea::placeholder { color: rgba(238, 238, 255, .2); }
.form-status { grid-column: 1 / -1; min-height: 20px; color: #6fe9b1; font-size: .72rem; text-align: center; }
.contact-options { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-option { display: flex; flex-direction: column; min-height: 420px; padding: 40px; }
.contact-option-icon { display: grid; width: 55px; height: 55px; margin-bottom: auto; place-items: center; border: 1px solid var(--line); border-radius: 16px; color: var(--cyan); background: rgba(0,212,255,.06); font-size: 1.4rem; }
.contact-option small { margin-top: 55px; color: var(--cyan); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }
.contact-option h2 { margin: 12px 0; font-size: clamp(2rem, 4vw, 3.4rem); line-height: .98; }
.contact-option p { max-width: 460px; color: var(--muted); font-size: .84rem; }
.contact-option b { margin-top: 24px; color: rgba(238,238,255,.78); font-size: .78rem; }
.contact-note { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 25px; padding: 30px 4px; color: var(--muted); font-size: .76rem; }
.contact-note span { color: rgba(238,238,255,.28); text-transform: uppercase; letter-spacing: .1em; }
.contact-note a { color: var(--cyan); }
.contact-note p { width: 100%; }

.timeline { border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: var(--panel); }
.timeline article { display: grid; grid-template-columns: 45px 1fr auto; gap: 22px; align-items: center; padding: 28px 32px; }
.timeline article + article { border-top: 1px solid var(--line); }
.timeline b { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--cyan); font: 700 .72rem "Syne"; }
.timeline h3 { margin-bottom: 4px; font-size: 1rem; }
.timeline p { color: var(--muted); font-size: .76rem; }
.timeline article > span { color: rgba(238,238,255,.3); font-size: .68rem; }
.guarantee-card { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; padding: 50px; }
.guarantee-card h2 { font-size: clamp(2.3rem, 5vw, 4rem); line-height: 1; }
.guarantee-card p { margin-top: 15px; color: var(--muted); }
.guarantee-card ul { display: grid; gap: 13px; color: rgba(238,238,255,.64); font-size: .78rem; list-style: none; }
.site-faq { border-top: 1px solid var(--line); }
.site-faq details { border-bottom: 1px solid var(--line); }
.site-faq summary { display: flex; justify-content: space-between; padding: 25px 4px; cursor: pointer; font: 700 1rem "Syne"; list-style: none; }
.site-faq summary span { color: var(--cyan); }
.site-faq p { max-width: 820px; padding: 0 4px 25px; color: var(--muted); font-size: .84rem; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.founding-offer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 35px;
  align-items: center;
  margin-bottom: 46px;
  padding: 34px;
  border-color: rgba(124,111,255,.3);
  background: linear-gradient(135deg, rgba(124,111,255,.12), rgba(0,212,255,.04));
}
.founding-offer h2 { margin: 9px 0; font-size: clamp(2rem, 4vw, 3.4rem); }
.founding-offer h2 small { color: var(--muted); font: 300 .74rem "Inter"; letter-spacing: 0; }
.founding-offer p { max-width: 800px; color: var(--muted); font-size: .78rem; }
.price-card { display: flex; flex-direction: column; padding: 34px; }
.price-card.featured { border-color: rgba(0,212,255,.3); background: linear-gradient(160deg, rgba(124,111,255,.12), rgba(0,212,255,.04)); transform: translateY(-12px); }
.price-card.featured:hover { transform: translateY(-17px); }
.price-card > span { color: var(--cyan); font-size: .66rem; letter-spacing: .11em; text-transform: uppercase; }
.price-card h2 { margin: 28px 0 10px; font-size: 3rem; }
.price-card h2 small { color: var(--muted); font: 300 .72rem "Inter"; letter-spacing: 0; }
.price-card p { min-height: 68px; color: var(--muted); font-size: .78rem; }
.price-card ul { display: grid; gap: 10px; margin: 28px 0 35px; color: rgba(238,238,255,.62); font-size: .75rem; list-style: none; }
.price-card li::before { content: "✓"; margin-right: 8px; color: var(--cyan); }
.price-card .btn { margin-top: auto; }
.pricing-disclaimer { max-width: 850px; margin: 28px auto 0; color: rgba(238,238,255,.28); font-size: .68rem; text-align: center; }
.legal-copy { display: grid; gap: 35px; max-width: 900px; }
.legal-copy article { padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.legal-copy h2 { margin-bottom: 11px; font-size: 1.25rem; }
.legal-copy p { color: var(--muted); font-size: .84rem; }
.legal-copy aside { padding: 22px; border: 1px solid rgba(0,212,255,.18); border-radius: 14px; color: rgba(238,238,255,.5); background: rgba(0,212,255,.04); font-size: .74rem; }

.admin-body { background: #060611; }
.admin-header { display: flex; align-items: flex-end; justify-content: space-between; padding: 45px max(24px, 4vw) 28px; border-bottom: 1px solid var(--line); }
.admin-header h1 { font-size: clamp(2.3rem, 5vw, 4rem); }
.admin-header p, .admin-content-head p { color: var(--muted); font-size: .76rem; }
.admin-layout { display: grid; grid-template-columns: 300px 1fr; gap: 22px; padding: 24px max(20px, 4vw) 60px; }
.admin-sidebar { position: sticky; top: 20px; display: flex; flex-direction: column; gap: 11px; align-self: start; padding: 24px; }
.admin-sidebar h2 { font-size: 1.15rem; }
.admin-sidebar > p { color: var(--muted); font-size: .7rem; }
.admin-sidebar label, .admin-fields label { display: grid; gap: 5px; color: rgba(238,238,255,.4); font-size: .62rem; text-transform: uppercase; letter-spacing: .07em; }
.admin-sidebar input, .admin-fields input { width: 100%; height: 40px; padding: 0 11px; border: 1px solid var(--line); border-radius: 9px; outline: 0; color: var(--text); background: rgba(0,0,0,.25); font-size: .72rem; text-transform: none; letter-spacing: 0; }
.admin-sidebar input:focus, .admin-fields input:focus { border-color: rgba(124,111,255,.5); box-shadow: 0 0 0 3px rgba(124,111,255,.07); }
.admin-sidebar hr { margin: 8px 0; border: 0; border-top: 1px solid var(--line); }
.admin-status { min-height: 40px; padding-top: 4px; }
.admin-status[data-type="success"] { color: #6fe9b1; }
.admin-status[data-type="error"] { color: #ff8181; }
.admin-content-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 15px; }
.admin-content-head h2 { font-size: 1.7rem; }
.admin-content-head > span { color: var(--muted); font-size: .7rem; }
.admin-list { display: grid; gap: 12px; }
.admin-item { display: grid; grid-template-columns: 120px 1fr auto; gap: 18px; align-items: center; padding: 15px; }
.admin-item img { width: 120px; height: 120px; object-fit: cover; border-radius: 13px; }
.admin-fields { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.admin-fields .wide { grid-column: span 3; }
.admin-preview { align-self: start; color: var(--cyan); font-size: .68rem; }

/* Demo preview page */
.demo-page { min-height: 100vh; padding: 100px 22px 35px; background: #020207; }
.demo-toolbar {
  position: fixed;
  z-index: 20;
  top: 14px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 28px));
  min-height: 62px;
  padding: 9px 12px 9px 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(8, 8, 18, .86);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
}
.demo-toolbar-left, .demo-toolbar-actions { display: flex; align-items: center; gap: 12px; }
.demo-toolbar-title small { display: block; color: var(--muted); font-size: .62rem; }
.demo-toolbar-title strong { font: 700 .86rem "Syne"; }
.device-switch { display: flex; gap: 4px; padding: 4px; border: 1px solid var(--line); border-radius: 999px; }
.device-button { display: grid; width: 30px; height: 28px; place-items: center; border: 0; border-radius: 50%; color: var(--muted); background: transparent; cursor: pointer; transition: transform .2s, box-shadow .2s; }
.device-button.active { color: white; background: rgba(124, 111, 255, .22); box-shadow: 0 0 18px rgba(124, 111, 255, .18); }
.device-button:hover { transform: translateY(-2px); }
.demo-frame-shell { container-type: inline-size; width: 100%; min-height: calc(100vh - 140px); margin-inline: auto; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: 0 30px 100px rgba(0, 0, 0, .5); transition: width .35s; }
.demo-frame-shell.tablet { width: 820px; max-width: 100%; }
.demo-frame-shell.mobile { width: 390px; max-width: 100%; }
.demo-site { min-height: calc(100vh - 140px); color: #111; background: #f6f5f1; font-family: "Inter"; }
.demo-site-nav { display: flex; align-items: center; justify-content: space-between; padding: 22px 5%; border-bottom: 1px solid rgba(0, 0, 0, .08); }
.demo-site-logo { font: 800 1.1rem "Syne"; }
.demo-site-links { display: flex; gap: 25px; font-size: .74rem; }
.demo-site-hero { position: relative; display: grid; min-height: 620px; place-items: center; overflow: hidden; padding: 70px 5%; color: white; text-align: center; background-size: cover; background-position: center; }
.demo-site-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(0, 0, 0, .25), rgba(0, 0, 0, .68)); }
.demo-site-hero > div { position: relative; z-index: 1; max-width: 800px; }
.demo-site-hero small { letter-spacing: .18em; text-transform: uppercase; }
.demo-site-hero h1 { margin: 16px 0 20px; font-size: clamp(3rem, 7vw, 6.8rem); line-height: .88; }
.demo-site-hero p { max-width: 580px; margin: auto; color: rgba(255, 255, 255, .72); }
.demo-site-cta { display: inline-flex; margin-top: 26px; padding: 13px 22px; border: 0; border-radius: 999px; color: white; background: var(--demo-accent); cursor: pointer; box-shadow: 0 12px 30px color-mix(in srgb, var(--demo-accent) 35%, transparent); transition: transform .2s, box-shadow .2s; }
.demo-site-cta:hover { transform: translateY(-3px); box-shadow: 0 18px 40px color-mix(in srgb, var(--demo-accent) 50%, transparent); }
.demo-features { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1100px; margin: auto; padding: 70px 5%; gap: 20px; }
.demo-feature { padding: 28px; border: 1px solid rgba(0, 0, 0, .08); border-radius: 16px; background: white; }
.demo-feature span { color: var(--demo-accent); font-weight: 600; }
.demo-feature h3 { margin: 14px 0 8px; }
.demo-feature p { color: rgba(0, 0, 0, .55); font-size: .8rem; }
.demo-toast { position: fixed; z-index: 40; right: 30px; bottom: 30px; visibility: hidden; padding: 13px 18px; border-radius: 12px; color: white; background: #101018; box-shadow: 0 20px 50px rgba(0, 0, 0, .3); opacity: 0; transform: translateY(10px); transition: .25s; }
.demo-toast.show { visibility: visible; opacity: 1; transform: translateY(0); }
.demo-toast { display: grid; max-width: 390px; gap: 3px; }
.demo-toast strong { font-size: .82rem; }
.demo-toast span { color: rgba(255,255,255,.55); font-size: .7rem; }
.demo-toast a { margin-top: 7px; color: var(--cyan); font-size: .7rem; font-weight: 600; }

/* Full interactive client website demos */
.live-site {
  --live-ink: #101116;
  --live-paper: #f7f7f3;
  min-height: 100vh;
  overflow: hidden;
  color: var(--live-ink);
  background: var(--live-paper);
  font-family: "Inter", sans-serif;
}
.live-site h1, .live-site h2, .live-site h3, .live-site strong { font-family: "Syne", sans-serif; }
.live-site a { color: inherit; }
.live-announcement, .live-urgent {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 8px 5%;
  color: white;
  background: var(--live-ink);
  font-size: .64rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.live-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 5%;
  border-bottom: 1px solid rgba(0, 0, 0, .09);
  background: rgba(247,247,243,.92);
}
.live-nav strong { font-size: 1.1rem; }
.live-nav div { display: flex; gap: 26px; color: rgba(16,17,22,.62); font-size: .7rem; }
.live-nav a { transition: transform .2s, color .2s; }
.live-nav a:hover { color: var(--demo-accent); transform: translateY(-2px); }
.live-nav button, .live-urgent button {
  padding: 10px 15px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: var(--demo-accent);
  cursor: pointer;
  font-size: .7rem;
  transition: transform .2s, box-shadow .2s;
}
.live-nav button:hover, .live-urgent button:hover { transform: translateY(-2px); box-shadow: 0 10px 25px color-mix(in srgb, var(--demo-accent) 35%, transparent); }
.live-hero { position: relative; min-height: 690px; overflow: hidden; color: white; background-position: center; background-size: cover; }
.live-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(5,8,12,.88), rgba(5,8,12,.3)); }
.live-hero--center { display: grid; place-items: center; padding: 70px 5%; text-align: center; }
.live-hero--center > div { position: relative; z-index: 1; max-width: 900px; }
.live-hero span, .live-editorial-copy > span, .live-services header > span, .live-story > div > span, .live-faq header span, .live-final > span {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.live-hero h1 { margin: 18px 0 23px; font-size: clamp(3.5rem, 8vw, 7.4rem); line-height: .84; }
.live-site em { color: var(--demo-accent); font-style: normal; }
.live-hero p { max-width: 580px; margin: auto; color: rgba(255,255,255,.7); }
.live-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 27px;
  padding: 13px 21px;
  border: 0;
  border-radius: 999px;
  color: white !important;
  background: var(--demo-accent);
  cursor: pointer;
  font-size: .74rem;
  font-weight: 600;
  box-shadow: 0 14px 35px color-mix(in srgb, var(--demo-accent) 30%, transparent);
  transition: transform .2s, box-shadow .2s;
}
.live-button svg { width: 14px; }
.live-button:hover { transform: translateY(-3px); box-shadow: 0 18px 45px color-mix(in srgb, var(--demo-accent) 45%, transparent); }
.live-proof { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid rgba(0,0,0,.08); }
.live-proof > div { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 32px 4%; }
.live-proof > div + div { border-left: 1px solid rgba(0,0,0,.08); }
.live-proof strong { font-size: 2rem; }
.live-proof span { color: rgba(16,17,22,.5); font-size: .65rem; line-height: 1.5; }
.live-proof span:first-line { color: var(--demo-accent); }
.live-services { padding: 100px 6%; }
.live-services > header { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: end; margin-bottom: 48px; }
.live-services header > span { grid-column: 1 / -1; color: var(--demo-accent); }
.live-services h2, .live-story h2, .live-faq h2, .live-final h2 { font-size: clamp(2.4rem, 5vw, 4.9rem); line-height: .95; }
.live-services header p { max-width: 470px; color: rgba(16,17,22,.52); }
.live-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.live-service-grid article { padding: 30px; border: 1px solid rgba(0,0,0,.09); border-radius: 15px; background: white; transition: transform .25s, box-shadow .25s; }
.live-service-grid article:hover { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(0,0,0,.08); }
.live-service-grid b { color: var(--demo-accent); font-size: .68rem; }
.live-service-grid h3 { margin: 50px 0 10px; font-size: 1.25rem; }
.live-service-grid p { color: rgba(16,17,22,.52); font-size: .75rem; }
.live-service-grid a { display: inline-flex; margin-top: 20px; color: var(--demo-accent); font-size: .7rem; font-weight: 600; }
.live-story { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; background: #111319; color: white; }
.live-story-image { min-height: 520px; background-size: cover; background-position: center; filter: saturate(.75); }
.live-story > div:last-child { display: flex; flex-direction: column; justify-content: center; padding: 8%; }
.live-story > div > span { color: var(--demo-accent); }
.live-story h2 { margin: 16px 0 20px; }
.live-story p { color: rgba(255,255,255,.55); }
.live-story ul { display: grid; gap: 8px; margin-top: 25px; color: rgba(255,255,255,.75); font-size: .75rem; list-style: none; }
.live-story .live-button { align-self: flex-start; }
.live-testimonial { padding: 110px 7%; text-align: center; }
.live-testimonial > span { color: var(--demo-accent); letter-spacing: .14em; }
.live-testimonial blockquote { max-width: 900px; margin: 24px auto; font: 700 clamp(2rem, 4vw, 3.8rem)/1.08 "Syne"; letter-spacing: -.04em; }
.live-testimonial p { color: rgba(16,17,22,.42); font-size: .7rem; }
.live-faq { display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; padding: 95px 7%; background: #eeeae2; }
.live-faq header span { color: var(--demo-accent); }
.live-faq h2 { margin-top: 14px; }
.live-faq details { border-top: 1px solid rgba(0,0,0,.12); }
.live-faq details:last-child { border-bottom: 1px solid rgba(0,0,0,.12); }
.live-faq summary { display: flex; justify-content: space-between; padding: 22px 0; cursor: pointer; font: 700 .9rem "Syne"; list-style: none; }
.live-faq summary i { color: var(--demo-accent); font-style: normal; }
.live-faq details p { padding: 0 30px 22px 0; color: rgba(16,17,22,.55); font-size: .76rem; }
.live-final { padding: 110px 6%; color: white; background: var(--demo-accent); text-align: center; }
.live-final p { max-width: 500px; margin: 18px auto 0; color: rgba(255,255,255,.72); }
.live-final .live-button { color: var(--demo-accent) !important; background: white; box-shadow: 0 15px 40px rgba(0,0,0,.15); }
.live-footer { display: flex; align-items: center; justify-content: space-between; padding: 35px 5%; color: rgba(255,255,255,.56); background: #0e1015; font-size: .65rem; }
.live-footer strong { color: white; font-size: .9rem; }

.live-site--editorial { --live-paper: #f1eee7; font-family: Georgia, serif; }
.live-site--editorial h1, .live-site--editorial h2, .live-site--editorial h3 { font-family: Georgia, serif; font-weight: 400; letter-spacing: -.04em; }
.live-site--editorial .live-nav { background: #f1eee7; }
.live-editorial-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 720px; padding: 20px; gap: 20px; }
.live-editorial-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 9%; }
.live-editorial-copy > span { color: var(--demo-accent); }
.live-editorial-copy h1 { margin: 19px 0 22px; font-size: clamp(3.6rem, 6vw, 6.7rem); line-height: .9; }
.live-editorial-copy p { max-width: 500px; color: rgba(16,17,22,.55); }
.live-editorial-image { position: relative; min-height: 620px; border-radius: 2px; background-size: cover; background-position: center; }
.live-editorial-image b { position: absolute; top: 25px; right: 25px; display: grid; width: 45px; height: 45px; place-items: center; border-radius: 50%; color: white; background: rgba(0,0,0,.3); backdrop-filter: blur(10px); }
.live-editorial-image span { position: absolute; right: 25px; bottom: 25px; padding: 10px 14px; color: white; background: rgba(0,0,0,.35); backdrop-filter: blur(10px); font-size: .66rem; }
.live-marquee { display: flex; justify-content: space-around; gap: 24px; overflow: hidden; padding: 20px; border-block: 1px solid rgba(0,0,0,.09); white-space: nowrap; font: italic 1.1rem Georgia; }
.live-marquee i { color: var(--demo-accent); }

.live-urgent { align-items: center; background: var(--demo-accent); }
.live-urgent button { padding: 0; text-decoration: underline; background: transparent; }
.live-local-hero { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 650px; padding: 22px; gap: 22px; background: #eef2f4; }
.live-local-hero > div { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 8%; }
.live-local-hero > div > span { color: var(--demo-accent); font-size: .65rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.live-local-hero h1 { margin: 16px 0 20px; font-size: clamp(3.5rem, 7vw, 7rem); line-height: .86; }
.live-local-hero p { max-width: 530px; color: rgba(16,17,22,.58); }
.live-local-hero > div > div { display: flex; align-items: center; gap: 20px; }
.live-local-hero > div > div > a { margin-top: 27px; color: rgba(16,17,22,.5); font-size: .7rem; }
.live-local-hero aside { position: relative; border-radius: 12px; background-size: cover; background-position: center; }
.live-local-hero aside span { position: absolute; right: 18px; bottom: 18px; padding: 13px 16px; border-radius: 10px; color: white; background: rgba(0,0,0,.48); backdrop-filter: blur(12px); font-size: .68rem; }
.live-benefits { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid rgba(0,0,0,.08); }
.live-benefits span { padding: 23px; text-align: center; font-size: .7rem; font-weight: 600; }
.live-benefits span + span { border-left: 1px solid rgba(0,0,0,.08); }

/* Roofing pilot — three fully differentiated website directions */
.roof-site .live-nav strong span { color: var(--demo-accent); }
.roof-site .live-testimonial p { font-style: italic; }
.roof-site .roof-faq { background: #edf0f2; }
.roof-apex-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 30px;
  min-height: 730px;
  padding: 70px 6%;
  color: white;
  background-position: center;
  background-size: cover;
}
.roof-apex-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,9,14,.94), rgba(5,9,14,.45)); }
.roof-apex-copy, .roof-hero-panel { position: relative; z-index: 1; }
.roof-apex-copy { display: flex; flex-direction: column; justify-content: center; }
.roof-apex-copy > span, .roof-projects header span, .roof-process > span, .roof-philosophy > span, .roof-materials header span, .roof-editorial-project article > span, .roof-areas > div > span, .roof-insurance header span {
  color: var(--demo-accent);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.roof-apex-copy h1 { margin: 17px 0 22px; font-size: clamp(4.2rem, 8vw, 8.4rem); line-height: .82; }
.roof-apex-copy p { max-width: 590px; color: rgba(255,255,255,.67); }
.roof-hero-actions { display: flex; align-items: center; gap: 22px; }
.roof-hero-actions > a { margin-top: 27px; color: rgba(255,255,255,.52); font-size: .7rem; }
.roof-mini-proof { display: flex; align-items: center; gap: 13px; margin-top: 48px; }
.roof-mini-proof b { font: 800 1.35rem "Syne"; }
.roof-mini-proof span { margin-right: 22px; color: rgba(255,255,255,.48); font-size: .58rem; line-height: 1.45; }
.roof-hero-panel { align-self: center; padding: 28px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(8,13,20,.72); backdrop-filter: blur(18px); }
.roof-hero-panel small { color: var(--demo-accent); font-size: .64rem; text-transform: uppercase; letter-spacing: .1em; }
.roof-hero-panel h2 { margin: 10px 0 24px; color: white; font-size: 1.7rem; line-height: 1.05; }
.roof-hero-panel label { display: grid; gap: 7px; margin-top: 13px; color: rgba(255,255,255,.5); font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; }
.roof-hero-panel select { width: 100%; height: 46px; padding: 0 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 10px; outline: 0; color: white; background: rgba(255,255,255,.06); font-size: .72rem; }
.roof-hero-panel select option { color: #111; background: white; }
.roof-hero-panel button { width: 100%; margin-top: 18px; padding: 13px; border: 0; border-radius: 10px; color: white; background: var(--demo-accent); cursor: pointer; font-weight: 600; transition: transform .2s, box-shadow .2s; }
.roof-hero-panel button:hover { transform: translateY(-2px); box-shadow: 0 13px 30px color-mix(in srgb, var(--demo-accent) 35%, transparent); }
.roof-hero-panel > p { margin-top: 12px; color: rgba(255,255,255,.36); font-size: .58rem; }
.roof-hero-panel > p.active { padding: 12px; border-radius: 9px; color: rgba(255,255,255,.72); background: rgba(255,255,255,.07); }
.roof-hero-panel > p strong { display: block; margin-bottom: 3px; color: var(--demo-accent); font-family: "Inter"; }
.roof-projects { padding: 100px 6%; color: white; background: #0b0e13; }
.roof-projects header { display: flex; align-items: end; justify-content: space-between; margin-bottom: 40px; }
.roof-projects h2 { max-width: 700px; font-size: clamp(2.8rem, 5vw, 5rem); line-height: .94; }
.roof-project-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 14px; }
.roof-project-grid article { position: relative; display: flex; min-height: 450px; flex-direction: column; justify-content: flex-end; overflow: hidden; padding: 24px; border-radius: 13px; background-position: center; background-size: cover; transition: transform .3s, filter .3s; }
.roof-project-grid article::before { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 45%, rgba(0,0,0,.78)); }
.roof-project-grid article:hover { transform: translateY(-5px); filter: saturate(1.12); }
.roof-project-grid span, .roof-project-grid b { position: relative; z-index: 1; }
.roof-project-grid span { color: rgba(255,255,255,.55); font-size: .62rem; }
.roof-project-grid b { font: 700 1.05rem "Syne"; }
.roof-process { padding: 100px 6%; background: #e9edf0; }
.roof-process > h2 { max-width: 780px; margin: 15px 0 50px; font-size: clamp(2.8rem, 5vw, 5rem); line-height: .94; }
.roof-process > div { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid rgba(0,0,0,.12); }
.roof-process article { padding: 30px 24px; }
.roof-process article + article { border-left: 1px solid rgba(0,0,0,.12); }
.roof-process article b { color: var(--demo-accent); font-size: .7rem; }
.roof-process article h3 { margin: 45px 0 9px; }
.roof-process article p { color: rgba(16,17,22,.52); font-size: .72rem; }

.roof-site--summit { --demo-accent: #9a713d; --live-paper: #eee9df; }
.roof-site--summit .live-nav { background: #eee9df; }
.roof-site--summit .live-nav strong i { color: #9a713d; font: italic 400 1rem Georgia; }
.roof-summit-hero { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 760px; padding: 20px; gap: 20px; }
.roof-summit-image { position: relative; min-height: 700px; background-position: center; background-size: cover; }
.roof-summit-image span { position: absolute; bottom: 25px; left: 25px; padding: 9px 12px; color: white; background: rgba(0,0,0,.38); backdrop-filter: blur(10px); font-size: .62rem; }
.roof-summit-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 8%; }
.roof-summit-copy > span { color: #9a713d; font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; }
.roof-summit-copy h1 { margin: 18px 0 24px; font: 400 clamp(4rem, 7vw, 7.3rem)/.87 Georgia; letter-spacing: -.06em; }
.roof-summit-copy p { max-width: 500px; color: rgba(16,17,22,.54); font-family: Georgia; font-size: .95rem; }
.roof-summit-copy small { margin-top: 18px; color: rgba(16,17,22,.38); }
.roof-philosophy { display: grid; grid-template-columns: .4fr 1.2fr auto; gap: 50px; align-items: start; padding: 120px 7%; }
.roof-philosophy h2 { font: 400 clamp(2.8rem, 5vw, 5rem)/.98 Georgia; letter-spacing: -.04em; }
.roof-philosophy p { max-width: 620px; margin-top: 23px; color: rgba(16,17,22,.5); font-family: Georgia; }
.roof-philosophy > b { color: rgba(16,17,22,.25); font: 400 .7rem Georgia; }
.roof-materials { padding: 105px 6%; color: white; background: #26241f; }
.roof-materials header { display: flex; align-items: end; justify-content: space-between; margin-bottom: 50px; }
.roof-materials header h2 { max-width: 750px; font: 400 clamp(2.8rem, 5vw, 5rem)/.96 Georgia; }
.roof-materials > div { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.14); }
.roof-materials article { padding: 30px 28px 20px 0; }
.roof-materials article + article { padding-left: 28px; border-left: 1px solid rgba(255,255,255,.14); }
.roof-materials article > span { color: #c49b67; font-family: Georgia; }
.roof-materials h3 { margin: 70px 0 12px; font: 400 1.5rem Georgia; }
.roof-materials p { color: rgba(255,255,255,.5); font-family: Georgia; font-size: .8rem; }
.roof-editorial-project { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 720px; padding: 22px; gap: 22px; }
.roof-editorial-project > div { min-height: 650px; background-position: center; background-size: cover; }
.roof-editorial-project article { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 8%; }
.roof-editorial-project h2 { margin: 16px 0 20px; font: 400 clamp(3rem, 5vw, 5rem)/.93 Georgia; }
.roof-editorial-project p { color: rgba(16,17,22,.52); font-family: Georgia; }
.roof-editorial-project dl { width: 100%; margin-top: 30px; border-top: 1px solid rgba(0,0,0,.12); }
.roof-editorial-project dl > div { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,.12); font-size: .7rem; }
.roof-editorial-project dt { color: rgba(16,17,22,.38); }

.roof-site--northstar { --demo-accent: #e45d2f; }
.roof-local-hero { min-height: 700px; }
.roof-areas { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; padding: 100px 7%; color: white; background: #101923; }
.roof-areas h2, .roof-insurance h2 { margin: 15px 0 18px; font-size: clamp(2.8rem, 5vw, 5rem); line-height: .94; }
.roof-areas p { max-width: 590px; color: rgba(255,255,255,.52); }
.roof-areas ul { display: grid; grid-template-columns: 1fr 1fr; align-content: center; border-top: 1px solid rgba(255,255,255,.12); list-style: none; }
.roof-areas li { padding: 18px 5px; border-bottom: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.68); font-size: .75rem; }
.roof-insurance { padding: 100px 7%; background: #e9edf0; }
.roof-insurance header { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: end; margin-bottom: 48px; }
.roof-insurance header > span { grid-column: 1 / -1; }
.roof-insurance header p { color: rgba(16,17,22,.52); }
.roof-insurance > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.roof-insurance article { padding: 28px; border: 1px solid rgba(0,0,0,.09); border-radius: 14px; background: white; }
.roof-insurance article b { color: var(--demo-accent); }
.roof-insurance article h3 { margin: 55px 0 9px; }
.roof-insurance article p { color: rgba(16,17,22,.52); font-size: .74rem; }

@container (max-width: 700px) {
  .live-nav { min-height: 62px; padding-inline: 18px; }
  .live-nav div { display: none; }
  .live-nav button { padding: 8px 11px; font-size: .6rem; }
  .live-announcement { font-size: .52rem; }
  .live-hero { min-height: 620px; }
  .live-hero h1 { font-size: 3.55rem; }
  .live-hero p { font-size: .78rem; }
  .live-proof { grid-template-columns: 1fr; }
  .live-proof > div { justify-content: flex-start; padding: 22px 28px; }
  .live-proof > div + div { border-top: 1px solid rgba(0,0,0,.08); border-left: 0; }
  .live-services { padding: 70px 24px; }
  .live-services > header, .live-service-grid, .live-story, .live-faq { grid-template-columns: 1fr; }
  .live-services > header { align-items: start; }
  .live-service-grid h3 { margin-top: 35px; }
  .live-story-image { min-height: 380px; }
  .live-story > div:last-child { padding: 60px 28px; }
  .live-testimonial { padding: 75px 25px; }
  .live-faq { gap: 35px; padding: 70px 25px; }
  .live-final { padding: 80px 25px; }
  .live-footer { flex-direction: column; gap: 12px; text-align: center; }
  .live-editorial-hero, .live-local-hero { grid-template-columns: 1fr; padding: 12px; }
  .live-editorial-copy { min-height: 540px; padding: 50px 24px; }
  .live-editorial-copy h1, .live-local-hero h1 { font-size: 3.7rem; }
  .live-editorial-image { min-height: 520px; }
  .live-marquee { justify-content: flex-start; }
  .live-local-hero > div { min-height: 530px; padding: 50px 24px; }
  .live-local-hero aside { min-height: 470px; }
  .live-benefits { grid-template-columns: 1fr 1fr; }
  .live-benefits span:nth-child(3) { border-top: 1px solid rgba(0,0,0,.08); border-left: 0; }
  .live-benefits span:nth-child(4) { border-top: 1px solid rgba(0,0,0,.08); }
  .roof-apex-hero, .roof-summit-hero, .roof-editorial-project, .roof-areas { grid-template-columns: 1fr; }
  .roof-apex-hero > *, .roof-summit-hero > *, .roof-editorial-project > *, .roof-areas > *, .roof-local-hero > * { min-width: 0; }
  .roof-apex-hero { padding: 55px 20px 25px; }
  .roof-apex-copy h1 { font-size: 4rem; }
  .roof-hero-actions { align-items: flex-start; flex-direction: column; gap: 0; }
  .roof-mini-proof { flex-wrap: wrap; }
  .roof-hero-panel { width: 100%; }
  .roof-projects, .roof-process, .roof-materials, .roof-insurance { padding: 70px 22px; }
  .roof-projects header, .roof-materials header { align-items: flex-start; flex-direction: column; gap: 15px; }
  .roof-project-grid, .roof-process > div, .roof-materials > div, .roof-insurance > div { grid-template-columns: 1fr; }
  .roof-project-grid article { min-height: 390px; }
  .roof-process article + article, .roof-materials article + article { border-top: 1px solid rgba(0,0,0,.12); border-left: 0; }
  .roof-materials article + article { border-top-color: rgba(255,255,255,.14); }
  .roof-materials article, .roof-materials article + article { padding: 28px 0; }
  .roof-materials h3 { margin-top: 35px; }
  .roof-summit-hero { padding: 12px; }
  .roof-summit-image { min-height: 520px; }
  .roof-summit-copy { min-height: 600px; padding: 60px 24px; }
  .roof-summit-copy h1 { font-size: 4.15rem; }
  .roof-philosophy { grid-template-columns: 1fr; gap: 25px; padding: 80px 25px; }
  .roof-editorial-project { padding: 12px; }
  .roof-editorial-project > div { min-height: 520px; }
  .roof-editorial-project article { padding: 60px 24px; }
  .roof-areas { gap: 45px; padding: 75px 25px; }
  .roof-insurance header { grid-template-columns: 1fr; align-items: start; }
  .roof-local-hero h1 { max-width: 100%; font-size: 3.15rem; overflow-wrap: anywhere; }
  .roof-local-hero > div { overflow: hidden; }
}

footer { padding: 24px 0 34px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--line); color: rgba(238, 238, 255, .3); font-size: .68rem; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { transition: transform .2s, color .2s, text-shadow .2s; }
.footer-links a:hover { color: white; transform: translateY(-2px); text-shadow: 0 0 12px var(--violet); }
.reveal { opacity: 0; transform: translateY(25px); transition: opacity .75s, transform .75s cubic-bezier(.2, .8, .2, 1); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .nav-center { display: none; }
  .floating-card { opacity: .48; }
  .float-one { left: -80px; }
  .float-two { right: -80px; }
  .value-grid, .template-grid { grid-template-columns: 1fr; }
  .catalog-preview { grid-template-columns: repeat(2, 1fr); }
  .catalog-tile:last-child { display: none; }
  .cta-card, .contact-grid { grid-template-columns: 1fr; }
  .cta-visual { min-height: 300px; border-top: 1px solid var(--line); border-left: 0; }
  .contact-copy { border-right: 0; border-bottom: 1px solid var(--line); }
  .template-card { display: grid; grid-template-columns: .9fr 1.1fr; }
  .template-preview { height: 320px; border-right: 1px solid var(--line); border-bottom: 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured, .price-card.featured:hover { transform: none; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; }
  .admin-item { grid-template-columns: 100px 1fr; }
  .admin-item img { width: 100px; height: 100px; }
  .admin-preview { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: calc(100% - 28px); }
  .section { padding: 76px 0; }
  .site-header { top: 9px; width: calc(100% - 18px); }
  .nav { height: 58px; padding-left: 16px; }
  .nav .btn-sm { display: none; }
  .hero { min-height: 790px; padding-top: 120px; }
  .hero h1 { max-width: 100%; font-size: clamp(2.9rem, 13.3vw, 4.4rem); line-height: .92; overflow-wrap: normal; word-break: normal; }
  .hero-copy { font-size: .92rem; }
  .hero-actions { flex-direction: column; max-width: 310px; margin: auto; }
  .floating-card { display: none; }
  .trust-row { max-width: 100%; overflow: hidden; gap: 22px; font-size: .62rem; }
  .catalog-preview { grid-template-columns: 1fr; }
  .catalog-tile { min-height: 280px; }
  .catalog-tile:nth-child(n + 4) { display: none; }
  .cta-copy, .contact-copy, .form { padding: 32px 24px; }
  .split-grid { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; }
  .field { grid-column: 1; }
  .page-hero { padding-top: 135px; }
  .industry-hero-bg { width: 100%; opacity: .12; }
  .template-card { display: flex; }
  .template-preview { height: 330px; border-right: 0; border-bottom: 1px solid var(--line); }
  .drawer { padding: 20px 14px; }
  .industry-item { grid-template-columns: 70px 1fr auto; }
  .industry-thumb { width: 70px; }
  .demo-page { padding-inline: 8px; }
  .demo-toolbar-title { display: none; }
  .demo-toolbar-actions .btn-primary { display: none; }
  .demo-site-links { display: none; }
  .demo-features { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .contact-options, .guarantee-card, .founding-offer { grid-template-columns: 1fr; }
  .contact-option { min-height: 350px; padding: 28px; }
  .timeline article { grid-template-columns: 40px 1fr; padding: 23px 17px; }
  .timeline article > span { grid-column: 2; }
  .guarantee-card { gap: 35px; padding: 30px 24px; }
  .admin-header { align-items: flex-start; flex-direction: column; gap: 20px; }
  .admin-layout { padding-inline: 12px; }
  .admin-item { grid-template-columns: 1fr; }
  .admin-item img { width: 100%; height: 180px; }
  .admin-fields { grid-template-columns: 1fr; }
  .admin-fields .wide { grid-column: 1; }
}

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