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

body {
  background: #ffffff;
  font-family: 'Inter', sans-serif;
  color: #1e1e20;
}

/* Hero Image */
.hero-image {
  width: 100%;
}

.hero-image img {
  width: 100%;
  display: block;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 96px;
}

.site-logo {
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 500;
  color: #1e1e20;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-pill {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  color: #9da3af;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-pill-active {
  color: #1e1e20;
}

.nav-pill:hover {
  color: #1e1e20;
}

/* Footer */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 39px 100px;
}

.footer-text {
  font-family: 'Caveat', cursive;
  font-weight: 400;
  font-size: 32px;
  color: #1e1e20;
  transition: opacity 0.4s ease;
}

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

.footer-link {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #1e1e20;
  text-decoration: underline;
  transition: opacity 0.2s;
}

.footer-link:hover {
  opacity: 0.8;
}

/* Nav Tooltip */
.nav-tooltip {
  position: fixed;
  top: 50%;
  left: 60px;
  background: #1e1e20;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 101;
  animation: tooltipFadeIn 0.5s ease 1s both;
}

.nav-tooltip::after {
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #1e1e20;
}

.nav-tooltip-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  white-space: nowrap;
}

.nav-tooltip-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  padding: 0;
  line-height: 1;
}

.nav-tooltip-close:hover {
  opacity: 1;
}

.nav-tooltip.hidden {
  display: none;
}

@keyframes tooltipFadeIn {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Side Navigation */
.side-nav {
  position: fixed;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nav-lines {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  padding: 8px;
}

.nav-line {
  display: block;
  width: 20px;
  height: 3px;
  background: #d9d9d9;
  border-radius: 2px;
  transition: background 0.2s;
}

.nav-line-active {
  background: #1e1e20;
}

/* Hover popup */
.nav-popup {
  display: none;
  flex-direction: column;
  gap: 2px;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 12px;
  min-width: 200px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: absolute;
  top: 0;
  left: 0;
}

.side-nav:hover .nav-popup {
  display: flex;
}

.nav-popup-item {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #979797;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}

.nav-popup-item:hover {
  background: #f5f5f5;
}

.nav-popup-item.active {
  color: #1e1e20;
  font-weight: 600;
}

.nav-item:hover {
  background: #f0f0f0;
}

.nav-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #979797;
  padding-left: 16px;
}

.nav-subtitle-active {
  color: #1e1e20;
  font-weight: 600;
  background: #f0f0f0;
}

.nav-title-link {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #979797;
  padding-left: 32px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.nav-title-link.active {
  color: #2196F3;
}

/* Hero */
.hero {
  padding: 60px 8% 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-animate {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s ease 0.5s forwards;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-date {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #979797;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.2;
  color: #1e1e20;
}

.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-category {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #979797;
}

.hero-tags {
  display: flex;
  gap: 8px;
}

.hero-tag {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #1e1e20;
  border: 1px solid #d9d9d9;
  border-radius: 20px;
  padding: 6px 14px;
}

.section {
  padding: 120px 8% 100px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.content-wrapper {
  display: flex;
  gap: 4%;
  align-items: flex-start;
}

.content-wrapper + .content-wrapper {
  margin-top: 36px;
}

.section-aside {
  flex: 0 0 25%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.aside-placeholder {
  width: 100%;
  height: 180px;
  background: #f7f7f5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #d9d9d9;
}

.aside-placeholder .placeholder-label {
  font-size: 12px;
}

.aside-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.aside-img {
  width: 75%;
  display: block;
}

.aside-caption {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: #979797;
}

.subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 36px;
  letter-spacing: -0.72px;
  line-height: normal;
  flex: 0 0 13%;
}

.section-body {
  display: flex;
  flex-direction: column;
  gap: 36px;
  flex: 0 0 50%;
  min-width: 0;
}

.intro {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 635px;
}

.title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: normal;
}

.title-with-icon {
  display: flex;
  align-items: center;
  gap: 12px;
}

.title-icon {
  height: 36px;
  width: auto;
}

.body-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.6;
  color: #979797;
}

.body-text strong {
  color: #979797;
  font-weight: 600;
}

mark {
  background: linear-gradient(to top, #FFF176 40%, transparent 40%);
  color: inherit;
  padding: 0 2px;
}

.body-text p + p {
  margin-top: 1em;
}

.pill-cards-3 .pill-card {
  flex: 1 1 calc(33.33% - 11px);
  min-width: 150px;
}

.pill-cards-vertical {
  flex-direction: column;
}

.pill-cards-vertical .pill-card {
  flex: none;
  min-width: 0;
}

.divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  width: 100%;
  margin: 2em 0;
}

.insight-card {
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

/* Awareness vs Action Diagram */
.awareness-diagram {
  display: flex;
  align-items: center;
  gap: 0;
  background: #f7f7f5;
  border-radius: 20px;
  padding: 40px 32px;
}

.diagram-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.diagram-icon {
  font-size: 32px;
}

.diagram-label {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #1e1e20;
}

.diagram-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #979797;
  max-width: 200px;
  line-height: 1.5;
}

.diagram-bar {
  width: 80px;
  border-radius: 8px;
  margin-top: 8px;
}

.diagram-bar-high {
  height: 120px;
  background: #1e1e20;
}

.diagram-bar-low {
  height: 40px;
  background: #d9d9d9;
}

.diagram-stat {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #979797;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.diagram-gap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
}

.diagram-gap-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #e74c3c;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.diagram-gap-arrow {
  font-size: 24px;
  color: #e74c3c;
}

.subsection {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.subsection + .subsection {
  margin-top: 80px;
}

.subsection-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.subsection-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.direction-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.direction-card {
  background: #efeeec;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.direction-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #979797;
}

.direction-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1e1e20;
  line-height: 1.4;
}

.direction-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.45);
  line-height: normal;
}

/* Question Diagram */
.question-diagram {
  background: #f7f7f5;
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.question-diagram-text {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #1e1e20;
  text-align: center;
  line-height: 1.5;
}

.question-arrows {
  display: flex;
  gap: 24px;
}

.question-branch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.branch-line {
  width: 2px;
  height: 32px;
  background: #d9d9d9;
}

.branch-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #979797;
  font-style: italic;
}

.section-center {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.highlight-purple {
  background: linear-gradient(to top, rgba(253, 224, 71, 0.5) 40%, transparent 40%);
  color: inherit;
  padding: 0 2px;
}

.img-row {
  display: flex;
  gap: 16px;
}

.img-row .section-img {
  flex: 1;
  min-width: 0;
}

.img-row-3 {
  gap: 12px;
}

.img-row-3 .section-img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
}

.img-caption-figure {
  position: relative;
}

.img-caption-figure .cross-overlay {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  pointer-events: none;
}

.cross-overlay line {
  stroke: #e74c3c;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
}

.img-caption-figure.crossed .cross-overlay line {
  animation: drawCross 0.5s ease forwards;
}

.img-caption-figure.crossed .cross-overlay line:nth-child(2) {
  animation-delay: 0.3s;
}

@keyframes drawCross {
  to { stroke-dashoffset: 0; }
}

.img-caption-figure {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.img-caption-figure .section-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.img-figcaption {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #979797;
  text-align: center;
}

.confusion-illustration {
  flex: 1;
  min-width: 0;
  background: #f7f7f5;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px;
}

.confusion-svg {
  width: 120px;
  height: 120px;
}

.confusion-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-style: italic;
  color: #979797;
  text-align: center;
  line-height: 1.5;
}

.section-img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.img-placeholder {
  width: 100%;
  height: 300px;
  background: #f7f7f5;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #d9d9d9;
}

.placeholder-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #b0b0b0;
}

.two-col {
  display: flex;
  gap: 24px;
}

.two-col-left,
.two-col-right {
  flex: 1;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  padding: 24px;
}

.two-col-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #979797;
  margin-bottom: 12px;
}

.highlight-card {
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  padding: 24px;
}

.highlight-card-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: #1e1e20;
}

.card-emoji {
  display: block;
  font-size: 28px;
  margin-bottom: 8px;
  line-height: 1;
}

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

.pill-card {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  padding: 20px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #979797;
  flex: 1 1 calc(50% - 8px);
  min-width: 200px;
}

.pill-card strong {
  color: #1e1e20;
}

.contrast-cards {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.contrast-card {
  flex: 1;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contrast-before {
  border-color: rgba(0, 0, 0, 0.12);
}

.contrast-before .contrast-label {
  color: #979797;
}

.contrast-before .contrast-quote {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #979797;
  text-decoration: line-through;
  text-decoration-color: rgba(0, 0, 0, 0.15);
}

.contrast-after .contrast-label {
  color: #1e1e20;
}

.contrast-after .contrast-quote {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  color: #1e1e20;
}

.contrast-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
}

.contrast-arrow {
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 24px;
  color: #979797;
  flex-shrink: 0;
}

.insight-card-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
  color: #1e1e20;
}

.insight-card-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
  color: #979797;
}

.insight-card-list {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
  color: #979797;
  padding-left: 24px;
}

.insight-card-list li {
  margin-top: 4px;
}

.insight-card-list strong {
  color: #1e1e20;
}

/* Option A: light italic, darker gray, no border */
.insight-card .callout {
  display: inline;
  padding-left: 0;
  border-left: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: #5a5a5a;
}

.insight-card .callout strong {
  font-weight: 400;
  color: #5a5a5a;
}

.body-text ul {
  padding-left: 24px;
  margin-top: 0.5em;
}

.body-text ul li {
  margin-top: 4px;
}

.body-text blockquote {
  margin: 1em 0;
  padding-left: 20px;
  border-left: 3px solid #1e1e20;
}

.opportunities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: #efeeec;
  padding: 20px;
  width: 308px;
  height: 390px;
  overflow: hidden;
}

.card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.card-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
  color: #1e1e20;
  margin-bottom: 20px;
}

.card-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
  color: #1e1e20;
  margin-bottom: 20px;
}

.card-description {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
  color: rgba(0, 0, 0, 0.45);
}

.card-full {
  width: 100%;
  height: 347px;
}

.card-label-alt {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.4px;
  line-height: normal;
  color: #1e1e20;
  margin-bottom: 20px;
  width: 376px;
}

.card-title-alt {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: normal;
  color: #1e1e20;
  margin-bottom: 20px;
}

.card-description-alt {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
  color: #1e1e20;
}

.screenshot {
  width: 635px;
  height: 408px;
}

.screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Visual sections (image-heavy design process pages) */
.section-visual .section-body {
  flex: 1 1 0%;
}

.features-container {
  max-width: 960px;
  margin: 0 auto;
  margin-top: 140px;
}

/* Feature rows (Final Product) */
.feature-row {
  display: flex;
  gap: 100px;
  align-items: center;
  margin-top: 140px;
}

.feature-row:first-child {
  margin-top: 0;
}

.feature-row-reverse {
  flex-direction: row-reverse;
}

.feature-phone {
  width: 340px;
  flex-shrink: 0;
}

.feature-video {
  width: 100%;
  border-radius: 40px;
  display: block;
}

.phone-placeholder {
  width: 100%;
  height: 580px;
  background: #f7f7f5;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #d9d9d9;
}

.feature-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #1e1e20;
  width: fit-content;
  background: linear-gradient(to top, rgba(253, 224, 71, 0.5) 40%, transparent 40%);
}

.feature-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.35;
  color: #1e1e20;
}

.feature-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: #979797;
}

.feature-list {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #979797;
  padding-left: 20px;
}

.feature-list li {
  margin-top: 6px;
}

.feature-list strong {
  color: #1e1e20;
  font-weight: 600;
}

.img-placeholder-large {
  width: 100%;
  height: 500px;
  background: #f7f7f5;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #d9d9d9;
}

/* Dark Theme */
body.dark-theme {
  background: #0a0a0a;
  color: #e8e8e8;
}

body.dark-theme .site-logo {
  color: #e8e8e8;
}

body.dark-theme .nav-pill {
  color: #666;
}

body.dark-theme .nav-pill-active {
  color: #e8e8e8;
}

body.dark-theme .nav-pill:hover {
  color: #e8e8e8;
}

body.dark-theme .hero-title {
  color: #e8e8e8;
}

body.dark-theme .hero-date {
  color: #666;
}

body.dark-theme .hero-category {
  color: #666;
}

body.dark-theme .subtitle {
  color: #e8e8e8;
}

body.dark-theme .title {
  color: #e8e8e8;
}

body.dark-theme .body-text {
  color: #888;
}

body.dark-theme .body-text strong {
  color: #aaa;
}

body.dark-theme .nav-line {
  background: #333;
}

body.dark-theme .nav-line-active {
  background: #e8e8e8;
}

body.dark-theme .nav-popup {
  background: #1a1a1a;
  border-color: #2a2a2a;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

body.dark-theme .nav-popup-item {
  color: #666;
}

body.dark-theme .nav-popup-item:hover {
  background: #222;
}

body.dark-theme .nav-popup-item.active {
  color: #e8e8e8;
}

body.dark-theme .aside-img {
  border-radius: 0;
}

body.dark-theme .aside-caption {
  color: #666;
}

body.dark-theme .feature-title {
  color: #e8e8e8;
}

body.dark-theme .feature-desc {
  color: #888;
}

body.dark-theme .feature-label {
  color: #e8e8e8;
}

body.dark-theme .site-footer {
  border-top: 1px solid #1a1a1a;
}

body.dark-theme .footer-text {
  color: #e8e8e8;
}

body.dark-theme .footer-link {
  color: #888;
}

body.dark-theme .img-figcaption {
  color: #666;
}

/* iPad / Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .site-header {
    padding: 24px 48px;
  }

  .site-logo {
    font-size: 32px;
  }

  .nav-pill {
    font-size: 28px;
  }

  .hero {
    padding: 40px 6% 60px;
  }

  .hero-title {
    font-size: 40px;
  }

  .section {
    padding: 80px 6% 60px;
  }

  .content-wrapper {
    flex-direction: column;
    gap: 24px;
  }

  .subtitle {
    flex: none;
    font-size: 28px;
  }

  .section-aside {
    flex: none;
    width: 100%;
  }

  .section-body {
    flex: none;
    width: 100%;
  }

  .intro {
    width: 100%;
  }

  .feature-row {
    gap: 48px;
    margin-top: 80px;
  }

  .feature-phone {
    width: 280px;
  }

  .features-container {
    margin-top: 80px;
  }

  .site-footer {
    padding: 32px 48px;
  }

  .side-nav {
    display: none;
  }

  .nav-tooltip {
    display: none;
  }
}

/* Mobile (< 768px) */
@media (max-width: 768px) {
  .site-header {
    padding: 20px 24px;
  }

  .site-logo {
    font-size: 28px;
  }

  .nav-pill {
    font-size: 20px;
  }

  .hero {
    padding: 32px 5% 48px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-tags {
    flex-wrap: wrap;
  }

  .section {
    padding: 60px 5% 40px;
  }

  .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .subtitle {
    flex: none;
    font-size: 24px;
  }

  .section-aside {
    flex: none;
    width: 100%;
  }

  .section-body {
    flex: none;
    width: 100%;
  }

  .intro {
    width: 100%;
  }

  .title {
    font-size: 24px;
  }

  .body-text {
    font-size: 16px;
  }

  .feature-row,
  .feature-row-reverse {
    flex-direction: column;
    gap: 32px;
    margin-top: 60px;
  }

  .feature-phone {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .feature-title {
    font-size: 22px;
  }

  .features-container {
    margin-top: 60px;
  }

  .direction-cards {
    grid-template-columns: 1fr;
  }

  .two-col {
    flex-direction: column;
  }

  .contrast-cards {
    flex-direction: column;
  }

  .contrast-arrow {
    transform: rotate(90deg);
    padding: 8px 0;
    justify-content: center;
  }

  .img-row {
    flex-direction: column;
  }

  .pill-card {
    flex: 1 1 100%;
  }

  .card {
    width: 100%;
    height: auto;
  }

  .card-full {
    height: auto;
  }

  .card-label-alt {
    width: 100%;
  }

  .screenshot {
    width: 100%;
    height: auto;
  }

  .side-nav {
    display: none;
  }

  .nav-tooltip {
    display: none;
  }

  .site-footer {
    flex-direction: column;
    gap: 20px;
    padding: 32px 24px;
    text-align: center;
  }

  .footer-text {
    font-size: 24px;
  }

  .footer-links {
    gap: 24px;
  }
}
