/* ==========================================================================
   STATIKS — Hero Section
   FONTS: Integral CF (Demi Bold cut, used as the SemiBold headline weight)
   and Cartograph CF (Regular + Bold) are the real brand fonts, sourced from
   ../fonts/. WOFF2 is the primary format (converted from the supplied OTF
   files) with the original OTF as a fallback for any browser that can't
   parse WOFF2. Archivo Black / Courier Prime remain in the font-family
   fallback stacks purely as a safety net if a font file ever fails to load.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Courier+Prime:wght@400;700&display=swap');

@font-face {
  font-family: 'Integral CF';
  src: url('../fonts/IntegralCF-SemiBold.woff2') format('woff2'),
       url('../fonts/Integral-DemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cartograph CF';
  src: url('../fonts/CartographCF-Regular.woff2') format('woff2'),
       url('../fonts/CartographCF-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cartograph CF';
  src: url('../fonts/CartographCF-Bold.woff2') format('woff2'),
       url('../fonts/CartographCF-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* palette */
  --highlight: #AF5F1D;
  --bg-secondary: #EDEDE3;
  --border-color: #D5D5CA;
  --bg: #FFFFFF;
  --text-main: #20201E;
  --text-copy: #4B4B4B;
  --cta: #F2BD91;

  /* type */
  --font-display: 'Integral CF', 'Archivo Black', sans-serif;
  --font-mono: 'Cartograph CF', 'Courier Prime', monospace;

  /* layout */
  --container-pad: 57px;
  --max-width: 1620px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text-main);
  font-family: var(--font-mono);
  -webkit-font-smoothing: antialiased;
}

.hidden-section {
  display: none;
}

img { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; -webkit-tap-highlight-color: transparent; }
a:focus { color: inherit; outline: none; }

ul { list-style: none; }

/* ---------- Announcement bar (max 20px tall) ---------- */

.announcement-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--highlight);
  overflow: hidden;
  white-space: nowrap;
  height: 20px;
  display: flex;
  align-items: center;
  transition: background 0.25s ease;
}

.announcement-bar:hover {
  background: #c26e22;
}

.announcement-track {
  display: inline-flex;
  align-items: center;
  height: 100%;
  animation: marquee 26s linear infinite;
}

.announcement-bar:hover .announcement-track {
  animation-play-state: paused;
}

.announcement-track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.05em;
  padding: 0 72px;
  white-space: nowrap;
}

.announcement-track span::after {
  content: '\2022';
  position: absolute;
  right: 28px;
  opacity: 0.6;
}

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

/* ---------- Nav (max 65px tall incl. border) ---------- */

.nav {
  position: sticky;
  top: 20px;
  z-index: 100;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 64px;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--text-main);
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a,
.nav-links a:link,
.nav-links a:visited {
  position: relative;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--text-copy);
  padding-bottom: 3px;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--highlight);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-nav {
  background: var(--cta);
  color: var(--text-main);
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 10px 20px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-nav:hover {
  background: var(--text-main);
  color: var(--cta);
  transform: translateY(-1px);
}

/* ---------- Mobile nav toggle ---------- */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-main);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: sticky;
  top: 84px;
  z-index: 99;
  display: none;
  flex-direction: column;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

body.menu-open .mobile-menu {
  display: flex;
  max-height: 500px;
}

.mobile-menu a {
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.03em;
  color: var(--text-copy);
  text-transform: uppercase;
  padding: 18px var(--container-pad);
  border-bottom: 1px solid var(--border-color);
}

.mobile-menu a.mobile-menu-cta {
  display: flex;
  justify-content: center;
  color: var(--text-main);
  text-transform: uppercase;
  margin: 20px var(--container-pad);
  border-bottom: none;
  padding: 14px 20px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  overflow: hidden;
}

@media (min-width: 1025px) {
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
}

.hero-left {
  width: 62%;
  padding: var(--container-pad) var(--container-pad) 64px var(--container-pad);
}

.hero-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 38%;
  display: flex;
  gap: 4px;
  overflow: hidden;
}

.collage-col {
  flex: 1 1 0;
  overflow: hidden;
  height: 100%;
}

.collage-track {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.collage-col-down .collage-track {
  animation: scrollDown 34s linear infinite;
}

.collage-col-up .collage-track {
  animation: scrollUp 30s linear infinite;
}

.hero-right:hover .collage-track {
  animation-play-state: paused;
}

@keyframes scrollDown {
  from { transform: translateY(-50%); }
  to   { transform: translateY(0); }
}

@keyframes scrollUp {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

.collage-track img {
  width: 100%;
  height: auto;
  object-fit: cover;
  flex: 0 0 auto;
}

.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.stars {
  color: var(--highlight);
  font-size: 18px;
  letter-spacing: 2px;
}

.rating-text {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-copy);
  letter-spacing: 0.02em;
}

.headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 66px;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--text-main);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.subhead {
  font-family: var(--font-mono);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-copy);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.cta-row {
  margin-bottom: 28px;
}

.cta-wrap {
  position: relative;
  display: inline-block;
}

.btn-cta {
  display: flex;
  align-items: stretch;
  background: var(--cta);
  color: var(--text-main);
  font-size: 19px;
  letter-spacing: 0.02em;
  padding: 0;
  transition: background 0.2s ease;
}

.btn-cta:hover {
  background: #eeae82;
}

.btn-cta-label {
  display: flex;
  align-items: center;
  padding: 15px 28px;
}

.btn-cta-arrow {
  background: var(--text-main);
  color: var(--cta);
  flex: 0 0 58px;
  width: 58px;
  margin: 5px 5px 5px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.25s ease;
}

.btn-cta:hover .btn-cta-arrow {
  transform: translateX(3px);
}

.corner {
  position: absolute;
  width: 12px;
  height: 12px;
  pointer-events: none;
  transition: transform 0.25s ease;
}

.corner-tl {
  top: 0;
  left: 0;
  border-top: 2px solid var(--highlight);
  border-left: 2px solid var(--highlight);
}

.corner-tr {
  top: 0;
  right: 0;
  border-top: 2px solid var(--highlight);
  border-right: 2px solid var(--highlight);
}

.corner-bl {
  bottom: 0;
  left: 0;
  border-bottom: 2px solid var(--highlight);
  border-left: 2px solid var(--highlight);
}

.corner-br {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid var(--highlight);
  border-right: 2px solid var(--highlight);
}

.cta-wrap:hover .corner-tl { transform: translate(-3px, -3px); }
.cta-wrap:hover .corner-tr { transform: translate(3px, -3px); }
.cta-wrap:hover .corner-bl { transform: translate(-3px, 3px); }
.cta-wrap:hover .corner-br { transform: translate(3px, 3px); }

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, auto);
  column-gap: 32px;
  row-gap: 14px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--text-copy);
  text-transform: uppercase;
  white-space: nowrap;
}

.feature-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

/* ---------- Trusted by grid ---------- */

.trusted {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.trusted-cell {
  height: 117px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
}

.trusted-label {
  background: var(--bg);
  border-color: transparent;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--text-copy);
  text-transform: uppercase;
}

.logo-cell {
  transition: background 0.2s ease;
}

.logo-cell img {
  height: 22px;
  width: auto;
  max-width: 70%;
  object-fit: contain;
}

.logo-cell:hover {
  background: var(--border-color);
}

/* ---------- Features ---------- */

.features {
  background: var(--bg-secondary);
  padding: 90px 0 100px;
}

.features-top {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.features-heading {
  flex: 0 1 700px;
}

.eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--cta);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.features-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 42px;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--text-main);
  text-transform: uppercase;
}

.features-intro {
  flex: 0 1 410px;
  padding-top: 4px;
}

.features-intro p {
  font-family: var(--font-mono);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-copy);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.features-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 385px 299px;
  gap: 10px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border-color);
  background: var(--bg);
  overflow: hidden;
}

.feature-card-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card > .feature-card-image {
  flex: 0 0 212px;
}

.feature-card-text {
  padding: 26px 20px;
}

.feature-card-text h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--text-main);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.feature-card-text p {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--text-copy);
  text-transform: uppercase;
}

.feature-card-wide {
  grid-column: span 2;
  display: flex;
  flex-direction: row;
  border: 1px solid var(--border-color);
  background: var(--bg);
  overflow: hidden;
}

.feature-card-wide .feature-card-image {
  flex: 0 0 50%;
}

.feature-card-wide .feature-card-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 32px;
}

/* ---------- Work ---------- */

.work {
  background: var(--bg);
  padding: 90px 0 100px;
}

.work-top {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.work-heading {
  flex: 0 1 700px;
}

.work-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 42px;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--text-main);
  text-transform: uppercase;
}

.work-intro {
  flex: 0 1 580px;
  padding-top: 4px;
}

.work-intro p {
  font-family: var(--font-mono);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-copy);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.work-intro .feature-list {
  grid-template-columns: repeat(2, auto);
  column-gap: 48px;
}

.work-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.work-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* ---------- Reviews ---------- */

.reviews {
  background: var(--bg);
  padding: 90px 0 100px;
  overflow: hidden;
}

.reviews-top {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.reviews-heading {
  flex: 0 1 700px;
}

.reviews-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 42px;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--text-main);
  text-transform: uppercase;
}

.reviews-intro {
  flex: 0 1 580px;
  padding-top: 4px;
}

.reviews-intro p {
  font-family: var(--font-mono);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-copy);
  text-transform: uppercase;
}

.reviews-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 0 var(--container-pad);
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.reviews-row::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 519px;
  scroll-snap-align: start;
  background: var(--bg-secondary);
  padding: 28px;
}

.review-stars {
  color: var(--highlight);
  font-size: 20px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.review-text {
  font-family: var(--font-mono);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-copy);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #d5d5ca 0%, #ededE3 60%, #d5d5ca 100%);
}

.review-author-text h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--text-main);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.review-author-text p {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-copy);
  text-transform: uppercase;
}

/* ---------- Process ---------- */

.process {
  background: var(--bg);
  padding: 90px 0 100px;
}

.process-top {
  max-width: 960px;
  margin: 0 auto 60px;
  padding: 0 24px;
  text-align: center;
}

.process-top .eyebrow {
  display: inline-block;
}

.process-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 42px;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--text-main);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.process-top p {
  font-family: var(--font-mono);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-copy);
  text-transform: uppercase;
  max-width: 730px;
  margin: 0 auto;
}

.process-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 50px;
}

.process-step-image {
  width: 100%;
  height: 180px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.process-step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--text-main);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.process-step p {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--text-copy);
  text-transform: uppercase;
}

.process-cta {
  display: flex;
  justify-content: center;
}

/* ---------- Pricing ---------- */

.pricing {
  background: var(--bg-secondary);
}

.pricing-top {
  background: var(--bg);
  padding: 90px var(--container-pad) 60px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.pricing-heading {
  flex: 0 1 700px;
}

.pricing-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 42px;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--text-main);
  text-transform: uppercase;
}

.pricing-intro {
  flex: 0 1 460px;
  padding-top: 4px;
}

.pricing-intro p {
  font-family: var(--font-mono);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-copy);
  text-transform: uppercase;
}

.pricing-bg {
  position: relative;
  background-image: url('../assets/PRICING%20BG.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pricing-cards {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 90px var(--container-pad) 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: start;
}

.price-card {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 15px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease;
}

.price-card:hover {
  border-color: var(--highlight);
}

.price-card:hover .corner-tl { transform: translate(-3px, -3px); }
.price-card:hover .corner-tr { transform: translate(3px, -3px); }
.price-card:hover .corner-bl { transform: translate(-3px, 3px); }
.price-card:hover .corner-br { transform: translate(3px, 3px); }

.price-card-featured {
  margin-top: -51px;
}

.price-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--highlight);
  color: var(--cta);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 8px 14px;
  text-transform: uppercase;
}

.price-icon {
  width: 52px;
  height: 52px;
  background: var(--bg);
  color: var(--highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.price-icon svg,
.price-icon img {
  width: 26px;
  height: 26px;
}

.price-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 30px;
  letter-spacing: -0.01em;
  color: var(--text-main);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.price-tagline {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--text-copy);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.price-block {
  background: #EFDFCA;
  padding: 20px 24px;
  margin-bottom: 24px;
}

.price-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--text-copy);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.price-amount {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 40px;
  color: var(--highlight);
}

.price-amount span {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.price-features li {
  white-space: normal;
  align-items: flex-end;
}

.btn-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--text-main);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 18px;
  margin-top: auto;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-dark:hover {
  background: var(--cta);
  color: var(--text-main);
  transform: translateY(-1px);
}

/* ---------- FAQs ---------- */

.faqs {
  background: var(--bg);
  padding: 90px 0 60px;
}

.faqs-top {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.faqs-heading {
  flex: 0 1 700px;
}

.faqs-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 42px;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--text-main);
  text-transform: uppercase;
}

.faqs-intro {
  flex: 0 1 580px;
  padding-top: 4px;
}

.faqs-intro p {
  font-family: var(--font-mono);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-copy);
  text-transform: uppercase;
}

.faqs-body {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.faq-list {
  flex: 0 1 802px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg-secondary);
}

.faq-question {
  width: 100%;
  height: 57px;
  background: none;
  border: none;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.faq-question span:first-child {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--text-copy);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 24px 24px;
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-copy);
  text-transform: uppercase;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-toggle {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  background: var(--bg);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--text-main);
  transition: transform 0.25s ease, background 0.2s ease;
}

.faq-question:hover .faq-toggle {
  background: var(--border-color);
}

.faq-contact {
  flex: 1 1 503px;
  background: var(--text-main);
  padding: 40px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

.faq-contact h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 30px;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.faq-contact p {
  font-family: var(--font-mono);
  font-size: 15px;
  line-height: 1.5;
  color: #C7C7C5;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.faq-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cta);
  color: var(--text-main);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 18px;
  margin-top: auto;
  transition: background 0.2s ease, transform 0.2s ease;
}

.faq-contact-btn:hover {
  background: #eeae82;
  transform: translateY(-1px);
}

/* ---------- Last CTA ---------- */

.last-cta {
  background: var(--bg);
  padding: 90px var(--container-pad) 100px;
}

.last-cta-card {
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--bg-secondary);
  padding: 70px 40px;
  text-align: center;
}

.last-cta-card .eyebrow {
  display: inline-block;
}

.last-cta-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 42px;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--text-main);
  text-transform: uppercase;
  max-width: 900px;
  margin: 0 auto 24px;
}

.last-cta-card > p {
  font-family: var(--font-mono);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-copy);
  text-transform: uppercase;
  max-width: 730px;
  margin: 0 auto 36px;
}

.last-cta-wrap {
  display: inline-block;
  margin-bottom: 36px;
}

.last-cta-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 40px;
  row-gap: 14px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--bg);
  overflow: hidden;
}

.footer-top {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px var(--container-pad) 60px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  flex: 0 1 640px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  font-family: var(--font-mono);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-copy);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.footer-copyright {
  display: block;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--cta);
  text-transform: uppercase;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--text-main);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col a {
  position: relative;
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--text-copy);
  text-transform: uppercase;
  margin-bottom: 12px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-col a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--highlight);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.footer-col a:hover {
  color: var(--text-main);
  transform: translateX(4px);
}

.footer-col a:hover::after {
  transform: scaleX(1);
}

.footer-wordmark-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  overflow: hidden;
}

.footer-wordmark {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 268px;
  line-height: 0.8;
  letter-spacing: -0.01em;
  color: var(--border-color);
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateY(28%);
}

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.07s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.14s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.21s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.28s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.35s; }
.reveal-stagger > .reveal:nth-child(7) { transition-delay: 0.42s; }
.reveal-stagger > .reveal:nth-child(8) { transition-delay: 0.49s; }
.reveal-stagger > .reveal:nth-child(9) { transition-delay: 0.56s; }
.reveal-stagger > .reveal:nth-child(10) { transition-delay: 0.63s; }
.reveal-stagger > .reveal:nth-child(11) { transition-delay: 0.63s; }
.reveal-stagger > .reveal:nth-child(n+12) { transition-delay: 0.63s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Legal pages ---------- */

.legal-hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 90px var(--container-pad) 56px;
}

.legal-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 48px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--text-main);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.legal-updated {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--text-copy);
  text-transform: uppercase;
}

.legal-body {
  background: var(--bg-secondary);
  padding: 56px var(--container-pad) 100px;
}

.legal-body-inner {
  max-width: 820px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border-color);
  padding: 56px;
}

.legal-body-inner h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--text-main);
  text-transform: uppercase;
  margin: 40px 0 14px;
}

.legal-body-inner h2:first-child {
  margin-top: 0;
}

.legal-body-inner p {
  font-family: var(--font-mono);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-copy);
  margin-bottom: 16px;
}

.legal-body-inner ul {
  margin: 0 0 16px;
}

.legal-body-inner li {
  position: relative;
  font-family: var(--font-mono);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-copy);
  padding-left: 20px;
  margin-bottom: 8px;
}

.legal-body-inner li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--highlight);
}

.legal-body-inner a {
  color: var(--highlight);
  text-decoration: underline;
}

.legal-notice {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 20px 24px;
  margin-bottom: 32px;
}

.legal-notice p {
  margin-bottom: 0;
  font-size: 14px;
}

/* ---------- Illustrations (mock product-UI cards on textured backgrounds) ---------- */

.illustration {
  position: absolute;
  inset: 0;
}

.illustration::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
}

.illustration::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
  background-image: radial-gradient(circle, rgba(32,32,30,0.14) 1px, transparent 1px);
  background-size: 14px 14px;
  mix-blend-mode: multiply;
}

.illustration--warm::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(242,189,145,0.95), transparent 52%),
    radial-gradient(circle at 82% 28%, rgba(175,95,29,0.6), transparent 58%),
    radial-gradient(circle at 55% 92%, rgba(32,32,30,0.28), transparent 55%),
    linear-gradient(135deg, #EDEDE3, #D5D5CA);
}

.illustration--dark::before {
  background:
    radial-gradient(circle at 78% 18%, rgba(242,189,145,0.55), transparent 52%),
    radial-gradient(circle at 18% 82%, rgba(175,95,29,0.7), transparent 58%),
    linear-gradient(150deg, #20201E, #4B4B4B 130%);
}

.illustration--dark::after {
  opacity: 0.3;
  mix-blend-mode: screen;
  background-image: radial-gradient(circle, rgba(255,255,255,0.16) 1px, transparent 1px);
}

.illustration--peach::before {
  background:
    radial-gradient(circle at 28% 22%, rgba(255,255,255,0.55), transparent 48%),
    radial-gradient(circle at 78% 78%, rgba(175,95,29,0.5), transparent 55%),
    linear-gradient(135deg, #F2BD91, #EDEDE3 120%);
}

.illustration .corner {
  z-index: 2;
}

.mock-card {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 165px;
  background: #FFFFFF;
  border-radius: 0;
  box-shadow: 0 14px 28px rgba(32, 32, 30, 0.22), 0 3px 8px rgba(32, 32, 30, 0.1);
  padding: 13px 15px;
  font-family: var(--font-mono);
}

.mock-card__label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--text-copy);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.mock-dot {
  width: 6px;
  height: 6px;
  border-radius: 0;
  background: var(--highlight);
  flex: 0 0 auto;
}

.mock-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.mock-sub {
  font-size: 9px;
  color: var(--text-copy);
  letter-spacing: 0.01em;
}

.mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 0;
  border-top: 1px solid var(--border-color);
}

.mock-row:first-of-type {
  border-top: none;
  padding-top: 0;
}

.mock-avatar {
  width: 16px;
  height: 16px;
  border-radius: 0;
  flex: 0 0 auto;
}

.mock-pill {
  display: inline-flex;
  align-items: center;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 0;
  white-space: nowrap;
}

.mock-pill--active {
  background: #E4F1E7;
  color: #2F7A43;
}

.mock-pill--rust {
  background: rgba(175, 95, 29, 0.12);
  color: var(--highlight);
}

.mock-pill--dark {
  background: var(--text-main);
  color: #FFFFFF;
}

.mock-pill--muted {
  background: var(--bg-secondary);
  color: var(--text-main);
}

.mock-check {
  font-size: 10px;
  font-weight: 700;
  color: #2F7A43;
}

.mock-bar-track {
  height: 5px;
  border-radius: 0;
  background: var(--border-color);
  overflow: hidden;
  margin-top: 8px;
}

.mock-bar-fill {
  height: 100%;
  border-radius: 0;
  background: var(--highlight);
}

/* ---------- Responsive ---------- */

/* Tablet: stack the shared heading|intro header pattern, thin out grids */
@media (max-width: 1024px) {
  :root { --container-pad: 32px; }

  .nav-links { display: none; }

  .nav-inner .btn-nav { display: none; }

  .nav-toggle { display: flex; }

  /* Hero */
  .hero { position: static; display: block; }

  .hero-left { width: 100%; padding-bottom: 40px; }

  .hero-right {
    position: static;
    width: 100%;
    height: 320px;
    margin-top: 0;
  }

  .headline { font-size: 44px; }

  .feature-list { grid-template-columns: repeat(2, auto); }

  /* Trusted-by */
  .trusted { grid-template-columns: repeat(3, 1fr); }

  /* Shared "eyebrow + headline | intro" header pattern used by
     Features/Work/Reviews/Pricing/FAQs — stack to a single column */
  .features-top,
  .work-top,
  .reviews-top,
  .pricing-top,
  .faqs-top {
    flex-direction: column;
    gap: 24px;
  }

  .features-heading,
  .work-heading,
  .reviews-heading,
  .pricing-heading,
  .faqs-heading,
  .features-intro,
  .work-intro,
  .reviews-intro,
  .pricing-intro,
  .faqs-intro {
    flex: 1 1 auto;
    max-width: 100%;
  }

  .features-title,
  .work-title,
  .reviews-title,
  .pricing-title,
  .faqs-title {
    font-size: 34px;
  }

  /* Features grid: 4 cols -> 2 cols, wide cards stay full-width */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
  }

  .feature-card { grid-row: auto; }

  .feature-card-wide { grid-column: span 2; }

  /* Work grid: 5 cols -> 2, let row height follow content */
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
  }

  .work-grid img { aspect-ratio: 4 / 5; height: auto; }

  /* Process */
  .process-grid { grid-template-columns: repeat(2, 1fr); }

  .process-top { max-width: 600px; }

  /* Pricing */
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .price-card-featured { margin-top: 0; }

  /* Footer */
  .footer-top { flex-wrap: wrap; row-gap: 40px; }

  .footer-wordmark { font-size: 160px; }
}

/* Phone: single-column everything, smaller type scale */
@media (max-width: 640px) {
  :root { --container-pad: 20px; }

  .features,
  .work,
  .reviews,
  .process,
  .faqs {
    padding: 56px 0 64px;
  }

  .pricing-top { padding: 56px var(--container-pad) 40px; }

  .pricing-cards { padding: 48px var(--container-pad) 56px; gap: 24px; }

  /* Nav */
  .logo { font-size: 17px; }

  .btn-nav { font-size: 12px; padding: 8px 14px; }

  /* Hero */
  .headline { font-size: 30px; }

  .subhead { font-size: 13px; }

  .rating-text { font-size: 11px; }

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

  .hero-right { height: 220px; }

  .btn-cta { font-size: 13px; }

  /* Trusted-by */
  .trusted { grid-template-columns: repeat(2, 1fr); }

  .trusted-cell { height: 80px; }

  .logo-cell { font-size: 15px; }

  /* Shared section headers */
  .features-title,
  .work-title,
  .reviews-title,
  .pricing-title,
  .faqs-title,
  .process-title,
  .last-cta-title {
    font-size: 26px;
  }

  .features-intro p,
  .work-intro p,
  .reviews-intro p,
  .pricing-intro p,
  .faqs-intro p,
  .process-top p,
  .last-cta-card > p {
    font-size: 13px;
  }

  /* Features + Process grids collapse to one column */
  .features-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .feature-card-wide {
    grid-column: span 1;
    flex-direction: column;
  }

  .feature-card-image { flex-basis: 160px; }

  .feature-card-wide .feature-card-image { flex-basis: 160px; }

  .feature-card-text h3 { font-size: 17px; }

  /* Work grid becomes a horizontal slider */
  .work-grid {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .work-grid::-webkit-scrollbar { display: none; }

  .work-grid img {
    flex: 0 0 75%;
    scroll-snap-align: start;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .work-intro .feature-list { grid-template-columns: 1fr; }

  /* Reviews */
  .review-card { flex-basis: 85%; }

  /* Pricing */
  .price-amount { font-size: 32px; }

  .price-card h3 { font-size: 24px; }

  /* FAQs */
  .faqs-body { flex-direction: column; }

  .faq-list { flex-basis: auto; width: 100%; }

  .faq-contact { flex-basis: auto; width: 100%; }

  .faq-question span:first-child { white-space: normal; }

  /* Last CTA */
  .last-cta { padding: 56px var(--container-pad) 64px; }

  .last-cta-card { padding: 48px 24px; }

  .last-cta-features { row-gap: 16px; }

  /* Footer */
  .footer-top {
    flex-direction: column;
    gap: 32px;
    padding: 56px var(--container-pad) 40px;
  }

  .footer-brand,
  .footer-col {
    flex: 0 0 auto;
  }

  .footer-wordmark { font-size: 84px; }

  /* Legal pages */
  .legal-hero { padding: 56px var(--container-pad) 40px; }

  .legal-title { font-size: 30px; }

  .legal-body { padding: 0 var(--container-pad) 64px; }

  .legal-body-inner { padding: 28px 20px; }

  .legal-body-inner h2 { font-size: 18px; }
}
