@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&family=Caveat:wght@600;700&display=swap');

:root {
  color-scheme: dark;

  --background: oklch(0.17 0.022 258);
  --foreground: oklch(0.97 0.008 250);

  --card: oklch(0.215 0.026 258);
  --card-foreground: oklch(0.97 0.008 250);

  --primary: oklch(0.64 0.20 253);
  --primary-foreground: oklch(0.99 0.005 250);

  --secondary: oklch(0.73 0.17 52);
  --secondary-foreground: oklch(0.18 0.02 258);

  --muted: oklch(0.26 0.024 258);
  --muted-foreground: oklch(0.72 0.02 256);

  --accent: oklch(0.30 0.05 253);
  --accent-foreground: oklch(0.90 0.03 253);

  --border: oklch(0.30 0.02 258);

  --radius: 0.9rem;

  --font-sans: 'Inter', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --font-hand: 'Caveat', cursive;

  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

/* One continuous atmosphere for the whole page, instead of per-section textures */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(oklch(0.62 0.05 255 / 0.16) 1px, transparent 1px);
  background-size: 26px 26px;
  z-index: 0;
  pointer-events: none;
}

/* Subtle per-section tint so sections read as distinct rooms, not one flat wash */
.tint-cool {
  background: linear-gradient(180deg, oklch(0.19 0.03 253 / 0.5), transparent 60%);
}

.tint-warm {
  background: linear-gradient(180deg, oklch(0.19 0.03 52 / 0.35), transparent 60%);
}

.tint-deep {
  background: oklch(0.155 0.02 258);
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

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

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

.text-balance {
  text-wrap: balance;
}

.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* Backgrounds */
.bg-dotted {
  background-image: radial-gradient(oklch(0.62 0.05 255 / 0.18) 1px, transparent 1px);
  background-size: 22px 22px;
}

.bg-grid {
  background-image:
    linear-gradient(oklch(0.62 0.05 255 / 0.07) 1px, transparent 1px),
    linear-gradient(90deg, oklch(0.62 0.05 255 / 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
}

.glow-blue {
  background: radial-gradient(circle at center, oklch(0.64 0.20 253 / 0.35), transparent 68%);
}

.glow-orange {
  background: radial-gradient(circle at center, oklch(0.73 0.17 52 / 0.28), transparent 68%);
}

/* Section tag - handwritten marker instead of the generic uppercase pill */
.tag {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  font-family: var(--font-hand);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  transform: rotate(-2deg);
  margin-bottom: 0.6rem;
}

.tag.orange {
  color: var(--secondary);
  transform: rotate(1.5deg);
}

.tag .tag-mark {
  font-size: 1.2rem;
}

/* Nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  background: transparent;
}

.site-header.scrolled {
  background: oklch(0.17 0.022 258 / 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-nav {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: height 0.3s ease;
}

.site-header.scrolled .site-nav {
  height: 56px;
}

@media (min-width: 768px) {
  .site-nav {
    padding: 0 2rem;
  }
}

.logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.logo:hover {
  color: var(--primary);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-links ul {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a.nav-link {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.nav-links a.nav-link:hover {
  color: var(--foreground);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  box-shadow: 0 6px 18px oklch(0.64 0.20 253 / 0.32);
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease, filter 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  filter: brightness(1.1);
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 12px 26px oklch(0.64 0.20 253 / 0.4);
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  width: 1.25rem;
  height: 1px;
  background: var(--foreground);
  transition: transform 0.2s, opacity 0.2s;
}

.mobile-menu {
  display: none;
  background: var(--background);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 1.25rem 1.5rem;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu a {
  display: block;
  font-size: 1rem;
  color: var(--foreground);
}

.mobile-menu .btn {
  margin-top: 0.5rem;
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-glow-1 {
  position: absolute;
  top: -4rem;
  left: 28%;
  height: 460px;
  width: 460px;
  opacity: 0.55;
  pointer-events: none;
  animation: drift 16s ease-in-out infinite alternate;
}

@keyframes drift {
  to {
    transform: translate(40px, 30px) scale(1.06);
  }
}

.hero-inner {
  position: relative;
  padding: 3rem 0;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-inner {
    padding: 4rem 0;
  }
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}

.hero-copy {
  max-width: 42rem;
  order: 2;
}

@media (min-width: 1024px) {
  .hero-copy {
    order: 1;
  }
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 1.5rem 0;
  color: var(--foreground);
}

/* Single underline emphasis - one accent color in the headline, not three competing colors */
.squiggle {
  position: relative;
  display: inline-block;
  color: var(--secondary);
}

.squiggle svg {
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 100%;
  height: 0.9rem;
  overflow: visible;
  pointer-events: none;
}

.squiggle svg path {
  fill: none;
  stroke: var(--secondary);
  stroke-width: 4;
  stroke-linecap: round;
}

.hero-copy > p.lead {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 36rem;
}

@media (min-width: 768px) {
  .hero-copy > p.lead {
    font-size: 1.125rem;
  }
}

.support-line {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-portrait-wrap {
  order: 1;
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-portrait-wrap {
    order: 2;
    justify-content: flex-end;
  }
}

.portrait-frame-outer {
  position: relative;
  animation: bob 6s ease-in-out infinite;
  width: 16rem;
  height: 18rem;
}

@media (min-width: 640px) {
  .portrait-frame-outer {
    width: 18rem;
    height: 20rem;
  }
}

@media (min-width: 768px) {
  .portrait-frame-outer {
    width: 20rem;
    height: 25rem;
  }
}

@media (min-width: 1024px) {
  .portrait-frame-outer {
    width: 22.5rem;
    height: 27.5rem;
  }
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Organic morphing blob behind the portrait - deliberately not a clean rectangle */
.portrait-blob {
  position: absolute;
  inset: -0.75rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
  opacity: 0.85;
  animation: portrait-morph 10s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes portrait-morph {
  to {
    border-radius: 58% 42% 40% 60% / 55% 62% 38% 45%;
  }
}

.portrait-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 0;
}

.portrait-inner {
  position: relative;
  border-radius: 40% 60% 62% 38% / 44% 42% 58% 56%;
  border: 5px solid var(--background);
  background: var(--card);
  overflow: hidden;
  width: 100%;
  height: 100%;
  animation: portrait-morph 10s ease-in-out infinite alternate;
}

.portrait-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.proof-chip {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 0.9rem;
  border: 1px solid var(--border);
  background: oklch(0.215 0.026 258 / 0.97);
  backdrop-filter: blur(8px);
  padding: 0.65rem 0.9rem;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.35);
}

.chip-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.65rem;
}

.chip-ico svg {
  width: 1.4rem;
  height: 1.4rem;
}

.chip-ico-subs {
  background: oklch(0.17 0.022 258);
}

.chip-ico-views {
  background: var(--primary);
  color: var(--primary-foreground);
}

.proof-chip.top-left {
  left: -0.5rem;
  top: 3%;
  transform: rotate(4deg);
  animation: bob 5s ease-in-out infinite;
  animation-delay: -1.5s;
}

@media (min-width: 640px) {
  .proof-chip.top-left {
    left: -1.5rem;
  }
}

.proof-chip.bottom-right {
  right: -0.5rem;
  bottom: 10%;
  transform: rotate(-4deg);
  animation: bob 5.5s ease-in-out infinite;
  animation-delay: -3s;
}

@media (min-width: 640px) {
  .proof-chip.bottom-right {
    right: -1.25rem;
  }
}

.proof-chip .stat-text {
  display: flex;
  flex-direction: column;
}

.proof-chip .value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--foreground);
  margin: 0;
}

.proof-chip .label {
  font-size: 0.7rem;
  line-height: 1.2;
  color: var(--muted-foreground);
  margin: 0;
}

/* Email form */
.email-form {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1rem;
  max-width: 32rem;
}

@media (min-width: 640px) {
  .email-form {
    flex-direction: row;
  }
}

.email-form input {
  flex: 1;
  height: 3rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 0 1.25rem;
  color: var(--foreground);
  font-size: 0.875rem;
  font-family: var(--font-sans);
}

.email-form input::placeholder {
  color: var(--muted-foreground);
}

.email-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px oklch(0.64 0.20 253 / 0.25);
}

.email-form button {
  height: 3rem;
  flex-shrink: 0;
}

.form-success {
  border-radius: 1rem;
  border: 1px solid oklch(0.64 0.20 253 / 0.4);
  background: oklch(0.64 0.20 253 / 0.1);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

/* Sections */
section {
  border-top: 1px solid var(--border);
  position: relative;
}

.hero {
  border-top: none;
}

.section-inner {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section-inner {
    padding: 6rem 0;
  }
}

.section-lead {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.4;
  max-width: 48rem;
  margin: 1.5rem 0 1.25rem;
}

@media (min-width: 768px) {
  .section-lead {
    font-size: 1.5rem;
  }
}

.credibility-body {
  font-size: 1rem;
  color: var(--foreground);
  line-height: 1.65;
  max-width: 42rem;
  margin: 0 0 1.25rem;
}

@media (min-width: 768px) {
  .credibility-body {
    font-size: 1.05rem;
  }
}

.credibility-why {
  font-size: 0.95rem;
  color: var(--muted-foreground);
  line-height: 1.65;
  max-width: 42rem;
  margin: 0 0 2.5rem;
  padding-left: 1rem;
  border-left: 2px solid var(--secondary);
}

@media (min-width: 768px) {
  .credibility-why {
    font-size: 1rem;
  }
}

/* Growth panel - replaces the repetitive stat cards with a labeled chart */
.growth-panel {
  border-radius: 1.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .growth-panel {
    padding: 2.5rem;
  }
}

.growth-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.growth-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
  margin: 0 0 0.5rem;
}

.growth-number {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
  margin: 0;
  font-variant-numeric: tabular-nums;
}

@media (min-width: 768px) {
  .growth-number {
    font-size: 3.25rem;
  }
}

.growth-unit {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--muted-foreground);
  margin-left: 0.5rem;
}

.growth-stat {
  text-align: right;
}

.growth-stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 0;
  font-variant-numeric: tabular-nums;
}

.growth-stat-label {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  margin: 0.15rem 0 0;
}

.growth-detail {
  font-size: 0.95rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  max-width: 40rem;
  margin: 0 0 2rem;
}

.growth-chart-wrap {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}

.growth-y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--muted-foreground);
  font-variant-numeric: tabular-nums;
  padding: 0.2rem 0;
  text-align: right;
  flex-shrink: 0;
}

.growth-chart {
  flex: 1;
  min-width: 0;
}

.growth-chart svg {
  width: 100%;
  height: auto;
  overflow: visible;
  display: block;
}

.growth-gridline {
  stroke: var(--border);
  stroke-width: 1;
}

.growth-line {
  fill: none;
  stroke: var(--primary);
  stroke-width: 3;
  stroke-linecap: round;
}

.growth-point {
  fill: var(--card);
  stroke: var(--primary);
  stroke-width: 2.5;
}

.growth-endpoint {
  fill: var(--primary);
  stroke: var(--card);
  stroke-width: 3;
}

.growth-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.6rem;
  padding-left: calc(2.5rem + 0.75rem);
  font-size: 0.8rem;
  color: var(--muted-foreground);
  font-variant-numeric: tabular-nums;
}

.growth-secondary {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.growth-secondary-value {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--secondary);
}

.growth-milestones {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .growth-milestones {
    grid-template-columns: repeat(3, 1fr);
  }
}

.milestone-card-press a {
  display: block;
  color: inherit;
}

.milestone-card {
  margin: 0;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: var(--background);
  overflow: hidden;
  transition: transform 0.3s var(--ease-spring), border-color 0.2s ease, box-shadow 0.3s ease;
}

.milestone-card:hover {
  transform: translateY(-4px);
  border-color: oklch(0.64 0.20 253 / 0.35);
  box-shadow: 0 14px 30px -16px rgb(0 0 0 / 0.55);
}

.milestone-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.milestone-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.85rem 1rem;
  text-align: center;
}

.milestone-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--foreground);
}

.milestone-subtitle {
  font-size: 0.8rem;
  color: var(--muted-foreground);
}

/* Newsletter CTA */
.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2.5rem 1.5rem;
}

@media (min-width: 768px) {
  .cta-panel {
    padding: 3.5rem;
  }
}

.cta-glow-1 {
  position: absolute;
  left: 55%;
  top: -6rem;
  height: 20rem;
  width: 20rem;
  opacity: 0.4;
  pointer-events: none;
  animation: drift 18s ease-in-out infinite alternate;
  animation-delay: -4s;
}

.cta-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .cta-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 0.5rem 0 1rem;
}

@media (min-width: 768px) {
  .cta-content h2 {
    font-size: 2.5rem;
  }
}

.cta-content > p {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 32rem;
}

@media (min-width: 768px) {
  .cta-content > p {
    font-size: 1.125rem;
  }
}

.cta-benefits {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cta-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--foreground);
}

.cta-check {
  color: var(--secondary);
  font-weight: 700;
  flex-shrink: 0;
}

.cta-content input {
  background: var(--background);
}

.fine-print {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Inbox preview - makes "one idea a week" concrete instead of abstract */
.inbox-preview {
  display: flex;
  justify-content: center;
}

.inbox-window {
  width: 100%;
  max-width: 26rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--background);
  overflow: hidden;
  box-shadow: 0 20px 40px -20px rgb(0 0 0 / 0.5);
  transform: rotate(1.25deg);
}

.inbox-titlebar {
  display: flex;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--border);
  background: var(--card);
}

.inbox-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
}

.inbox-dot.red { background: #ff5f57; }
.inbox-dot.yellow { background: #febc2e; }
.inbox-dot.green { background: #28c840; }

.inbox-email {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--border);
}

.inbox-email.dim {
  opacity: 0.5;
}

.inbox-avatar {
  flex-shrink: 0;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}

.inbox-avatar.dim {
  background: var(--muted);
  color: var(--muted-foreground);
}

.inbox-email-body {
  flex: 1;
  min-width: 0;
}

.inbox-from {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin: 0 0 0.25rem;
}

.inbox-from span {
  opacity: 0.7;
}

.inbox-subject {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0 0 0.2rem;
  line-height: 1.35;
}

.inbox-preview-text {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inbox-time {
  flex-shrink: 0;
  font-size: 0.7rem;
  color: var(--muted-foreground);
}

/* Footer */
.site-footer {
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .site-footer {
    flex-direction: row;
    align-items: center;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer-brand span.name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--foreground);
}

/* Handwritten accent - used sparingly, one touch per page */
.hand-note {
  font-family: var(--font-hand);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--secondary);
  transform: rotate(-3deg);
  display: inline-block;
  position: relative;
}

.hero-portrait-wrap .hand-note {
  position: absolute;
  top: -1.75rem;
  right: -1.5rem;
  z-index: 3;
}

@media (min-width: 640px) {
  .hero-portrait-wrap .hand-note {
    right: -2.25rem;
  }
}

.hand-arrow {
  width: 2rem;
  height: 2rem;
  margin-left: 0.2rem;
  vertical-align: -1.1rem;
}

.hand-arrow line,
.hand-arrow polyline {
  fill: none;
  stroke: var(--secondary);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Video proof grid (placeholders until real thumbnails/links are added) */
.videos-heading {
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

.videos-heading h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 1.25rem 0 0;
}

@media (min-width: 768px) {
  .videos-heading h2 {
    font-size: 2.1rem;
  }
}

.videos-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .videos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.video-card {
  display: block;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
  transition: transform 0.35s var(--ease-spring), border-color 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: oklch(0.64 0.20 253 / 0.4);
  box-shadow: 0 14px 34px -18px oklch(0.17 0.022 258 / 0.6);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-spring), filter 0.3s ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.05);
  filter: brightness(0.7);
}

.play-btn {
  position: relative;
  z-index: 1;
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  background: oklch(0.73 0.17 52 / 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px oklch(0.73 0.17 52 / 0.4);
  opacity: 0;
  transform: scale(0.85);
  transition: transform 0.3s var(--ease-spring), opacity 0.25s ease;
}

.video-card:hover .play-btn {
  opacity: 1;
  transform: scale(1.15);
}

.play-btn svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: var(--secondary-foreground);
  margin-left: 2px;
}

.video-views {
  position: absolute;
  left: 0.6rem;
  bottom: 0.6rem;
  z-index: 1;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--foreground);
  background: oklch(0.17 0.022 258 / 0.8);
  padding: 0.2rem 0.55rem;
  border-radius: 0.4rem;
}

.video-info {
  padding: 1rem 1.1rem 1.2rem;
}

.video-info .v-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.4;
}

/* Testimonials */
.testimonials-heading {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  max-width: 38rem;
  margin: 0.5rem 0 2.5rem;
}

@media (min-width: 768px) {
  .testimonials-heading {
    font-size: 2.1rem;
  }
}

.testimonials-grid {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 640px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card {
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.5rem;
  transition: transform 0.3s var(--ease-spring), border-color 0.2s ease;
}

.testimonial-card:nth-child(even) {
  transform: rotate(0.4deg);
}

.testimonial-card:nth-child(odd) {
  transform: rotate(-0.4deg);
}

.testimonial-card:hover {
  border-color: oklch(0.64 0.20 253 / 0.4);
  transform: translateY(-3px) rotate(0deg);
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--foreground);
  line-height: 1.6;
  margin: 0 0 1rem;
}

.testimonial-author {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  margin: 0;
}

.testimonial-author span {
  opacity: 0.7;
}

/* About */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3.5rem;
  }
}

.about-photo-wrap {
  position: relative;
  justify-self: center;
  width: 18rem;
  height: 20rem;
}

@media (min-width: 640px) {
  .about-photo-wrap {
    width: 21rem;
    height: 23.5rem;
  }
}

@media (min-width: 1024px) {
  .about-photo-wrap {
    justify-self: start;
    width: 23rem;
    height: 26rem;
  }
}

.about-blob {
  position: absolute;
  inset: -0.75rem;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-radius: 58% 42% 40% 60% / 55% 62% 38% 45%;
  opacity: 0.85;
  animation: portrait-morph 11s ease-in-out infinite alternate;
  animation-delay: -3s;
  z-index: 0;
}

.about-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.about-inner {
  position: relative;
  border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
  border: 5px solid var(--background);
  background: var(--card);
  overflow: hidden;
  width: 100%;
  height: 100%;
  animation: portrait-morph 11s ease-in-out infinite alternate;
  animation-delay: -3s;
}

.about-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 25%;
}

.about-copy .tag {
  margin-top: 0;
}

.about-copy h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 0.5rem 0 1.5rem;
  max-width: 30rem;
}

@media (min-width: 768px) {
  .about-copy h2 {
    font-size: 2.5rem;
  }
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.about-body p {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .about-body p {
    font-size: 1.05rem;
  }
}

.about-body strong {
  color: var(--foreground);
  font-weight: 600;
}

/* Collaborations strip */
.collabs-label {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--foreground);
  max-width: 60rem;
  margin: 0 0 1.75rem;
}

.collabs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .collabs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.collab-card {
  margin: 0;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
  transition: transform 0.3s var(--ease-spring), border-color 0.2s ease, box-shadow 0.3s ease;
}

.collab-card:hover {
  transform: translateY(-4px);
  border-color: oklch(0.64 0.20 253 / 0.35);
  box-shadow: 0 14px 30px -16px rgb(0 0 0 / 0.55);
}

.collab-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.collab-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem 0.9rem 1rem;
  text-align: center;
}

.collab-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--foreground);
}

.collab-role {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.4;
}

.collab-card-press a {
  display: block;
  color: inherit;
}

/* Off-camera section */
.offcamera-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .offcamera-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.offcamera-photo-wrap {
  position: relative;
  justify-self: center;
  width: 19rem;
  height: 20rem;
}

@media (min-width: 640px) {
  .offcamera-photo-wrap {
    width: 22rem;
    height: 22.5rem;
  }
}

@media (min-width: 1024px) {
  .offcamera-photo-wrap {
    justify-self: end;
    width: 24rem;
    height: 24.5rem;
  }
}

.offcamera-blob {
  position: absolute;
  inset: -0.75rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 45% 55% 38% 62% / 60% 45% 55% 40%;
  opacity: 0.85;
  animation: portrait-morph 9.5s ease-in-out infinite alternate;
  animation-delay: -6s;
  z-index: 0;
}

.offcamera-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.offcamera-inner {
  position: relative;
  border-radius: 38% 62% 42% 58% / 58% 40% 60% 42%;
  border: 5px solid var(--background);
  background: var(--card);
  overflow: hidden;
  width: 100%;
  height: 100%;
  animation: portrait-morph 9.5s ease-in-out infinite alternate;
  animation-delay: -6s;
}

.offcamera-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 40%;
}

.offcamera-copy h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 1.25rem 0 1.25rem;
}

@media (min-width: 768px) {
  .offcamera-copy h2 {
    font-size: 2.5rem;
  }
}

.offcamera-copy p {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .offcamera-copy p {
    font-size: 1.05rem;
  }
}

.offcamera-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.offcamera-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 9999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  color: var(--muted-foreground);
}

/* Tools section */
.tools-heading {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0.5rem 0 0.75rem;
}

@media (min-width: 768px) {
  .tools-heading {
    font-size: 2.1rem;
  }
}

.tools-sub {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  max-width: 34rem;
  margin: 0 0 2rem;
}

.tools-group-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
  margin: 0 0 1rem;
}

.tools-group-label-second {
  margin-top: 2.25rem;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .tools-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.tool-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  text-align: center;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 1.25rem;
  padding: 1.75rem 0.9rem;
  transition: transform 0.3s var(--ease-spring), border-color 0.2s ease, box-shadow 0.3s ease;
}

.tool-tile:hover {
  transform: translateY(-4px);
  border-color: oklch(0.64 0.20 253 / 0.35);
  box-shadow: 0 14px 30px -16px rgb(0 0 0 / 0.55);
}

.tool-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  transition: transform 0.3s var(--ease-spring);
}

.tool-tile:hover .tool-ico {
  transform: scale(1.08) rotate(-4deg);
}

.tool-ico svg {
  width: 1.8rem;
  height: 1.8rem;
}

.tool-ico-chatgpt { background: #10a37f2e; color: #1dc99b; }
.tool-ico-claude { background: #d97a562e; color: #e69267; }
.tool-ico-gemini { background: linear-gradient(135deg, #4285f42e, #ea43352e, #fbbc052e); color: #7fa8f7; }
.tool-ico-notebooklm { background: #f9ab002e; color: #ffc233; }
.tool-ico-perplexity { background: #20808d2e; color: #3fd4e8; }
.tool-ico-ugc { background: oklch(0.73 0.17 52 / 0.22); color: var(--secondary); }

.tool-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--foreground);
}

.methods-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.method-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted-foreground);
  border: 1px dashed var(--border);
  border-radius: 9999px;
  padding: 0.5rem 1.1rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.method-tag:hover {
  color: var(--foreground);
  border-color: var(--secondary);
  border-style: solid;
}

/* Contact section */
.contact-panel {
  border-radius: 2rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 3rem 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .contact-panel {
    padding: 3.5rem 3rem;
  }
}

.contact-panel h2 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  margin: 0 0 0.9rem;
}

@media (min-width: 768px) {
  .contact-panel h2 {
    font-size: 2.25rem;
  }
}

.contact-panel p {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  max-width: 34rem;
  margin: 0 auto 1.75rem;
}

@media (min-width: 768px) {
  .contact-panel p {
    font-size: 1.05rem;
  }
}

.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--foreground);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  transition: transform 0.3s var(--ease-spring), border-color 0.2s ease, color 0.2s ease;
}

.contact-email-link:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  transform: translateY(-2px) rotate(-1deg);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
