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

:root {
  --turquoise: #47CBCB;
  --turquoise-600: #2FB5B5;
  --turquoise-700: #1F9D9D;
  --turquoise-50: #EDFAFA;
  --turquoise-100: #D6F3F3;
  --green: #059669;
  --green-50: #ECFDF5;
  --orange: #ED8936;
  --orange-50: #FEF3E9;
  --blue-50: #EAF1FE;
  --blue-600: #3B82F6;
  --purple-50: #F0EAFE;
  --purple-600: #8B5CF6;
  --ink: #0F1115;
  --ink-2: #1A1A1A;
  --muted: #6B6B6B;
  --muted-2: #9A9A9A;
  --bg: #FFFFFF;
  --bg-2: #F7F7F5;
  --bg-3: #FAFAF8;
  --border: #E5E5E5;
  --border-2: #EFEFEC;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(15,17,21,0.04);
  --shadow-md: 0 8px 24px -8px rgba(15,17,21,0.08), 0 2px 6px rgba(15,17,21,0.04);
  --shadow-lg: 0 24px 48px -16px rgba(15,17,21,0.12), 0 6px 16px rgba(15,17,21,0.06);
  --font-he: 'Heebo', system-ui, sans-serif;
  --font-en: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-he);
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}

[dir="ltr"] body {
  font-family: var(--font-en);
  direction: ltr;
}

[dir="ltr"] button {
  text-align: left;
}

body {
  font-size: 17px;
  font-weight: 400;
}

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

a { color: inherit; text-decoration: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.num, .en {
  font-family: var(--font-en);
  font-feature-settings: "ss01", "cv11";
  letter-spacing: -0.01em;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 120px 0;
}

.section-sm { padding: 80px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--turquoise-700);
  text-transform: none;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--turquoise);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  font-family: inherit;
  transition: all 0.2s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--turquoise);
  color: #0A2A2A;
  font-weight: 500;
}
.btn-primary:hover {
  background: var(--turquoise-600);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(71, 203, 203, 0.5);
}

.btn-brand {
  background: var(--turquoise);
  color: #0A2A2A;
  font-weight: 500;
}
.btn-brand:hover {
  background: var(--turquoise-600);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(71, 203, 203, 0.5);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--ink-2);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--ink-2);
  background: var(--bg-2);
}

.btn-lg {
  padding: 18px 32px;
  font-size: 17px;
  border-radius: 12px;
}

.arrow {
  display: inline-block;
  transition: transform 0.2s;
}
.btn:hover .arrow { transform: translateX(-4px); }

/* Utility */
.brand { color: var(--turquoise); }
.brand-dot {
  display: inline-block;
  width: 0.28em;
  height: 0.28em;
  background: var(--turquoise);
  border-radius: 50%;
  vertical-align: baseline;
  margin-right: 2px;
  margin-left: 2px;
}

/* Fade in */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  animation: fadeUp 0.8s cubic-bezier(.2,.7,.2,1) both;
}
.fade-up-d1 { animation-delay: 0.1s; }
.fade-up-d2 { animation-delay: 0.2s; }
.fade-up-d3 { animation-delay: 0.3s; }
.fade-up-d4 { animation-delay: 0.4s; }

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-delay="3"] { transition-delay: 0.24s; }
[data-reveal][data-delay="4"] { transition-delay: 0.32s; }
[data-reveal][data-delay="5"] { transition-delay: 0.40s; }
[data-reveal][data-delay="6"] { transition-delay: 0.48s; }

/* Hero card float */
@keyframes gcFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
/* Badge pulse */
@keyframes gcPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
  50%       { box-shadow: 0 8px 28px rgba(71,203,203,0.18); }
}

/* Animated redline — GC compare section */
.strike-wrap {
  position: relative;
  display: inline;
}

/* Deleted text — red italic, fades to gray after line draws */
.strike-text {
  color: #B91C1C;
  font-style: italic;
  transition: none;
}
[data-reveal].revealed .strike-text {
  color: #9CA3AF;
  transition: color 0.45s 0.72s ease;
}

/* Strike line — draws right→left on scroll reveal */
.strike-line {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 48%;
  height: 2.5px;
  background: linear-gradient(to left, #B91C1C 0%, #DC2626 100%);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: none;
}
[data-reveal].revealed .strike-line {
  transform: scaleX(1);
  transition: transform 0.52s 0.28s cubic-bezier(0.15, 0, 0.3, 1);
}

/* Typewriter cursor */
.type-cursor {
  display: inline-block;
  width: 2px;
  height: 0.9em;
  background: var(--turquoise-700);
  vertical-align: text-bottom;
  margin-right: 2px;
  animation: cursorBlink 0.7s step-end infinite;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* Noise / grid decor */
.dot-grid {
  background-image: radial-gradient(circle, #D8D8D4 1px, transparent 1.2px);
  background-size: 22px 22px;
}

/* Responsive */
@media (max-width: 900px) {
  .section { padding: 80px 0; }
  .container { padding: 0 20px; }
}
