/* ============================================
   Builder's View — Design System & Styles
   buildersview.com | Builder's View | 2026
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Brand Colors — Builder's View Brand Kit 2026 */
  --navy: #1A2030;
  --nightfall: #1A2030;
  --teal: #1A2030;
  --orange: #C9A96E;
  --ridgeline: #C9A96E;
  --off-white: #F4F3F0;
  --cream: #F4F3F0;
  --white: #FFFFFF;
  --light-blue: #F4F3F0;
  --light-orange: #F4F3F0;
  --dark-gray: #1A2030;
  --medium-gray: #8A8D96;
  --steel: #8A8D96;
  --light-gray: #D4D3D1;

  /* Typography — IBM Plex Super Family (Brand Kit 2026) */
  --font-heading: 'IBM Plex Serif', serif;
  --font-subheading: 'IBM Plex Mono', monospace;
  --font-body: 'IBM Plex Sans', sans-serif;

  /* Spacing */
  --section-padding: 80px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;

  /* Transitions */
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--dark-gray);
  background: var(--white);
}

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

a {
  color: var(--orange);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: #141A28;
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: 2px;
  text-transform: uppercase;
}

h3, h4, h5, h6 {
  font-family: var(--font-subheading);
  font-weight: 500;
  line-height: 1.3;
  color: var(--navy);
  letter-spacing: 0.5px;
}

h1 { font-size: 3.5rem; margin-bottom: 24px; }
h2 { font-size: 2.75rem; margin-bottom: 20px; }
h3 { font-size: 1.5rem; margin-bottom: 16px; }
h4 { font-size: 1.125rem; margin-bottom: 12px; }

p {
  margin-bottom: 16px;
  color: var(--dark-gray);
}

.text-medium-gray {
  color: var(--medium-gray);
}

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

.section {
  padding: var(--section-padding);
}

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

.section--navy h2,
.section--navy h3,
.section--navy h4,
.section--navy p {
  color: var(--white);
}

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

.section--light-blue {
  background: var(--light-blue);
}

.section--light-orange {
  background: var(--light-orange);
}

/* Grid utilities */
.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; }
.grid--1-1 { grid-template-columns: 1fr 1fr; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-subheading);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
  min-height: 48px;
  line-height: 1.2;
}

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

.btn--orange:hover {
  background: #141A28;
  border-color: #141A28;
  color: var(--white);
}

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

.btn--navy:hover {
  background: #141A28;
  border-color: #141A28;
  color: var(--white);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

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

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

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

.btn--small {
  padding: 10px 24px;
  font-size: 0.875rem;
}

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

/* --- Navigation --- */
.nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.nav__logo:hover {
  color: var(--white);
}

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

.nav__links a {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-subheading);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--white);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: all var(--transition);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: 120px 0;
  overflow: hidden;
}

.hero--tall {
  padding: 160px 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
  opacity: 0.3;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero h1 {
  color: var(--white);
  font-size: 3.75rem;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  margin-bottom: 32px;
  line-height: 1.8;
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card__icon {
  width: 48px;
  height: 48px;
  background: rgba(26, 57, 59, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.card__title {
  font-family: var(--font-subheading);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.card__desc {
  color: var(--medium-gray);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.card__price {
  font-family: var(--font-subheading);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--teal);
}

.card__link {
  font-family: var(--font-subheading);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--teal);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.card__link:hover {
  color: #141A28;
}

/* Product card variant */
.card--product {
  display: flex;
  flex-direction: column;
}

.card--product .card__desc {
  flex: 1;
}

/* Category card variant */
.card--category {
  text-align: center;
  padding: 40px 32px;
}

.card--category .card__icon {
  margin: 0 auto 20px;
}

.card--category .card__meta {
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

/* Dark card variant (for navy backgrounds) */
.card--dark {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.card--dark:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.card--dark .card__title {
  color: var(--white);
}

.card--dark .card__desc {
  color: rgba(255, 255, 255, 0.7);
}

/* --- Feature columns (3-col) --- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.feature__icon {
  width: 64px;
  height: 64px;
  background: var(--light-orange);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.75rem;
}

.feature__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.feature__desc {
  color: var(--medium-gray);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* --- Two-column layout --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split__image {
  border-radius: 10px;
  overflow: hidden;
  background: var(--light-blue);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--medium-gray);
  font-family: var(--font-heading);
  font-size: 0.875rem;
}

.split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 10px;
  min-height: 400px;
}

/* --- Callout / Banner --- */
.callout {
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 48px;
  text-align: center;
}

.callout h2, .callout h3 {
  color: var(--white);
}

.callout p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin: 0 auto 24px;
}

/* --- Email signup --- */
.signup {
  text-align: center;
}

.signup h2 {
  color: var(--white);
  margin-bottom: 8px;
}

.signup p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.signup__form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.signup__form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition);
}

.signup__form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.signup__form input[type="email"]:focus {
  border-color: var(--orange);
}

/* --- Forms --- */
.form {
  max-width: 600px;
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light-gray);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark-gray);
  outline: none;
  transition: border-color var(--transition);
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--orange);
}

.form__textarea {
  min-height: 150px;
  resize: vertical;
}

/* --- FAQ / Accordion --- */
.faq__item {
  border-bottom: 1px solid var(--light-gray);
  padding: 20px 0;
}

.faq__question {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
}

.faq__question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--orange);
  transition: transform var(--transition);
}

.faq__question.active::after {
  content: '−';
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--medium-gray);
  line-height: 1.7;
}

.faq__answer.active {
  max-height: 300px;
  padding-top: 12px;
}

/* --- Section headers --- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-header p,
.section-header__sub {
  color: var(--medium-gray);
  font-size: 1.1rem;
  font-family: var(--font-body);
  margin-top: 12px;
  line-height: 1.8;
}

/* --- Pull Quote --- */
.pull-quote {
  background: var(--navy);
  color: var(--white);
  border-radius: 10px;
  padding: 40px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  position: relative;
}

.pull-quote::before {
  content: '\201C';
  font-size: 4rem;
  position: absolute;
  top: 12px;
  left: 24px;
  color: var(--orange);
  line-height: 1;
}

.pull-quote p {
  color: var(--white);
  padding-left: 20px;
}

.pull-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
  padding-left: 20px;
}

/* --- Division cards (About page) --- */
.division-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px;
  border-left: 4px solid var(--orange);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.division-card p {
  color: var(--medium-gray);
  font-size: 0.925rem;
  margin-bottom: 0;
}

/* --- Article cards --- */
.article-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.article-card__image {
  aspect-ratio: 16/9;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--medium-gray);
  font-family: var(--font-heading);
  font-size: 0.8rem;
}

.article-card__body {
  padding: 24px;
}

.article-card__tag {
  display: inline-block;
  background: var(--light-orange);
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.article-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}

.article-card__preview {
  color: var(--medium-gray);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.article-card__date {
  color: var(--medium-gray);
  font-size: 0.8rem;
}

/* --- Video embed --- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card {
  border-radius: 10px;
  overflow: hidden;
  background: var(--navy);
}

.video-card__thumb {
  aspect-ratio: 16/9;
  background: #1A2030;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  position: relative;
}

.video-card__thumb::after {
  content: '▶';
  position: absolute;
  width: 56px;
  height: 56px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--white);
}

.video-card__info {
  padding: 16px;
}

.video-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 4px;
}

.video-card__date {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* --- Footer --- */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0 30px;
}

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

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.footer__tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-style: italic;
}

.footer h4 {
  color: var(--white);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer__links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 8px;
  transition: color var(--transition);
}

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

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: background var(--transition);
}

.footer__social a:hover {
  background: var(--orange);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.5);
}

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

.footer__legal {
  display: flex;
  gap: 20px;
}

/* --- Bundle callout --- */
.bundle-callout {
  background: var(--navy);
  border-radius: 12px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin-top: 48px;
}

.bundle-callout h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.bundle-callout p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.bundle-callout .card__price {
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 16px;
  display: block;
}

.bundle-callout__action {
  text-align: center;
}

.bundle-callout__savings {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-top: 8px;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* --- Visual Polish --- */

/* Hero gradient overlay for depth */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(27, 42, 59, 0.95), transparent);
  pointer-events: none;
}

/* Subtle geometric pattern on navy sections */
.hero .hero__bg,
.section--navy::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image:
    linear-gradient(30deg, #ffffff 12%, transparent 12.5%, transparent 87%, #ffffff 87.5%, #ffffff),
    linear-gradient(150deg, #ffffff 12%, transparent 12.5%, transparent 87%, #ffffff 87.5%, #ffffff),
    linear-gradient(30deg, #ffffff 12%, transparent 12.5%, transparent 87%, #ffffff 87.5%, #ffffff),
    linear-gradient(150deg, #ffffff 12%, transparent 12.5%, transparent 87%, #ffffff 87.5%, #ffffff);
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px;
  pointer-events: none;
}

.section--navy {
  position: relative;
  overflow: hidden;
}

/* SVG icon styling */
.feature__icon svg,
.card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Social icons in footer */
.footer__social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Card entrance animation */
.card {
  opacity: 1;
}

/* Better card shadows */
.card {
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.04);
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08), 0 12px 28px rgba(0,0,0,0.08);
}

/* Image placeholder styling (until real photos) */
.split__image,
.article-card__image,
.video-card__thumb {
  position: relative;
  overflow: hidden;
}

.split__image::before,
.article-card__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #2A3048 50%, var(--navy) 100%);
  opacity: 0.08;
}

/* Gradient text accent for hero */
.hero h1 {
  background: linear-gradient(135deg, #FFFFFF 0%, rgba(255,255,255,0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Better section dividers */
.section + .section {
  border-top: none;
}

/* Nav active indicator */
.nav__links a.active {
  position: relative;
}

.nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
}

/* Smooth button press effect */
.btn:active {
  transform: scale(0.98);
}

/* Input focus glow */
.form__input:focus,
.form__textarea:focus,
.signup__form input[type="email"]:focus {
  box-shadow: 0 0 0 3px rgba(212, 83, 28, 0.15);
}

/* Pull quote left border accent */
.pull-quote {
  border-left: 4px solid var(--orange);
}

/* Division card hover */
.division-card {
  transition: transform var(--transition), box-shadow var(--transition);
}

.division-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* Podcast platform buttons */
.btn--spotify {
  background: #1DB954;
  color: white;
  border-color: #1DB954;
}

.btn--spotify:hover {
  background: #1aa34a;
  border-color: #1aa34a;
  color: white;
}

.btn--apple {
  background: #8B5CF6;
  color: white;
  border-color: #8B5CF6;
}

.btn--apple:hover {
  background: #7c4fe0;
  border-color: #7c4fe0;
  color: white;
}

/* Breadcrumb / category tag */
.category-tag {
  display: inline-block;
  background: rgba(212, 83, 28, 0.1);
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* Price highlight */
.price-large {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

/* --- Responsive --- */

/* Tablet */
@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.875rem; }

  .hero { padding: 100px 0; }
  .hero--tall { padding: 120px 0; }
  .hero h1 { font-size: 2.5rem; }

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

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

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

  .bundle-callout { grid-template-columns: 1fr; text-align: center; }
  .bundle-callout__action { text-align: center; }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }

  .hero { padding: 80px 0; }
  .hero--tall { padding: 100px 0; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1.05rem; }

  /* Mobile nav */
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  .nav__links.active {
    display: flex;
  }

  .nav__toggle {
    display: block;
  }

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

  .features {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .signup__form {
    flex-direction: column;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-group .btn {
    text-align: center;
  }

  .bundle-callout {
    padding: 32px 24px;
  }

  .callout {
    padding: 32px 24px;
  }

  .pull-quote {
    padding: 32px 24px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }

  .container {
    padding: 0 16px;
  }

  .card { padding: 24px; }
}

/* ============================================
   VISUAL POLISH — Custom Website Feel
   ============================================ */

/* --- Scroll Reveal Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Auto-reveal animation classes */
.will-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.will-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger siblings */
.will-reveal:nth-child(2) { transition-delay: 0.08s; }
.will-reveal:nth-child(3) { transition-delay: 0.16s; }
.will-reveal:nth-child(4) { transition-delay: 0.24s; }
.will-reveal:nth-child(5) { transition-delay: 0.32s; }
.will-reveal:nth-child(6) { transition-delay: 0.4s; }

/* --- Enhanced Hero --- */
.hero {
  background: linear-gradient(165deg, #1B2A3B 0%, #1A2030 40%, #1B2A3B 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 83, 28, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero h1 {
  -webkit-text-fill-color: unset;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero__content {
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

/* Orange accent line above hero headline */
.hero h1::before {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--orange);
  margin-bottom: 24px;
  border-radius: 2px;
}

/* --- Enhanced Nav --- */
.nav {
  background: rgba(27, 42, 59, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav__logo {
  font-size: 1.125rem;
  letter-spacing: 2.5px;
  font-weight: 700;
}

.nav__links a {
  position: relative;
  padding-bottom: 4px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
  transition: width 0.3s ease, left 0.3s ease;
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
  left: 0;
}

/* --- Enhanced Buttons --- */
.btn {
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: none;
}

.btn--orange {
  background: linear-gradient(135deg, #1A2030 0%, #141A28 100%);
  box-shadow: 0 2px 8px rgba(26, 57, 59, 0.25);
}

.btn--orange:hover {
  background: linear-gradient(135deg, #141A28 0%, #0E2224 100%);
  box-shadow: 0 4px 16px rgba(26, 57, 59, 0.35);
  transform: translateY(-1px);
}

.btn--outline-white {
  border-width: 1.5px;
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.05);
}

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

/* --- Enhanced Cards --- */
.card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 83, 28, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* Orange top border accent on cards */
.card--product {
  border-top: 3px solid transparent;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
}

.card--product:hover {
  border-top-color: var(--orange);
}

/* Category card enhancements */
.card--category {
  position: relative;
  overflow: hidden;
}

.card--category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #E8874D);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card--category:hover::before {
  transform: scaleX(1);
}

/* Dark card enhancements */
.card--dark {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.card--dark:hover {
  border-color: rgba(212, 83, 28, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
}

/* --- Enhanced Feature Icons --- */
.feature__icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--light-orange) 0%, #fde8de 100%);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature__icon:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(212, 83, 28, 0.15);
}

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--light-orange) 0%, #fde8de 100%);
}

/* --- Enhanced Section Headers --- */
.section-header h2 {
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--orange);
  margin: 16px auto 0;
  border-radius: 2px;
}

.section--navy .section-header h2::after {
  background: var(--orange);
}

/* --- Enhanced Typography --- */
body {
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

h1 {
  letter-spacing: -0.03em;
  line-height: 1.15;
}

h2 {
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h3 {
  letter-spacing: -0.01em;
}

/* Paragraph max-width for readability */
.section p,
.feature__desc,
.card__desc {
  max-width: 600px;
}

.text-center p,
.features .feature__desc,
.card--category .card__desc {
  margin-left: auto;
  margin-right: auto;
}

/* --- Enhanced Email Signup --- */
.signup__form {
  position: relative;
}

.signup__form input[type="email"] {
  border-radius: 8px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  font-size: 0.95rem;
}

.signup__form input[type="email"]:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--orange);
}

/* --- Enhanced Footer --- */
.footer {
  background: linear-gradient(180deg, #1B2A3B 0%, #1A2030 100%);
  padding: 72px 0 32px;
}

.footer__social a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.footer__social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 83, 28, 0.3);
}

/* --- Enhanced Pull Quote --- */
.pull-quote {
  background: linear-gradient(135deg, var(--navy) 0%, #1A2030 100%);
  border-left: 4px solid var(--orange);
  border-radius: 0 12px 12px 0;
  position: relative;
  overflow: hidden;
}

.pull-quote::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 83, 28, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* --- Enhanced Bundle Callout --- */
.bundle-callout {
  background: linear-gradient(135deg, var(--navy) 0%, #1A2030 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.bundle-callout::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 83, 28, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* --- Enhanced Division Cards --- */
.division-card {
  border-left: 4px solid var(--orange);
  border-radius: 0 12px 12px 0;
  background: var(--white);
  border-top: none;
  border-right: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

/* --- Enhanced Callout --- */
.callout {
  background: linear-gradient(135deg, var(--navy) 0%, #1A2030 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

/* --- Section Transitions --- */
.section--off-white {
  position: relative;
}

/* --- Smooth loading --- */
body {
  animation: fadeIn 0.5s ease;
}

/* --- Link hover animations --- */
.card__link {
  position: relative;
  display: inline-block;
}

.card__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.card__link:hover::after {
  width: 100%;
}

/* --- Enhanced Form --- */
.form__input,
.form__textarea {
  border-radius: 8px;
  border: 1.5px solid #e0e0e0;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(212, 83, 28, 0.08);
}

/* --- Image placeholder improvements --- */
.split__image {
  background: linear-gradient(135deg, #e8eef4 0%, #d4dde8 100%);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* --- Video card improvements --- */
.video-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* --- Article card improvements --- */
.article-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
}

.article-card__tag {
  border-radius: 20px;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* --- FAQ improvements --- */
.faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.faq__question {
  padding: 4px 0;
  transition: color 0.3s ease;
}

.faq__question:hover {
  color: var(--orange);
}

/* --- Scrollbar styling --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--off-white);
}

::-webkit-scrollbar-thumb {
  background: #c0c0c0;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a0a0a0;
}

/* --- Selection color --- */
::selection {
  background: rgba(212, 83, 28, 0.15);
  color: var(--navy);
}

/* --- Print styles --- */
@media print {
  .nav, .footer, .signup, .btn { display: none; }
  body { font-size: 12pt; color: #000; }
  h1, h2, h3 { color: #000; }
}
