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

  :root {
      --forest: #1b3a2b;
      --leaf: #2d6a4f;
      --sage: #52a07a;
      --mint: #a8d5b5;
      --cream: #f6f0e4;
      --ivory: #fdfaf3;
      --earth: #8b5e3c;
      --gold: #c9933a;
      --gold-light: #e8c47a;
      --charcoal: #222b1f;
      --mid: #4a5c45;
      --light-text: #7a8f72;
      --border: rgba(45, 106, 79, 0.15);
      --r: 12px;
      --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: 'DM Sans', sans-serif;
      background: var(--ivory);
      color: var(--charcoal);
      line-height: 1.7;
      overflow-x: hidden;
  }

  /* ── NOISE TEXTURE OVERLAY ── */
  body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.4;
  }

  h1,
  h2,
  h3,
  h4 {
      font-family: 'Playfair Display', serif;
      line-height: 1.25;
  }

  h1 {
      font-size: clamp(2.6rem, 6vw, 4.8rem);
      font-weight: 700;
  }

  h2 {
      font-size: clamp(1.9rem, 4vw, 3rem);
      font-weight: 600;
  }

  h3 {
      font-size: clamp(1.2rem, 2.5vw, 1.6rem);
      font-weight: 600;
  }

  h4 {
      font-size: 1.1rem;
      font-weight: 600;
  }

  p {
      font-size: 1rem;
      line-height: 1.75;
      color: var(--mid);
  }

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

  .container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 2rem;
  }

  .section {
      padding: 6rem 0;
  }

  /* ── SCROLL REVEAL ── */
  .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
  }

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

  /* ── NAVIGATION ── */
  nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 1.25rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
      background: rgba(253, 250, 243, 0.92);
      backdrop-filter: blur(16px);
      box-shadow: 0 1px 0 var(--border);
  }

  .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .nav-logo-mark {
      width: 38px;
      height: 38px;
      background: var(--forest);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  .nav-logo-mark svg {
      width: 20px;
      height: 20px;
  }

  .nav-logo-text {
      display: flex;
      flex-direction: column;
  }

  .nav-logo-text strong {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--forest);
      line-height: 1.1;
  }

  .nav-logo-text span {
      font-size: 0.62rem;
      font-weight: 300;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--light-text);
  }

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

  .nav-links a {
      font-size: 0.88rem;
      font-weight: 400;
      color: var(--mid);
      letter-spacing: 0.02em;
      position: relative;
      padding-bottom: 2px;
      transition: color var(--transition);
  }

  .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--leaf);
      transition: width var(--transition);
  }

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

  .nav-links a:hover::after {
      width: 100%;
  }

  .nav-cta {
      background: var(--forest);
      color: var(--cream) !important;
      padding: 0.5rem 1.2rem !important;
      border-radius: 50px !important;
      font-size: 0.85rem !important;
      transition: background var(--transition) !important;
  }

  .nav-cta::after {
      display: none !important;
  }

  .nav-cta:hover {
      background: var(--leaf) !important;
  }

  .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      z-index: 1001;
  }

  .hamburger span {
      width: 24px;
      height: 1.5px;
      background: var(--forest);
      transition: var(--transition);
      display: block;
  }

  .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--ivory);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
  }

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

  .mobile-menu a {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      color: var(--forest);
  }

  /* ── HERO ── */
  #hero {
      min-height: 100vh;
      background: var(--forest);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
  }

  .hero-bg-pattern {
      position: absolute;
      inset: 0;
      background-image:
          radial-gradient(circle at 70% 50%, rgba(82, 160, 122, 0.18) 0%, transparent 60%),
          radial-gradient(circle at 10% 80%, rgba(201, 147, 58, 0.1) 0%, transparent 50%);
  }

  .hero-grid-lines {
      position: absolute;
      inset: 0;
      opacity: 0.06;
      background-image: linear-gradient(var(--mint) 1px, transparent 1px), linear-gradient(90deg, var(--mint) 1px, transparent 1px);
      background-size: 80px 80px;
  }

  .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 2rem;
      padding-top: 7rem;
      padding-bottom: 6rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
  }

  .hero-left {}

  .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(168, 213, 181, 0.15);
      border: 1px solid rgba(168, 213, 181, 0.3);
      padding: 0.4rem 1rem;
      border-radius: 50px;
      font-size: 0.78rem;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--mint);
      margin-bottom: 1.5rem;
  }

  .hero-tag-dot {
      width: 6px;
      height: 6px;
      background: var(--sage);
      border-radius: 50%;
  }

  .hero-left h1 {
      color: var(--cream);
      margin-bottom: 1.25rem;
  }

  .hero-left h1 em {
      font-style: italic;
      color: var(--gold-light);
  }

  .hero-left p {
      color: rgba(246, 240, 228, 0.7);
      font-size: 1.05rem;
      font-weight: 300;
      margin-bottom: 2.5rem;
      max-width: 480px;
  }

  .hero-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
  }

  .btn-primary {
      background: var(--gold);
      color: var(--forest);
      padding: 0.85rem 2rem;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      transition: background var(--transition), transform var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: none;
      cursor: pointer;
  }

  .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-1px);
  }

  .btn-outline {
      border: 1px solid rgba(246, 240, 228, 0.3);
      color: var(--cream);
      padding: 0.85rem 2rem;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 400;
      transition: border-color var(--transition), background var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 8px;
  }

  .btn-outline:hover {
      border-color: rgba(246, 240, 228, 0.7);
      background: rgba(246, 240, 228, 0.06);
  }

  .hero-right {
      display: flex;
      flex-direction: column;
      gap: 1rem;
  }

  .hero-stat-card {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(168, 213, 181, 0.15);
      border-radius: var(--r);
      padding: 1.25rem 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      backdrop-filter: blur(10px);
      transition: background var(--transition);
      animation: floatIn 0.8s ease both;
  }

  .hero-stat-card:nth-child(2) {
      animation-delay: 0.15s;
      margin-left: 2rem;
  }

  .hero-stat-card:nth-child(3) {
      animation-delay: 0.3s;
  }

  @keyframes floatIn {
      from {
          opacity: 0;
          transform: translateX(30px);
      }

      to {
          opacity: 1;
          transform: translateX(0);
      }
  }

  .stat-icon {
      width: 44px;
      height: 44px;
      background: rgba(82, 160, 122, 0.2);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      flex-shrink: 0;
  }

  .stat-text strong {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      color: var(--cream);
      line-height: 1.1;
  }

  .stat-text span {
      font-size: 0.8rem;
      color: rgba(168, 213, 181, 0.8);
      font-weight: 300;
  }

  .hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(246, 240, 228, 0.4);
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
  }

  .scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, rgba(246, 240, 228, 0.4), transparent);
      animation: scrollPulse 1.8s ease-in-out infinite;
  }

  @keyframes scrollPulse {

      0%,
      100% {
          opacity: 0.4;
          transform: scaleY(1)
      }

      50% {
          opacity: 1;
          transform: scaleY(1.1)
      }
  }

  /* ── ABOUT STRIP ── */
  #about {
      background: var(--cream);
      padding: 5rem 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
  }

  .about-inner {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 5rem;
      align-items: center;
  }

  .about-label {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: 0.75rem;
  }

  .about-left h2 {
      color: var(--forest);
  }

  .about-divider {
      width: 48px;
      height: 3px;
      background: var(--gold);
      border-radius: 2px;
      margin: 1.5rem 0;
  }

  .about-right {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
  }

  .about-feature {}

  .about-feature-icon {
      width: 40px;
      height: 40px;
      background: rgba(45, 106, 79, 0.1);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      margin-bottom: 0.75rem;
  }

  .about-feature h4 {
      color: var(--forest);
      margin-bottom: 0.4rem;
      font-size: 0.95rem;
  }

  .about-feature p {
      font-size: 0.88rem;
      color: var(--light-text);
      line-height: 1.6;
  }

  /* ── BLOG SECTION ── */
  #blog {
      background: var(--ivory);
  }

  .section-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 4rem;
  }

  .section-header .label {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: 0.75rem;
  }

  .section-header h2 {
      color: var(--forest);
      margin-bottom: 1rem;
  }

  .section-header p {
      font-size: 1rem;
      color: var(--light-text);
  }

  .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.75rem;
      margin-bottom: 3rem;
  }

  .blog-card {
      background: var(--ivory);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
      cursor: pointer;
  }

  .blog-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(27, 58, 43, 0.1);
      border-color: rgba(45, 106, 79, 0.3);
  }

  .blog-card.featured {
      grid-column: span 2;
  }

  .blog-card-img {
      height: 200px;
      overflow: hidden;
      background: var(--forest);
      position: relative;
  }

  .blog-card.featured .blog-card-img {
      height: 280px;
  }

  .blog-card-img-inner {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      opacity: 0.6;
      transition: transform var(--transition);
  }

  .blog-card:hover .blog-card-img-inner {
      transform: scale(1.06);
  }

  .blog-cat {
      position: absolute;
      top: 1rem;
      left: 1rem;
      background: var(--gold);
      color: var(--forest);
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.3rem 0.75rem;
      border-radius: 50px;
  }

  .blog-body {
      padding: 1.5rem;
  }

  .blog-meta {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.75rem;
      color: var(--light-text);
      margin-bottom: 0.75rem;
  }

  .blog-meta-dot {
      width: 3px;
      height: 3px;
      background: var(--light-text);
      border-radius: 50%;
  }

  .blog-body h3 {
      font-size: 1.1rem;
      color: var(--forest);
      margin-bottom: 0.6rem;
      line-height: 1.3;
  }

  .blog-card.featured .blog-body h3 {
      font-size: 1.4rem;
  }

  .blog-body p {
      font-size: 0.87rem;
      color: var(--light-text);
      line-height: 1.65;
      margin-bottom: 1.1rem;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
  }

  .blog-read-more {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--leaf);
      transition: gap var(--transition);
  }

  .blog-card:hover .blog-read-more {
      gap: 10px;
  }

  .blog-color-1 {
      background: linear-gradient(135deg, #1b3a2b 0%, #2d6a4f 100%);
  }

  .blog-color-2 {
      background: linear-gradient(135deg, #3d2b1b 0%, #8b5e3c 100%);
  }

  .blog-color-3 {
      background: linear-gradient(135deg, #1b2b3a 0%, #2d4f6a 100%);
  }

  .blog-color-4 {
      background: linear-gradient(135deg, #2b3a1b 0%, #4f6a2d 100%);
  }

  .blog-cta-wrap {
      text-align: center;
  }

  /* ── APPS SECTION ── */
  #apps {
      background: var(--forest);
      position: relative;
      overflow: hidden;
  }

  #apps::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle at 20% 80%, rgba(201, 147, 58, 0.08) 0%, transparent 50%),
          radial-gradient(circle at 80% 20%, rgba(82, 160, 122, 0.12) 0%, transparent 50%);
  }

  .apps-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 4rem;
      position: relative;
  }

  .apps-header .label {
      color: var(--gold-light);
  }

  .apps-header h2 {
      color: var(--cream);
  }

  .apps-header p {
      color: rgba(246, 240, 228, 0.6);
  }

  .apps-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      position: relative;
  }

  .app-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(168, 213, 181, 0.15);
      border-radius: 20px;
      padding: 2.5rem;
      transition: background var(--transition), border-color var(--transition), transform var(--transition);
      position: relative;
      overflow: hidden;
  }

  .app-card:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(168, 213, 181, 0.35);
      transform: translateY(-3px);
  }

  .app-card::before {
      content: '';
      position: absolute;
      top: -40px;
      right: -40px;
      width: 150px;
      height: 150px;
      background: radial-gradient(circle, rgba(82, 160, 122, 0.15), transparent 70%);
      border-radius: 50%;
  }

  .app-icon {
      width: 60px;
      height: 60px;
      background: rgba(82, 160, 122, 0.2);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
  }

  .app-card h3 {
      color: var(--cream);
      margin-bottom: 0.75rem;
      font-size: 1.4rem;
  }

  .app-card>p {
      color: rgba(246, 240, 228, 0.6);
      font-size: 0.92rem;
      margin-bottom: 1.75rem;
      line-height: 1.7;
  }

  .app-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      margin-bottom: 2rem;
  }

  .app-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.85rem;
      color: rgba(246, 240, 228, 0.75);
  }

  .app-features li::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--sage);
      border-radius: 50%;
      flex-shrink: 0;
  }

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

  .app-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(168, 213, 181, 0.1);
      border: 1px solid rgba(168, 213, 181, 0.2);
      color: var(--mint);
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 0.05em;
      padding: 0.3rem 0.75rem;
      border-radius: 50px;
  }

  .app-badge-dot {
      width: 5px;
      height: 5px;
      background: var(--sage);
      border-radius: 50%;
  }

  .app-coming-soon {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(201, 147, 58, 0.15);
      border: 1px solid rgba(201, 147, 58, 0.25);
      padding: 0.55rem 1.2rem;
      border-radius: 50px;
      margin-top: 1rem;
      font-size: 0.8rem;
      color: var(--gold-light);
      font-weight: 400;
      letter-spacing: 0.04em;
  }

  /* ── NEWSLETTER ── */
  #newsletter {
      background: var(--cream);
  }

  .newsletter-inner {
      background: var(--forest);
      border-radius: 24px;
      padding: 4rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      position: relative;
      overflow: hidden;
  }

  .newsletter-inner::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 250px;
      height: 250px;
      background: radial-gradient(circle, rgba(201, 147, 58, 0.15), transparent 70%);
      border-radius: 50%;
  }

  .newsletter-left h2 {
      color: var(--cream);
      font-size: 2.2rem;
      margin-bottom: 0.75rem;
  }

  .newsletter-left p {
      color: rgba(246, 240, 228, 0.6);
      font-size: 0.95rem;
  }

  .newsletter-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      position: relative;
  }

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

  .newsletter-form input {
      flex: 1;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(246, 240, 228, 0.15);
      color: var(--cream);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      padding: 0.85rem 1.25rem;
      border-radius: 50px;
      outline: none;
      transition: border-color var(--transition);
  }

  .newsletter-form input::placeholder {
      color: rgba(246, 240, 228, 0.35);
  }

  .newsletter-form input:focus {
      border-color: rgba(246, 240, 228, 0.4);
  }

  .newsletter-form .btn-primary {
      white-space: nowrap;
      flex-shrink: 0;
  }

  .newsletter-note {
      font-size: 0.75rem;
      color: rgba(246, 240, 228, 0.35);
  }

  /* ── FOOTER ── */
  footer {
      background: var(--charcoal);
      padding: 4rem 0 2rem;
  }

  .footer-inner {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
  }

  .footer-brand {}

  .footer-brand .nav-logo-mark {
      background: var(--leaf);
      margin-bottom: 1rem;
  }

  .footer-brand strong {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      color: var(--cream);
      display: block;
      margin-bottom: 0.25rem;
  }

  .footer-brand span {
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(246, 240, 228, 0.3);
  }

  .footer-brand p {
      font-size: 0.85rem;
      color: rgba(246, 240, 228, 0.45);
      margin-top: 0.75rem;
      line-height: 1.65;
  }

  .footer-col h5 {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(246, 240, 228, 0.4);
      margin-bottom: 1.25rem;
  }

  .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
  }

  .footer-col ul li a {
      font-size: 0.87rem;
      color: rgba(246, 240, 228, 0.5);
      transition: color var(--transition);
  }

  .footer-col ul li a:hover {
      color: var(--mint);
  }

  .footer-bottom {
      border-top: 1px solid rgba(246, 240, 228, 0.08);
      padding-top: 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
  }

  .footer-bottom p {
      font-size: 0.78rem;
      color: rgba(246, 240, 228, 0.25);
  }

  .footer-domain {
      font-size: 0.78rem;
      color: rgba(168, 213, 181, 0.5);
      font-style: italic;
      letter-spacing: 0.03em;
  }

  /* ── MODAL (Blog Post) ── */
  .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(27, 58, 43, 0.85);
      backdrop-filter: blur(8px);
      z-index: 2000;
      align-items: center;
      justify-content: center;
      padding: 2rem;
  }

  .modal-overlay.open {
      display: flex;
  }

  .modal {
      background: var(--ivory);
      border-radius: 20px;
      max-width: 720px;
      width: 100%;
      max-height: 85vh;
      overflow-y: auto;
      animation: modalIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  @keyframes modalIn {
      from {
          opacity: 0;
          transform: scale(0.95) translateY(20px);
      }

      to {
          opacity: 1;
          transform: none;
      }
  }

  .modal-img {
      height: 220px;
      border-radius: 20px 20px 0 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
      opacity: 0.7;
  }

  .modal-body {
      padding: 2.5rem;
  }

  .modal-cat {
      display: inline-block;
      background: var(--gold);
      color: var(--forest);
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.3rem 0.75rem;
      border-radius: 50px;
      margin-bottom: 1rem;
  }

  .modal-body h2 {
      color: var(--forest);
      font-size: 1.8rem;
      margin-bottom: 0.75rem;
  }

  .modal-meta {
      font-size: 0.8rem;
      color: var(--light-text);
      margin-bottom: 1.5rem;
  }

  .modal-content p {
      font-size: 0.95rem;
      color: var(--mid);
      margin-bottom: 1.25rem;
      line-height: 1.8;
  }

  .modal-content h4 {
      color: var(--forest);
      margin: 1.5rem 0 0.75rem;
  }

  .modal-content ul {
      padding-left: 1.25rem;
      margin-bottom: 1.25rem;
  }

  .modal-content ul li {
      font-size: 0.92rem;
      color: var(--mid);
      margin-bottom: 0.4rem;
      line-height: 1.7;
  }

  .modal-close {
      float: right;
      background: var(--cream);
      border: 1px solid var(--border);
      width: 36px;
      height: 36px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1.1rem;
      line-height: 36px;
      text-align: center;
      transition: background var(--transition);
      color: var(--forest);
  }

  .modal-close:hover {
      background: var(--mint);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 960px) {
      .hero-content {
          grid-template-columns: 1fr;
          gap: 3rem;
      }

      .hero-right {
          display: none;
      }

      .about-inner {
          grid-template-columns: 1fr;
          gap: 2.5rem;
      }

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

      .blog-card.featured {
          grid-column: span 2;
      }

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

      .newsletter-inner {
          grid-template-columns: 1fr;
          gap: 2rem;
          padding: 2.5rem;
      }

      .footer-inner {
          grid-template-columns: 1fr 1fr;
          gap: 2rem;
      }
  }

  @media (max-width: 680px) {
      .nav-links {
          display: none;
      }

      .hamburger {
          display: flex;
      }

      h1 {
          font-size: 2.4rem;
      }

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

      .blog-card.featured {
          grid-column: span 1;
      }

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

      .footer-inner {
          grid-template-columns: 1fr;
      }

      .footer-bottom {
          flex-direction: column;
          gap: 0.5rem;
          text-align: center;
      }

      .about-right {
          grid-template-columns: 1fr;
      }

      .section {
          padding: 4rem 0;
      }
  }