/* ===========================
   Foundations Marketing Prototypes
   Shared Stylesheet
   =========================== */

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #628184;
  --primary-dark: #4f6a6d;
  --secondary: #5CBE7D;
  --secondary-dark: #4aa868;
  --bg-warm: #F5F3EF;
  --accent: #E8E4DC;
  --foreground: #1F2933;
  --border: #DDD8D0;
  --muted: #ECEAE4;
  --white: #ffffff;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 4px;
  --max-width: 1440px;
  --header-height: 72px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--foreground);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.15;
  font-weight: 700;
}

h1 { font-size: 3.5rem; letter-spacing: -0.025em; }
h2 { font-size: 2.5rem; letter-spacing: -0.02em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { line-height: 1.7; }

.text-muted { color: #6b7280; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--muted {
  background: var(--bg-warm);
}

.section--accent {
  background: var(--accent);
}

.section--primary {
  background: var(--primary);
  color: var(--white);
}

.section--dark {
  background: var(--foreground);
  color: var(--white);
}

/* Grid */
.grid {
  display: grid;
  gap: 32px;
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.grid--2-1 {
  grid-template-columns: 2fr 1fr;
}

/* Flex */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-48 { gap: 48px; }

/* ===========================
   Header
   =========================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
}

.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  color: var(--primary);
}

.header__logo img {
  height: 40px;
  width: auto;
}

.footer__logo img {
  height: 40px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.2s;
}

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

.header__nav a.btn--primary {
  color: var(--white);
}

.header__nav a.btn--primary:hover {
  color: var(--white);
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  font-family: inherit;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--primary-dark);
}

.btn--secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--border);
}

.btn--secondary:hover {
  border-color: var(--primary);
}

.btn--green {
  background: var(--secondary);
  color: var(--white);
}

.btn--green:hover {
  background: var(--secondary-dark);
}

.btn--outline-white {
  background: var(--accent);
  color: var(--foreground);
  border: 2px solid var(--accent);
}

.btn--outline-white:hover {
  background: var(--border);
  border-color: var(--border);
}

.btn--large {
  padding: 16px 36px;
  font-size: 1.0625rem;
}

.btn--small {
  padding: 8px 20px;
  font-size: 0.875rem;
}

/* ===========================
   Cards
   =========================== */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.card--elevated {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.card--elevated:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* ===========================
   Image Placeholder
   =========================== */
.img-placeholder {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #c8d5c3 0%, #a8bfae 30%, #8fa99a 60%, #7a9688 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8125rem;
  font-weight: 500;
  font-style: italic;
}

.feature-screenshot {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.img-placeholder--cottage {
  background: linear-gradient(160deg, #d4cec4 0%, #b8c4b0 40%, #8fa99a 100%);
}

.img-placeholder--warm {
  background: linear-gradient(160deg, #e0d8cc 0%, #c8bfb0 40%, #a89f90 100%);
}

.img-placeholder--coastal {
  background: linear-gradient(160deg, #b8c8cc 0%, #90a8b0 40%, #728e98 100%);
}

.img-placeholder--square {
  aspect-ratio: 1;
}

.img-placeholder--portrait {
  aspect-ratio: 3 / 4;
}

.img-placeholder--avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  aspect-ratio: 1;
}

/* ===========================
   Section Header
   =========================== */
.section-header {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: #6b7280;
  font-size: 1.125rem;
}

.section--primary .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

/* ===========================
   Breadcrumb
   =========================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  margin-bottom: 24px;
}

.hero--centered .breadcrumb {
  justify-content: center;
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb__separator {
  color: var(--border);
  font-size: 0.75rem;
}

.breadcrumb__current {
  color: var(--foreground);
}

/* ===========================
   Hero
   =========================== */
.hero {
  padding: 80px 0 96px;
  background: var(--bg-warm);
}

.hero--centered {
  text-align: center;
}

.hero--centered .hero__content {
  max-width: 860px;
  margin: 0 auto;
}

.hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__content h1 {
  margin-bottom: 20px;
}

.hero__content p {
  font-size: 1.1875rem;
  color: #4a5568;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero--centered .hero__actions {
  justify-content: center;
}

/* ===========================
   Icon (CSS-based)
   =========================== */
.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(98, 129, 132, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-circle svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-circle--green {
  background: rgba(92, 190, 125, 0.1);
}

.icon-circle--green svg {
  stroke: var(--secondary);
}

/* ===========================
   Badge / Chip
   =========================== */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  background: var(--muted);
  color: var(--foreground);
}

.badge--primary {
  background: rgba(98, 129, 132, 0.12);
  color: var(--primary);
}

.badge--green {
  background: rgba(92, 190, 125, 0.12);
  color: #2d8a4e;
}

/* ===========================
   CTA Banner
   =========================== */
.cta-banner {
  padding: 80px 0;
  background: var(--primary);
  color: var(--white);
  text-align: center;
}

.cta-banner h2 {
  margin-bottom: 24px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  margin-bottom: 32px;
}

/* ===========================
   Footer
   =========================== */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  margin-top: 12px;
  line-height: 1.6;
}

.footer__brand .tagline {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-top: 8px;
}

.footer h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  transition: color 0.2s;
}

.footer ul a:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
}

/* ===========================
   Pricing Card
   =========================== */
.pricing-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(98, 129, 132, 0.12);
}

.pricing-card__price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  margin: 16px 0 4px;
}

.pricing-card__period {
  color: #6b7280;
  font-size: 1.0625rem;
  margin-bottom: 32px;
}

.pricing-card__features {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-card__features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
}

.pricing-card__features li:last-child {
  border-bottom: none;
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(92, 190, 125, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ===========================
   Accordion
   =========================== */
.accordion {
  max-width: 860px;
  margin: 0 auto;
}

.accordion__item {
  border-bottom: 1px solid var(--border);
}

.accordion__trigger {
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--foreground);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

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

.accordion__trigger::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary);
  transition: transform 0.2s;
}

.accordion__item.active .accordion__trigger::after {
  content: '\2212';
}

.accordion__content {
  display: none;
  padding-bottom: 20px;
  color: #6b7280;
  line-height: 1.7;
}

.accordion__item.active .accordion__content {
  display: block;
}

/* ===========================
   Feature Detail Block
   =========================== */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 48px 0;
}

.feature-block--reverse {
  direction: rtl;
}

.feature-block--reverse > * {
  direction: ltr;
}

.feature-block__content h3 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.feature-block__content .tagline {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 16px;
}

.feature-block__content ul {
  list-style: none;
  margin-top: 16px;
}

.feature-block__content li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  color: #4a5568;
}

.feature-block__content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
}

.feature-block__content .link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9375rem;
}

.feature-block__content .link:hover {
  text-decoration: underline;
}

/* ===========================
   Steps
   =========================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}

.step {
  text-align: center;
  counter-increment: step;
}

.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step h3 {
  margin-bottom: 10px;
  font-size: 1.1875rem;
}

.step p {
  color: #6b7280;
  font-size: 0.9375rem;
}

/* ===========================
   Testimonial
   =========================== */
.testimonial {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.testimonial__quote {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
}

.testimonial__quote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.3;
  position: absolute;
  top: -24px;
  left: -8px;
  line-height: 1;
}

.testimonial__author {
  font-weight: 600;
}

.testimonial__role {
  color: #6b7280;
  font-size: 0.9375rem;
}

.testimonial__metric {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(92, 190, 125, 0.12);
  color: #2d8a4e;
  padding: 8px 20px;
  border-radius: 9999px;
  font-weight: 700;
  margin-top: 20px;
}

/* ===========================
   Form
   =========================== */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--foreground);
}

.form-group .required {
  color: #e53e3e;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--foreground);
  background: var(--white);
  transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(98, 129, 132, 0.12);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* ===========================
   Blog Card
   =========================== */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.blog-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.blog-card__image {
  aspect-ratio: 16 / 9;
  background: linear-gradient(160deg, #c8d5c3 0%, #a8bfae 30%, #8fa99a 60%, #7a9688 100%);
}

.blog-card__body {
  padding: 24px;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.8125rem;
  color: #6b7280;
}

.blog-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__excerpt {
  color: #6b7280;
  font-size: 0.9375rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===========================
   Case Study Card
   =========================== */
.cs-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.cs-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.cs-card__company {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.cs-card__meta {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.cs-card__stat {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.cs-card__summary {
  color: #4a5568;
  font-size: 0.9375rem;
  margin-bottom: 20px;
}

.cs-card__link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9375rem;
}

.cs-card__link:hover {
  text-decoration: underline;
}

/* ===========================
   Metric Card
   =========================== */
.metric-card {
  background: var(--bg-warm);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}

.metric-card__value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.metric-card__label {
  color: #6b7280;
  font-size: 0.9375rem;
}

/* ===========================
   Stat Highlight
   =========================== */
.stat-highlight {
  background: var(--bg-warm);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  margin: 48px 0;
}

.stat-highlight__value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-highlight__label {
  color: #6b7280;
  font-size: 1.0625rem;
}

/* ===========================
   Prose (blog post body)
   =========================== */
.prose {
  max-width: 860px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--foreground);
}

.prose h2 {
  font-size: 1.75rem;
  margin: 48px 0 16px;
}

.prose h3 {
  font-size: 1.375rem;
  margin: 36px 0 12px;
}

.prose p {
  margin-bottom: 20px;
}

.prose ul, .prose ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }

.prose li {
  margin-bottom: 8px;
}

.prose blockquote {
  border-left: 4px solid var(--primary);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--bg-warm);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: #4a5568;
  font-style: italic;
}

.prose strong {
  font-weight: 700;
}

/* ===========================
   Pain Point Cards
   =========================== */
.pain-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.pain-card h4 {
  color: var(--foreground);
  margin-bottom: 8px;
}

.pain-card p {
  color: #6b7280;
  font-size: 0.9375rem;
}

/* ===========================
   Values Grid
   =========================== */
.value-card {
  text-align: center;
  padding: 32px 24px;
}

.value-card h3 {
  margin: 16px 0 8px;
}

.value-card p {
  color: #6b7280;
  font-size: 0.9375rem;
}

/* ===========================
   Category Chips
   =========================== */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
}

.chip {
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--white);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
}

.chip:hover, .chip--active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ===========================
   Supporting capabilities grid
   =========================== */
.capability {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--bg-warm);
  border-radius: var(--radius);
}

.capability h4 {
  margin-bottom: 4px;
}

.capability p {
  color: #6b7280;
  font-size: 0.9375rem;
}

/* ===========================
   Founders / Origin Story
   =========================== */
.founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.founders__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  font-style: italic;
}

.founders__content blockquote {
  border-left: 3px solid var(--primary);
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: #4a5568;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.founders__attribution {
  font-weight: 600;
  font-size: 0.9375rem;
  margin-top: 8px;
  font-style: normal;
}

/* ===========================
   Full-width hero image
   =========================== */
.hero--photo {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: url('images/Holiday-cottage-exterior.jpg') center 35%/cover no-repeat;
  overflow: hidden;
}

.hero--photo::after {
  display: none;
}

.hero--photo .container {
  max-width: none;
  margin: 0;
  padding: 0 24px 0 max(24px, calc((100vw - var(--max-width)) / 2 + 24px));
}

.hero--photo .hero__content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 40px 44px;
}

.hero--photo .hero__content h1,
.hero--photo .hero__content p {
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.hero--photo .hero__content p {
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

/* ===========================
   Softer link style
   =========================== */
.link-quiet {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.link-quiet:hover {
  border-bottom-color: var(--primary);
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1024px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  .section { padding: 64px 0; }
  .hero { padding: 48px 0 64px; }
  .hero__split { grid-template-columns: 1fr; gap: 40px; }
  .grid--2, .grid--3, .grid--4, .grid--2-1 { grid-template-columns: 1fr; }
  .feature-block { grid-template-columns: 1fr; gap: 32px; }
  .feature-block--reverse { direction: ltr; }
  .steps { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .header__nav { display: none; }
  .pricing-card { padding: 32px 24px; }
  .founders { grid-template-columns: 1fr; gap: 32px; }
  .hero--photo { min-height: 360px; }
}
