/* crew-X | style.css */

/* ─── RESET & ROOT ─────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #080808;
  --white: #fff;
  --ash: #f2f2f0;
  --dim: rgba(255, 255, 255, 0.35);
  --blue: #0066ff;
  --sp: 64px;
  --hpad: 48px;
  --mw: 1280px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    sans-serif;
  background: var(--ink);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── LOADER ────────────────────────────────────────────────────────────────── */
.loader-wrapper {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}
.loader-wrapper.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.lock-animation {
  position: relative;
  width: 80px;
  height: 100px;
}
.lock-icon {
  filter: drop-shadow(0 0 20px rgba(0, 102, 255, 0.3));
}
.loader-progress {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar {
  height: 100%;
  background: linear-gradient(90deg, #0066ff, #00a3ff);
  border-radius: 2px;
  animation: loading 2.5s ease forwards;
  transform-origin: left;
}

/* ─── NAV ───────────────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: 56px;
  display: flex;
  align-items: center;
  background: rgba(8, 8, 8, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  width: 100%;
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 var(--hpad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.3px;
}
.logo em {
  font-style: normal;
  color: var(--dim);
  font-weight: 300;
}
.logo img {
  height: 56px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.nav-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: -0.1px;
}
.nav-contact:hover {
  color: #fff;
}
.mail-icon {
  color: var(--blue);
  flex-shrink: 0;
  height: 24px;
  width: auto;
}

/* ─── HERO ──────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: var(--sp) 24px;
  background: var(--ink);
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 102, 255, 0.12) 0%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 1;
}
.hero-copy {
  position: relative;
  z-index: 20;
  text-align: center;
  padding: 0 24px;
  max-width: 680px;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 24px;
  border-radius: 100px;
  padding: 6px 16px;
  opacity: 0;
  animation: riseIn 0.6s ease 0.1s forwards;
}
.hero-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #30d158;
  box-shadow: 0 0 8px rgba(48, 209, 88, 0.7);
}
.hero-h1 {
  font-size: clamp(48px, 6.5vw, 82px);
  font-weight: 800;
  line-height: 0.97;
  letter-spacing: -0.05em;
  color: #fff;
  margin-bottom: 22px;
  opacity: 0;
  animation: riseIn 0.7s ease 0.25s forwards;
}
.hero-h1 em {
  font-style: normal;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.42);
}
.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  max-width: 420px;
  margin: 0 auto 36px;
  letter-spacing: -0.1px;
  opacity: 0;
  animation: riseIn 0.6s ease 0.44s forwards;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: riseIn 0.6s ease 0.6s forwards;
}

/* ─── BUTTONS ───────────────────────────────────────────────────────────────── */
.btn-solid {
  background: #fff;
  color: var(--ink);
  font-family:
    "Inter",
    -apple-system,
    sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.1px;
  padding: 13px 30px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}
.btn-solid:hover {
  background: #e0e0e0;
  transform: scale(1.02);
}
.btn-outline {
  font-size: 14px;
  font-weight: 400;
  color: var(--dim);
  text-decoration: none;
  letter-spacing: -0.1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.btn-outline:hover {
  color: #fff;
}
.btn-outline::after {
  content: "\2193";
  font-size: 16px;
}

/* ─── HERO CHIPS ────────────────────────────────────────────────────────────── */
.hero-chips-wrap {
  position: absolute;
  inset: 0;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  pointer-events: none;
}
.chip {
  position: absolute;
  z-index: 30;
  will-change: opacity;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  padding: 10px 13px;
  opacity: 0;
}
.hero-chips-wrap .chip {
  pointer-events: auto;
}
.chip-1 {
  top: 28%;
  left: 4%;
  animation: chipIn 0.5s ease 1s forwards;
}
.chip-2 {
  top: 18%;
  right: 6%;
  animation: chipIn 0.5s ease 1.15s forwards;
}
.chip-3 {
  bottom: 22%;
  left: 7%;
  animation: chipIn 0.5s ease 1.3s forwards;
}
.chip-4 {
  bottom: 14%;
  right: 4%;
  animation: chipIn 0.5s ease 1.45s forwards;
}
.chip-top {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 5px;
}
.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-g {
  background: #30d158;
  box-shadow: 0 0 6px rgba(48, 209, 88, 0.6);
}
.dot-b {
  background: #0066ff;
  box-shadow: 0 0 6px rgba(0, 102, 255, 0.6);
}
.dot-o {
  background: #ff9f0a;
  box-shadow: 0 0 6px rgba(255, 159, 10, 0.6);
}
.dot-p {
  background: #bf5af2;
  box-shadow: 0 0 6px rgba(191, 90, 242, 0.6);
}
.chip-name {
  font-size: 9px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.55);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.chip-sub {
  font-size: 8px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.35);
  margin-bottom: 4px;
}
.chip-val {
  font-size: 17px;
  font-weight: 700;
  color: #080808;
  letter-spacing: -0.04em;
  line-height: 1;
}

/* ─── RETAINER CARD ─────────────────────────────────────────────────────────── */
.retainer-card {
  max-width: var(--mw);
  margin: 0 auto;
  padding: var(--sp) var(--hpad);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow:
    0 2px 40px rgba(0, 102, 255, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
}
.dark-zone {
  background: var(--ink);
  padding: var(--sp) var(--hpad);
}
.retainer-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.retainer-title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.045em;
  color: #fff;
  line-height: 1.08;
}
.retainer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(48, 209, 88, 0.1);
  border: 1px solid rgba(48, 209, 88, 0.25);
  font-size: 13px;
  font-weight: 600;
  color: #30d158;
  letter-spacing: -0.01em;
  line-height: 1;
}
.retainer-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #30d158;
  box-shadow: 0 0 8px rgba(48, 209, 88, 0.7);
  flex-shrink: 0;
  animation: pulseDot 2s ease-in-out infinite;
}
.retainer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 72px;
  margin-bottom: 32px;
}
.retainer-col-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}
.retainer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.retainer-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  line-height: 1.65;
  text-align: justify;
  text-justify: inter-word;
}
.retainer-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #30d158;
  font-weight: 900;
}
.retainer-how-col .retainer-body-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
  text-align: justify;
  text-justify: inter-word;
}
.retainer-how-col .retainer-body-text:last-child {
  margin-bottom: 0;
}
.retainer-hl {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}
.retainer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  flex-wrap: wrap;
}
.retainer-commitment {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: -0.01em;
}
.retainer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 13px 32px;
  border-radius: 100px;
  border: none;
  background: #0066ff;
  color: #fff;
  font-family:
    "Inter",
    -apple-system,
    sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.35);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}
.retainer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 102, 255, 0.45);
  background: #0055dd;
}

/* ─── CLIENT LOGOS ───────────────────────────────────────────────────────────── */
.logo-strip {
  padding: var(--sp) var(--hpad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  max-width: var(--mw);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.logo-strip-label {
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}
.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  row-gap: 48px;
  column-gap: 48px;
  flex-wrap: wrap;
}
.logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.35;
  transition: opacity 0.25s ease;
}
.logo-link:hover {
  opacity: 0.7;
}
.logo-img {
  max-height: 60px;
  height: auto;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

/* ─── BRIDGES ────────────────────────────────────────────────────────────────── */
.found-bridge {
  height: 80px;
  background: linear-gradient(to bottom, var(--ink) 0%, #fff 100%);
}
.testi-bridge {
  height: 80px;
  background: linear-gradient(to bottom, #fff 0%, #f3f4f6 100%);
}
.faq-bridge {
  height: 80px;
  background: linear-gradient(to bottom, #f3f4f6 0%, #0d0d0d 100%);
}

/* ─── FOUNDER ────────────────────────────────────────────────────────────────── */
.founder {
  background: #fff;
  padding: var(--sp) var(--hpad);
  display: flex;
  align-items: center;
  justify-content: center;
}
.found-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
}
.found-photo {
  flex-shrink: 0;
  width: 256px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.found-photo img {
  width: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.founder-portrait {
  filter: grayscale(100%);
  transition: filter 0.55s ease;
}
.found-photo:hover .founder-portrait {
  filter: grayscale(0%);
}
.found-words {
  max-width: 500px;
}
.found-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}
.found-q {
  font-family:
    "Inter",
    -apple-system,
    sans-serif;
  font-size: clamp(18px, 2.4vw, 26px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.75);
  margin-bottom: 24px;
}
.found-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 14px;
  margin-bottom: 2px;
  text-align: center;
}
.found-role {
  font-size: 12px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.38);
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── TESTIMONIALS ──────────────────────────────────────────────────────────── */
.testi {
  background: #f3f4f6;
  padding: var(--sp) var(--hpad);
}
.testi-inner {
  max-width: var(--mw);
  margin: 0 auto;
}
.testi-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.28);
  margin-bottom: 12px;
  text-align: center;
}
.testi-h {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #0a0d14;
  margin-bottom: 48px;
  line-height: 1.05;
  text-align: center;
}
.tmasonry {
  columns: 2;
  column-gap: 24px;
}
.tcard {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid #dde4eb;
  border-radius: 16px;
  padding: 28px 30px;
  break-inside: avoid;
  display: block;
  width: 100%;
  margin-bottom: 24px;
  box-shadow:
    0 2px 10px rgba(16, 24, 40, 0.05),
    0 12px 28px rgba(16, 24, 40, 0.04);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}
.tcard:hover {
  transform: translateY(-4px);
  box-shadow:
    0 14px 40px rgba(16, 24, 40, 0.09),
    0 28px 70px rgba(16, 24, 40, 0.07);
  border-color: #c4d8ce;
}
.tcard-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.tcard-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}
.tcard-av-initials {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(0, 102, 255, 0.08);
  border: 1px solid rgba(0, 102, 255, 0.15);
  color: #0066ff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.02em;
}
.tcard-name {
  font-size: 15px;
  font-weight: 700;
  color: #0a0d14;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.tcard-role {
  font-size: 12px;
  color: #94a3b4;
  margin-top: 2px;
}
.tcard-body {
  font-size: 15px;
  color: #4a5563;
  line-height: 1.72;
}
.tcard-body p {
  margin: 0;
}
.tcard-body p + p {
  margin-top: 10px;
}
.tcard-body b,
.tcard-body strong {
  font-weight: 700;
  color: inherit;
  background: linear-gradient(transparent 58%, rgba(0, 102, 255, 0.12) 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* ─── FAQ ───────────────────────────────────────────────────────────────────── */
.faq {
  background: #0d0d0d;
  padding: var(--sp) var(--hpad);
}
.faq-inner {
  max-width: 700px;
  margin: 0 auto;
}
.faq-h {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 48px;
  text-align: center;
}
.fq {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.fq-btn {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-family:
    "Inter",
    -apple-system,
    sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-align: left;
  gap: 20px;
  transition: color 0.2s;
  letter-spacing: -0.1px;
}
.fq-btn:hover {
  color: #fff;
}
.fq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s,
    transform 0.35s;
}
.fq.open .fq-icon {
  background: var(--blue);
  transform: rotate(45deg);
}
.fq.open .fq-btn {
  color: #fff;
}
.fq-body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.3s;
}
.fq.open .fq-body {
  max-height: 320px;
  padding-bottom: 24px;
}
.fq-body p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: -0.1px;
  text-align: justify;
  text-justify: inter-word;
}

/* ─── CTA ───────────────────────────────────────────────────────────────────── */
.cta {
  background: var(--ink);
  padding: var(--sp) var(--hpad);
  text-align: center;
}
.cta-h {
  font-size: clamp(38px, 6vw, 74px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: #fff;
  margin-bottom: 24px;
  max-width: var(--mw);
  margin-left: auto;
  margin-right: auto;
}
.cta-h em {
  font-style: normal;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.38);
}
.cta-s {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.65;
  margin-bottom: 32px;
  letter-spacing: -0.1px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.cta-cal-wrap {
  width: 100%;
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 var(--hpad);
}

/* ─── FOOTER ────────────────────────────────────────────────────────────────── */
footer {
  background: #000;
  padding: 24px var(--hpad);
}
.foot-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.foot-logo {
  font-size: 14px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: -0.3px;
}
.foot-logo em {
  font-style: normal;
  font-weight: 300;
}
.foot-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: -0.1px;
}
.foot-li a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.22);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  letter-spacing: -0.1px;
}
.foot-li a:hover {
  color: rgba(255, 255, 255, 0.65);
}
.foot-li svg {
  opacity: 0.5;
  transition: opacity 0.2s;
}
.foot-li a:hover svg {
  opacity: 1;
}
.linkedin-icon {
  color: #0066ff;
  height: 24px;
  width: auto;
}

/* ─── SCROLL REVEAL ─────────────────────────────────────────────────────────── */
.rev {
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.rev.vis {
  opacity: 1;
  transform: translateY(0);
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}

/* ─── KEYFRAMES ─────────────────────────────────────────────────────────────── */
@keyframes pulseDot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}
@keyframes loading {
  0% {
    transform: scaleX(0);
  }
  50% {
    transform: scaleX(0.7);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes chipIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── RESPONSIVE ────────────────────────────────────────────────────────────── */
@media (min-width: 1366px) {
  .logo-img {
    height: 60px;
    min-width: 250px;
  }
}
@media (max-width: 960px) {
  .found-inner {
    flex-direction: column;
    gap: 0;
  }
  .found-photo {
    width: 100%;
    order: 2;
  }
  .found-photo img {
    height: 380px;
    width: auto;
    max-width: 100%;
  }
  .found-words {
    max-width: 100%;
    padding: 52px 36px 40px;
    order: 1;
  }
}
@media (max-width: 900px) {
  .chip-3,
  .chip-4 {
    display: none;
  }
  .chip-1 {
    top: 20%;
    left: 3%;
    animation: chipIn 0.5s ease 1s forwards;
  }
  .chip-2 {
    top: auto;
    bottom: 22%;
    right: 3%;
    animation: chipIn 0.5s ease 1.15s forwards;
  }
}
@media (max-width: 768px) {
  .dark-zone {
    padding: 0 20px 64px;
  }
  .retainer-card {
    padding: 40px 24px;
  }
  .retainer-top {
    margin-bottom: 26px;
    gap: 12px;
  }
  .retainer-title {
    font-size: 21px;
  }
  .retainer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 32px;
  }
  .retainer-bottom {
    padding-top: 22px;
    justify-content: center;
  }
  .retainer-cta {
    min-width: 0;
    width: 100%;
  }
  .logo-strip {
    padding: 40px 24px 48px;
    gap: 36px;
  }
  .logo-row {
    row-gap: 24px;
    column-gap: 18px;
  }
  .logo-img {
    height: 48px;
    max-width: 150px;
  }
  .logo img {
    height: 48px;
  }
  .nav-inner {
    padding: 0 20px;
  }
  .nav-contact span {
    display: none;
  }
  footer {
    padding: 24px;
  }
  .foot-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .cta-cal-wrap {
    padding: 0 16px;
  }
}
@media (max-width: 640px) {
  .founder {
    padding: 40px 0 60px;
  }
  .found-photo img {
    height: 280px;
  }
  .found-words {
    padding: 40px 24px 0;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 0 20px;
    min-height: 100svh;
    justify-content: center;
  }
  .hero-h1 {
    font-size: 38px;
    line-height: 1.02;
    letter-spacing: -0.04em;
  }
  .hero-sub {
    font-size: 15px;
    max-width: 100%;
  }
  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .btn-solid {
    width: 100%;
    text-align: center;
  }
  .btn-outline {
    justify-content: center;
  }
  .testi {
    padding: 64px 20px;
  }
  .tmasonry {
    columns: 1;
    column-gap: 0;
  }
  .testi-h {
    font-size: 24px;
    line-height: 1.15;
    margin-bottom: 36px;
  }
  .cta-h {
    font-size: 30px;
    line-height: 1.05;
    letter-spacing: -0.035em;
  }
  .cta-s {
    font-size: 14px;
  }
  .cta {
    padding: 80px 24px;
  }
  .faq-h {
    font-size: 30px;
  }
  .fq-btn {
    font-size: 14px;
    padding: 16px 0;
  }
  .found-q {
    font-size: 16px;
    line-height: 1.65;
  }
  .faq-inner {
    max-width: 100%;
    padding: 0;
  }
}
@media (max-width: 480px) {
  .chip-1 {
    top: 17%;
    left: 2%;
  }
  .chip-2 {
    bottom: 18%;
    right: 2%;
  }
  .chip-1 .chip-val,
  .chip-2 .chip-val {
    font-size: 14px;
  }
  .chip-1 .chip-name,
  .chip-2 .chip-name {
    font-size: 8px;
  }
  .chip-sub {
    display: none;
  }
  .chip {
    padding: 8px 11px;
  }
  .cta-cal-wrap {
    padding: 0;
  }
}
@media (max-width: 370px) {
  .logo-img {
    max-width: 100px;
  }
}
@media (min-width: 601px) and (max-width: 900px) {
  .hero-h1 {
    font-size: clamp(38px, 5.5vw, 62px);
  }
  .cta-h {
    font-size: clamp(32px, 5vw, 56px);
  }
  .testi-h {
    font-size: clamp(24px, 4vw, 40px);
  }
  .faq-h {
    font-size: clamp(28px, 4vw, 44px);
  }
}