
:root {
  --void:        #0a0b0e;
  --surface:     #111317;
  --surface-2:   #181b21;
  --text:        #f2efe9;
  --text-mid:    rgba(242,239,233,0.82);
  --text-low:    rgba(242,239,233,0.55);
  --green:       #5ecf78;
  --green-glow:  rgba(94,207,120,0.20);
  --green-trace: rgba(94,207,120,0.06);
  --line:        rgba(255,255,255,0.09);
  --line-up:     rgba(255,255,255,0.16);
  --bronze:      #c8a96a;
  --bronze-glow: rgba(200,169,106,0.12);
  --accent:      #c8a96a;
  --accent-glow: rgba(200,169,106,0.12);
  --blue:        #38bdf8;
  --blue-glow:   rgba(56,189,248,0.16);
  --mono:  'DM Mono', monospace;
  --serif: 'Playfair Display', serif;
  --body:  'Jost', sans-serif;
  --nav-height: 76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 17px; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }

body {
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(94,207,120,0.035), transparent),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(200,169,106,0.022), transparent),
    var(--void);
  color: var(--text);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
  min-height: 100vh;
}

i[class^="ri-"],
i[class*=" ri-"] {
  line-height: 1;
}

/* Global focus states */
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1200;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  background: var(--green);
  color: var(--void);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

/* -- ATMOSPHERE -- */
.atm { position: fixed; inset: 0; pointer-events: none; z-index: 0; }

.atm-floor {
  position: absolute;
  bottom: -20%; left: 50%; margin-left: -35vw;
  width: 70vw; height: 60vw;
  background: radial-gradient(ellipse at 45% 75%,
    rgba(15,45,28,0.32) 0%, rgba(10,30,18,0.10) 38%, transparent 65%);
  animation: breathe 10s ease-in-out infinite alternate;
}

.atm-cap {
  position: absolute; top: -10%; right: -8%;
  width: 38vw; height: 38vw;
  background: radial-gradient(ellipse at center,
    rgba(200,169,106,0.022) 0%, rgba(10,30,18,0.08) 30%, transparent 65%);
  animation: breathe 14s ease-in-out infinite alternate-reverse;
}

@keyframes breathe {
  from { opacity: 0.65; transform: scale(0.97); }
  to   { opacity: 1;    transform: scale(1.04); }
}

.atm-grid {
  position: absolute; bottom: 0; left: 0; right: 0; height: 40vh;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 99px,
      rgba(255,255,255,0.018) 99px, rgba(255,255,255,0.018) 100px),
    repeating-linear-gradient(0deg,  transparent, transparent 99px,
      rgba(255,255,255,0.018) 99px, rgba(255,255,255,0.018) 100px);
  mask-image: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
}



/* -- TICKER -- */
.ticker {
  position: relative; z-index: 10;
  margin-top: var(--nav-height);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden; white-space: nowrap;
  animation: fadeIn 1.2s 0.2s ease both;
}

.ticker-track {
  display: inline-flex;
  animation: roll 40s linear infinite;
}

.ticker-track span {
  font-family: var(--mono);
  font-size: 0.75rem; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green); padding: 0 2.5rem;
  opacity: 0.75;
}

.t-sep { opacity: 0.25 !important; }

@keyframes roll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* -- HERO LAYOUT -- */
.hero {
  position: relative; z-index: 1;
  min-height: auto;
  max-height: 520px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  gap: 0;
  padding: 2.5rem 0 2rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/images/generated/hero-home-v2.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  pointer-events: none;
  border-radius: 12px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.025) 2px, rgba(0,0,0,0.025) 4px),
    radial-gradient(circle at top right, rgba(94, 207, 120, 0.10), transparent 30%),
    radial-gradient(circle at left 30%, rgba(56, 189, 248, 0.06), transparent 26%);
  pointer-events: none;
  border-radius: 12px;
}

.hero > *,
.nav-inner > *,
.left,
.bar,
.bar-cell {
  min-width: 0;
  position: relative;
  z-index: 1;
}

/* -- LEFT -- */
.left {
  grid-column: 1; grid-row: 1;
  padding: 0 2rem 0 clamp(1.5rem, 5vw, 4rem);
  display: flex; flex-direction: column; justify-content: center;
  animation: riseUp 1s 0.1s cubic-bezier(0.16,1,0.3,1) both;
}

/* Eyebrow replaced -- Seth Brand Tech Care tagline, not a name */
.eyebrow {
  display: flex; align-items: center; gap: 0.85rem;
  font-family: var(--mono);
  font-size: 0.88rem; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.25rem;
}

.eyebrow-rule {
  width: 2.75rem; height: 1px;
  background: var(--green); opacity: 0.45; flex-shrink: 0;
}

.headline {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.4rem, 4.2vw, 4.2rem);
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 1rem;
}

.headline-line {
  display: block;
}

.headline-accent {
  font-style: italic; color: var(--green); display: block;
  margin-top: 0.32rem;
  font-size: clamp(1.6rem, 0.68em, 2.4rem);
  background: linear-gradient(135deg, var(--green), #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-green {
  background: linear-gradient(135deg, var(--green), #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.headline-support {
  margin: 0 0 1rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* Pitch rewritten -- shorter, punchier, clearer value prop */
.pitch {
  font-family: var(--body);
  font-size: 1.08rem; font-weight: 400; line-height: 1.65;
  color: var(--text-mid);
  max-width: 36rem; margin-bottom: 1.4rem;
}

.pitch strong { color: var(--text); font-weight: 500; }

.hero-value-bullets {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 1.02rem;
  color: var(--text-mid);
}

.hero-value-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.hero-value-bullets li i {
  color: var(--green);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.founder-note {
  margin: 0.7rem 0 0;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-low);
}

.ctas { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }

.cta-primary {
  font-family: var(--mono);
  font-size: 0.84rem; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--void);
  background: linear-gradient(135deg, var(--green), #22c55e);
  min-height: 3rem;
  padding: 1rem 1.8rem;
  text-decoration: none; font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.8rem;
  border: 1px solid transparent;
  border-radius: 14px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
  box-shadow: 0 10px 28px var(--green-glow), 0 4px 15px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}

.cta-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}

.cta-primary:hover::before {
  left: 100%;
}

.cta-primary svg { 
  width: 0.85rem; height: 0.85rem; 
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.cta-primary i {
  font-size: 1rem;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.cta-primary:hover {
  box-shadow: 0 14px 34px var(--green-glow), 0 8px 25px rgba(0,0,0,0.4);
  transform: translateY(-2px);
  background: linear-gradient(135deg, #22c55e, var(--green));
}

.cta-primary:active {
  transform: translateY(1px);
  box-shadow: 0 4px 12px var(--green-glow);
}

.cta-primary:hover svg { 
  transform: translateX(6px) scale(1.1);
}

.cta-primary:hover i { 
  transform: translateX(6px) scale(1.1);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 1rem 1.8rem;
  border: 1px solid var(--line-up);
  border-left: 3px solid var(--green);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  font-family: var(--mono);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
  position: relative;
}

.cta-secondary:hover {
  color: var(--text);
  border-color: var(--green);
  background: rgba(94,207,120,0.08);
  box-shadow: 0 10px 24px rgba(94,207,120,0.08);
  transform: translateY(-2px);
}

.cta-secondary:active {
  transform: translateY(1px);
  box-shadow: 0 4px 12px rgba(94,207,120,0.05);
}

.cta-primary:focus-visible,
.cta-secondary:focus-visible,
.svc-row:focus-visible {
  outline: 2px solid rgba(94,207,120,0.5);
  outline-offset: 3px;
}

.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.hero-trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: var(--text-mid);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-trust-strip i {
  color: var(--green);
}

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 29rem;
  margin-left: auto;
}

.svc-row {
  color: inherit;
  text-decoration: none;
  display: grid;
  grid-template-columns: 2.4rem 1fr auto;
  align-items: start;
  padding: 0.98rem 0.92rem;
  border: 1px solid var(--line);
  position: relative; cursor: pointer;
  transition: all 0.28s cubic-bezier(0.25, 0.1, 0.25, 1);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01)),
    var(--surface);
  box-shadow: 0 14px 34px rgba(0,0,0,0.24);
}

.svc-row:hover,
.svc-row:focus-visible {
  background:
    linear-gradient(180deg, rgba(94,207,120,0.06), rgba(255,255,255,0.01)),
    #1f242c;
  border-color: var(--line-up);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(8,10,14,0.5), 0 0 0 2px rgba(94,207,120,0.06);
}


.svc-n {
  font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.14em;
  color: var(--green); opacity: 0.6;
  align-self: flex-start; padding-top: 0.2rem;
  transition: opacity 0.3s;
}

.svc-row:hover .svc-n,
.svc-row:focus-visible .svc-n { opacity: 0.9; }

.svc-title {
  font-family: var(--serif); font-size: 1.08rem; font-weight: 400;
  color: var(--text); line-height: 1.2; margin-bottom: 0.4rem;
  transition: all 0.3s ease;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.svc-row:hover .svc-title,
.svc-row:focus-visible .svc-title { 
  color: #e2f5ea; 
  transform: translateY(-1px);
}

.svc-note {
  font-family: var(--body); font-size: 0.86rem; font-weight: 400;
  color: var(--text-mid); line-height: 1.48;
  max-width: 28ch;
  transition: color 0.3s;
}

.svc-row:hover .svc-note,
.svc-row:focus-visible .svc-note { color: var(--text); }

.svc-arrow {
  font-size: 1.2rem; color: var(--green);
  opacity: 0.75; transform: translateX(0); padding-left: 0.5rem;
  transition: all 0.28s ease;
  filter: drop-shadow(0 2px 4px rgba(94,207,120,0.18));
}

.svc-row:hover .svc-arrow,
.svc-row:focus-visible .svc-arrow { 
  opacity: 1;
  transform: translateX(4px);
}

/* Homepage-specific intro section overrides so hub page defaults do not blow up the layout */
.service-hub.home-trust {
  padding: 3rem 1.5rem;
  border-bottom: 1px solid var(--line);
}

/* Section separation: subtle surface background with tight spacing */
.service-hub.home-trust {
  background: var(--surface);
  display: flow-root;
}

#testimonial,
#final-cta {
  background: transparent;
}

#testimonial .home-testimonial {
  max-width: 880px;
  padding: 2.5rem 2.25rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(17, 19, 23, 0.92), rgba(10, 11, 14, 0.96));
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
}

#testimonial .home-testimonial blockquote {
  font-size: 1.5rem;
}

.service-hub.home-trust .container {
  max-width: 1320px;
  margin: 0 auto;
}

.home-trust-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2rem;
  align-items: start;
}

.home-trust-intro-copy {
  max-width: 40rem;
}

.service-hub.home-trust h2 {
  max-width: 24ch;
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.2;
}

.service-hub.home-trust .service-hub-lead {
  max-width: 40rem;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
}

.service-hub.home-trust .hub-launch-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-hub.home-trust .hub-launch-card {
  min-height: 100%;
  padding: 1.35rem;
}

.service-hub.home-trust .hub-launch-card h3 {
  font-size: 1.22rem;
  line-height: 1.3;
}

.service-hub.home-trust .hub-launch-card p {
  font-size: 0.92rem;
  line-height: 1.6;
}

.homepage-example-card p {
  max-width: 38ch;
}

#website-request .request-home-form.home-contact-cta {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(17, 19, 23, 0.92), rgba(10, 11, 14, 0.96));
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
  padding: 2.25rem 1.75rem;
  align-self: stretch;
}

#website-request .home-contact-cta-inner {
  width: 100%;
}

.request-cta-trust {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.request-cta-trust i {
  color: var(--green);
  font-size: 1rem;
}

#founder .home-founder-photo-block {
  margin-top: 2.5rem;
}

#founder .home-founder-photo {
  width: 160px;
  height: 160px;
  border: 3px solid rgba(94, 207, 120, 0.35);
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

#founder .home-founder-cards {
  gap: 1.25rem;
}

#founder .home-founder-card {
  background: linear-gradient(180deg, rgba(17, 19, 23, 0.92), rgba(10, 11, 14, 0.96));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
}

#founder .home-founder-card h3 {
  color: var(--green, #5ecf78);
}

.homepage-example-card {
  gap: 1rem;
}

.homepage-example-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.homepage-example-top .hub-pill {
  white-space: nowrap;
}

.homepage-example-pages {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.homepage-example-pages span {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.32rem 0.58rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(94,207,120,0.05);
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.request-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.request-trust-card {
  padding: 1.25rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, #111317, #181b21);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.request-trust-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.35);
}

.request-trust-card i {
  color: var(--green);
  font-size: 1.2rem;
}

.request-trust-card strong {
  display: block;
  margin-top: 0.8rem;
  font-size: 1rem;
  line-height: 1.3;
}

.request-trust-card p {
  margin: 0.4rem 0 0;
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.66;
}

.request-home-note {
  margin-top: 1rem;
  color: var(--text-low);
  font-size: 0.95rem;
  line-height: 1.72;
}

.hub-card-media {
  width: calc(100% + 2.7rem);
  margin: -1.35rem -1.35rem 1rem;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.45);
}

.hub-card-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hub-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hub-launch-grid > .hub-launch-card {
  min-width: 0;
  overflow: hidden;
}

.hub-process-layout {
  display: grid;
  gap: 1.35rem;
  margin-top: 1.85rem;
}

.hub-process-visual {
  margin: 0 0 1.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
}

.hub-process-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.hub-process-kicker {
  margin: 0.75rem 0 0;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-low);
}

.hub-process-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.25rem;
}

.hub-process-step {
  padding: 1.15rem 1.2rem;
}

.hub-process-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.hub-process-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.3rem;
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--line-up);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(74, 222, 128, 0.08);
}

.hub-process-step h3 {
  margin: 0.1rem 0 0;
  font-size: 1.22rem;
  line-height: 1.28;
}

.hub-process-step p {
  margin: 0;
}

.service-hub.home-trust .hub-action-row {
  margin-top: auto;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.service-hub.home-trust .hub-launch-card a {
  padding: 0.82rem 1rem;
  font-size: 0.75rem;
}

/* -- BOTTOM BAR -- */
.bar {
  grid-column: 1 / 2; grid-row: 2;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
  backdrop-filter: blur(20px);
  animation: fadeIn 1s 0.55s ease both;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 16px 16px;
}

.bar-cell {
  padding: 1.15rem 1.35rem;
  display: flex; align-items: center; gap: 0.8rem;
  border-right: 1px solid var(--line);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.bar-cell:last-child { border-right: none; }
.bar-cell:hover {
  background: rgba(94,207,120,0.06);
}

.bar-pip {
  width: 18px; height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}

.bar-label {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-mid);
  transition: all 0.3s ease; white-space: normal;
  font-weight: 500;
}

.bar-cell:hover .bar-label { 
  color: var(--text); 
  text-shadow: 0 0 8px rgba(94,207,120,0.3);
}

/* -- KEYFRAMES -- */
@keyframes riseUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* -- RESPONSIVE -- */
@media (max-width: 960px) {
  :root { --nav-height: 78px; }
  nav { padding: 1.2rem 1.5rem; }
  .nav-inner { gap: 1rem; }
  .nav-links { gap: 2rem; }
  .nav-cta { display: none; }
  .mobile-menu-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1.5rem;
    right: 1.5rem;
    flex-direction: column;
    gap: 0;
    padding: 0.75rem 0;
    border: 1px solid var(--line-up);
    border-radius: 14px;
    background: rgba(10,11,14,0.98);
    box-shadow: 0 18px 36px rgba(0,0,0,0.45);
  }
  .nav-links.active { display: flex; }
  .nav-links li + li { border-top: 1px solid var(--line); }
  .nav-links a { display: block; padding: 1rem 1.25rem; }
  .logo img { height: 50px; }
  .hero { grid-template-columns: 1fr; grid-template-rows: auto auto; max-width: 100%; }
  .left  { grid-column: 1; grid-row: 1; padding: 3.5rem 1.5rem 2.5rem; }
  .bar   { grid-column: 1; grid-row: 2; grid-template-columns: 1fr 1fr; }
  .bar-cell { border-right: none; border-bottom: 1px solid var(--line); }
  .bar-cell:nth-child(odd) { border-right: 1px solid var(--line); }
  .bar-cell:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
  :root { --nav-height: 72px; }
  .logo img { height: 44px; }
  .headline { font-size: clamp(2.35rem, 11vw, 2.8rem); max-width: none; }
  .ctas { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .bar { grid-template-columns: 1fr; }
  .bar-cell { border-right: none !important; border-bottom: 1px solid var(--line); }
  .bar-cell:last-child { border-bottom: none; }
  .left { padding-left: 1rem; padding-right: 1rem; }
  .service-hub.home-trust { padding: 2.5rem 1rem; }
  .free-tools { padding: 2.5rem 1rem; }
  .final-cta { padding: 2.5rem 1rem 3rem; }
}

.quick-quote {
  border-top: 1px solid var(--line);
}

/* -- QUICK QUOTE SECTION -- */
@media (max-width: 960px), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .atm-grain,
  .scanline {
    display: none;
  }

  .atm-floor,
  .atm-cap {
    animation: none;
    opacity: 0.62;
  }

  nav,
  .quick-quote-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  nav {
    background: rgba(10,11,14,0.94);
  }
}

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

  .atm-grid {
    height: 24vh;
  }
}

.quick-quote {
  padding: 5rem 1.5rem;
  background: transparent;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.quick-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  animation: shimmer 3s infinite;
}

.quick-quote .container {
  max-width: 1080px;
  margin: 0 auto;
}

.quick-quote-header {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 2.75rem;
}

.quick-quote-header h2 {
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.9rem;
  font-family: var(--serif);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, var(--text), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.quick-quote-header p {
  font-size: 1.02rem;
  color: var(--text-mid);
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.75;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.quick-quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-bottom: 2.25rem;
}

.quick-quote-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #111317, #181b21);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.28s cubic-bezier(0.25, 0.1, 0.25, 1), border-color 0.28s ease, box-shadow 0.28s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: none;
  box-shadow: 0 18px 34px rgba(0,0,0,0.24);
  will-change: transform;
}

.quick-quote-card::before {
  display: none;
}

.quick-quote-card:hover {
  border-color: var(--line-up);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.32), 0 0 0 2px rgba(94,207,120,0.06);
}

.quick-quote-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--green-glow), var(--green-trace));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--green);
  box-shadow: 0 8px 20px rgba(94,207,120,0.14);
}

.quick-quote-card:hover .quick-quote-icon {
  transform: none;
  box-shadow: 0 8px 20px rgba(94,207,120,0.14);
}

.quick-quote-icon svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.quick-quote-icon i {
  font-size: 1.75rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.quick-quote-card h3 {
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 0;
  margin-bottom: 1rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  transition: color 0.3s ease;
}

.quick-quote-card p {
  font-size: 0.96rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.4rem;
  text-shadow: none;
}

.quick-quote-price {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--green);
  margin-top: auto;
  margin-bottom: 0.8rem;
  font-family: var(--mono);
  text-shadow: none;
  background: linear-gradient(135deg, var(--green), #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.quick-quote-action {
  font-size: 0.92rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

.quick-quote-card:hover .quick-quote-action {
  color: var(--green);
  transform: none;
}

.quick-quote-footer {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  margin-top: 2.4rem;
}

.quick-quote-footer p {
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.quick-quote-footer a {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.quick-quote-footer a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.3s ease;
}

.quick-quote-footer a:hover {
  color: var(--text);
}

.quick-quote-footer a:hover::after {
  width: 100%;
}

.free-tools {
  border-top: 1px solid var(--line);
}

/* -- FREE TOOLS SECTION -- */
.free-tools {
  padding: 3rem 1.5rem;
  background: var(--surface);
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.free-tools::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bronze), transparent);
  opacity: 0.4;
}

.free-tools-header {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto 2.75rem;
}

.free-tools-header h2 {
  font-size: clamp(2rem, 3.7vw, 2.95rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.9rem;
  font-family: var(--serif);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.free-tools-header p {
  font-size: 1.02rem;
  color: var(--text-mid);
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.75;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  max-width: 58rem;
  margin: 0 auto 2rem;
}

.tool-card {
  display: block;
  background: linear-gradient(135deg, #111317, #181b21);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.45rem;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.28s cubic-bezier(0.25, 0.1, 0.25, 1), border-color 0.28s ease, box-shadow 0.28s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: none;
  box-shadow: 0 18px 34px rgba(0,0,0,0.24);
  will-change: transform;
}

.tool-card::before {
  display: none;
}

.tool-card:hover {
  border-color: var(--line-up);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.32), 0 0 0 2px rgba(200,169,106,0.1);
}

.tool-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--bronze-glow), var(--bronze));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--text);
  box-shadow: 0 8px 20px rgba(56,189,248,0.14);
}

.tool-card:hover .tool-icon {
  transform: none;
  box-shadow: 0 8px 20px rgba(56,189,248,0.14);
}

.tool-icon svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.tool-icon i {
  font-size: 1.9rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.tool-card h3 {
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 0;
  margin-bottom: 1rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  transition: color 0.3s ease;
}

.tool-card p {
  font-size: 0.96rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.1rem;
  text-shadow: none;
}

.tool-action {
  font-size: 0.84rem;
  color: var(--text-low);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: color 0.22s ease;
  font-weight: 500;
  font-family: var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tool-card:hover .tool-action {
  color: var(--bronze);
  transform: none;
}

.tools-footer {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  margin-top: 2.25rem;
}

.tools-footer p {
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.tools-footer strong {
  color: var(--bronze);
  font-weight: 700;
}

.tools-footer .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.4rem;
  border-radius: 10px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--green), #22c55e);
  color: var(--void);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 10px 26px rgba(94,207,120,0.18);
}

.tools-footer .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(94,207,120,0.16);
}

.tools-footer-cta p {
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.6;
}

.tools-footer-cta .hub-hero-actions {
  justify-content: center;
}

.tools-footer-trust {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 0.85rem;
  color: var(--text-mid);
}

@media (max-width: 1180px) {
  .service-hub.home-trust .hub-launch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-hub.home-trust .hub-launch-card {
    grid-column: span 1;
  }

  .hub-process-steps {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .free-tools {
    padding: 4rem 1rem;
  }
  
  .free-tools-header h2 {
    font-size: 2rem;
  }
  
  .tools-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .tool-card {
    padding: 2rem;
  }

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

  .tool-icon {
    width: 56px;
    height: 56px;
  }
  
  .tool-icon svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 768px) {
  .service-hub.home-trust {
    padding: 2.5rem 1rem;
  }

  .home-trust-intro {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-hub.home-trust h2 {
    max-width: none;
    font-size: 1.9rem;
  }

  .service-hub.home-trust .hub-launch-grid {
    grid-template-columns: 1fr;
  }

  .hub-process-kicker {
    margin-top: 0.6rem;
  }

  .quick-quote {
    padding: 4rem 1rem;
  }

  .quick-quote-header h2 {
    font-size: 2rem;
  }

  .quick-quote-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .quick-quote-card {
    padding: 1.5rem;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
    max-height: none;
    padding: 2rem 0 2.5rem;
  }

  .left {
    grid-column: 1;
    grid-row: 1;
    padding: 1.5rem 1.5rem 1.25rem;
  }

  .headline {
    max-width: none;
    font-size: clamp(2.1rem, 8vw, 2.8rem);
  }

  .pitch {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
  }

  .hero-trust-strip {
    margin-top: 1rem;
  }

  .hero-trust-strip span {
    padding: 0.55rem 0.75rem;
    font-size: 0.72rem;
  }
}

  .logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
  }
  .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
  }
  .logo-lockup {
    font-family: 'DM Mono', ui-monospace, monospace;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary, #f4f4f5);
    letter-spacing: 0.01em;
  }
  .logo-tagline {
    font-size: 0.72rem;
    color: var(--text-muted, #94a3b8);
    letter-spacing: 0.02em;
  }
  @media (max-width: 720px) {
    .logo-tagline { display: none; }
    .logo-lockup { font-size: 0.85rem; }
  }

</style>

/* -- FINAL CTA (from homepage second style block) -- */
/* -- FINAL CTA -- */
.final-cta {
  padding: 3rem 1.5rem 4rem;
  background:
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(94,207,120,0.04), transparent),
    var(--surface);
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
}

.final-cta .container {
  max-width: 720px;
  margin: 0 auto;
}

.final-cta-inner {
  text-align: center;
}

.final-cta h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 2rem;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.final-cta-primary {
  font-family: var(--mono);
  font-size: 0.84rem; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--void);
  background: linear-gradient(135deg, var(--green), #22c55e);
  min-height: 3.2rem;
  padding: 1rem 1.6rem;
  text-decoration: none; font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.7rem;
  border-radius: 14px;
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 10px 28px var(--green-glow), 0 4px 15px rgba(0,0,0,0.3);
}

.final-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px var(--green-glow), 0 6px 20px rgba(0,0,0,0.35);
}

.final-cta-secondary {
  font-family: var(--mono);
  font-size: 0.84rem; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  background: transparent;
  min-height: 3.2rem;
  padding: 1rem 1.4rem;
  text-decoration: none; font-weight: 500;
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1px solid var(--line-up);
  border-radius: 14px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.final-cta-secondary:hover {
  background: rgba(94,207,120,0.06);
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.final-cta-note {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin: 0;
}

@media (max-width: 540px) {
  .final-cta-actions { flex-direction: column; }
  .final-cta-primary,
  .final-cta-secondary { width: 100%; justify-content: center; }
  #testimonial .home-testimonial { padding: 1.75rem 1.25rem; }
  #testimonial .home-testimonial blockquote { font-size: 1.25rem; }
  #website-request .request-home-form.home-contact-cta { padding: 1.5rem 1.25rem; }
}
