/* ================================================
   REEFCODE.DEV — DESIGN SYSTEM & STYLES
   ================================================

   CUSTOMIZATION GUIDE:

   Colors (search & replace):
   --accent:       #2E8B57  → reef green
   --accent-light: #E8F5EE  → light green tint
   --accent-glow:  rgba(46,139,87,0.12) → glow/shadow tint
   --charcoal:     #1C1C1C  → primary text
   --gray-600:     #555555  → secondary text
   --gray-400:     #999999  → muted text
   --gray-200:     #ECECEC  → borders
   --gray-100:     #F7F7F8  → section backgrounds
   --white:        #FFFFFF  → base background

   Spacing:         adjust --space-* variables
   Max width:       adjust --max-width (default 1120px)
   Border radius:   adjust --radius-* variables

   ================================================ */


/* ------------------------------------------------
   CSS VARIABLES
   ------------------------------------------------ */
:root {
  /* Colors */
  --accent: #2E8B57;
  --accent-dark: #236B44;
  --accent-light: #E8F5EE;
  --accent-subtle: #F2FAF6;
  --accent-glow: rgba(46, 139, 87, 0.12);
  --charcoal: #1C1C1C;
  --dark: #111113;
  --dark-surface: #1A1A1E;
  --dark-border: #2A2A2E;
  --gray-600: #555555;
  --gray-400: #999999;
  --gray-200: #ECECEC;
  --gray-100: #F7F7F8;
  --white: #FFFFFF;

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --text-xs: 0.8125rem;   /* 13px */
  --text-sm: 0.875rem;    /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg: 1.125rem;    /* 18px */
  --text-xl: 1.25rem;     /* 20px */
  --text-2xl: 1.75rem;    /* 28px */
  --text-3xl: 2.5rem;     /* 40px */
  --text-4xl: 3.25rem;    /* 52px */
  --text-5xl: 4rem;       /* 64px */

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
  --space-4xl: 10rem;

  /* Layout */
  --max-width: 1120px;

  /* Borders & Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration: 0.3s;
}


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

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

body {
  font-family: var(--font);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}


/* ------------------------------------------------
   CONTAINER
   ------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}


/* ------------------------------------------------
   LOGO — CORAL MARK
   ------------------------------------------------ */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  user-select: none;
}

/* Arc Reef mark — 3/4 arc with center dot */
.logo-mark {
  position: relative;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.logo-mark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2.5px solid transparent;
  border-top-color: var(--accent);
  border-right-color: var(--accent);
  border-bottom-color: var(--accent);
  transform: rotate(-45deg);
}

.logo-mark span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.logo-text {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.logo-reef {
  font-weight: 700;
  color: var(--accent);
}

.logo-code {
  font-weight: 500;
  color: var(--white);
}

.logo-dot {
  color: inherit;
}

.logo--footer {
  gap: 8px;
}

.logo--footer .logo-text {
  font-size: 1.2rem;
}

.logo--footer .logo-mark {
  width: 22px;
  height: 22px;
}

.logo--footer .logo-mark::before {
  width: 22px;
  height: 22px;
  border-width: 2px;
}

.logo--footer .logo-mark span {
  width: 6px;
  height: 6px;
}


/* ------------------------------------------------
   HEADER
   ------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17, 17, 19, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--dark-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: #888;
  transition: color var(--duration) var(--ease);
  letter-spacing: 0.01em;
}

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

.nav-link--cta {
  color: var(--accent);
  font-weight: 600;
}

.nav-link--cta:hover {
  color: #5CBA7D;
}

/* Mobile menu toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  margin-right: -8px;
  -webkit-tap-highlight-color: transparent;
}

.menu-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
}

.menu-toggle[aria-expanded="true"] .menu-bar:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-bar:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: var(--space-sm) var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--dark-border);
  background: var(--dark);
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile-link {
  padding: 14px 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  font-size: var(--text-lg);
  font-weight: 500;
  color: #CCC;
  border-bottom: 1px solid var(--dark-border);
  -webkit-tap-highlight-color: transparent;
}

.nav-mobile-link:last-child {
  border-bottom: none;
  color: var(--accent);
}


/* ------------------------------------------------
   HERO
   ------------------------------------------------ */
.hero {
  padding: var(--space-3xl) 0 var(--space-2xl);
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-content {
  max-width: 720px;
}

.hero-visual {
  display: none;
}

.hero-editor {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.4));
}

.hero-headline {
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.hero-sub {
  font-size: var(--text-lg);
  color: #A0A0A8;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: var(--space-lg);
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Subtle accent glow */
.hero-accent {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(46, 139, 87, 0.18) 0%, rgba(46, 139, 87, 0.05) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Second glow — bottom left for depth */
.hero::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46, 139, 87, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}


/* ------------------------------------------------
   BUTTONS
   ------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 14px 28px;
  min-height: 48px;
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease);
  letter-spacing: 0.01em;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

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

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(46, 139, 87, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--dark-border);
}

.btn-secondary:hover {
  border-color: #888;
  color: var(--white);
  transform: translateY(-1px);
}

/* Light context overrides (for sections with white/light bg) */
.services .btn-primary,
.cta .btn-primary {
  background: var(--charcoal);
  color: var(--white);
}

.services .btn-primary:hover,
.cta .btn-primary:hover {
  background: #333;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-large {
  font-size: var(--text-base);
  padding: 16px 40px;
  border-radius: var(--radius-md);
}


/* ------------------------------------------------
   TRUST STRIP
   ------------------------------------------------ */
.trust-strip {
  padding: var(--space-2xl) 0;
  background: var(--accent-subtle);
  border-top: 1px solid #D5E8DD;
  border-bottom: 1px solid #D5E8DD;
}

.trust-text {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--accent-dark);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: var(--space-lg);
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.trust-logo-placeholder {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--space-xs) var(--space-sm);
  border: 1px dashed rgba(46, 139, 87, 0.25);
  border-radius: var(--radius-sm);
  opacity: 0.6;
}


/* ------------------------------------------------
   SECTION HEADERS
   ------------------------------------------------ */
.section-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: var(--text-3xl);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--charcoal);
}

.section-header {
  margin-bottom: var(--space-xl);
}


/* ------------------------------------------------
   SERVICES
   ------------------------------------------------ */
.services {
  padding: var(--space-3xl) 0;
  background: var(--gray-100);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.service-card {
  position: relative;
  padding: var(--space-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all var(--duration) var(--ease);
  overflow: hidden;
}

.service-card:hover {
  border-color: #d0d0d0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.service-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 0 0 2px 0;
  transition: width var(--duration) var(--ease);
}

.service-card:hover .service-accent {
  width: 100%;
}

.service-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.service-title {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.65;
}


/* ------------------------------------------------
   FEATURED WORK
   ------------------------------------------------ */
.work {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.work-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

.work-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
  transform: translateY(-3px);
}

.work-card-visual {
  padding: var(--space-md);
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-mockup {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  display: block;
}

.work-card-body {
  padding: var(--space-lg);
}

.work-card-title {
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-xs);
}

.work-card-desc {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 10px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  color: var(--gray-600);
  letter-spacing: 0.01em;
}


/* ------------------------------------------------
   TESTIMONIALS
   ------------------------------------------------ */
.testimonials {
  padding: var(--space-3xl) 0;
  background: var(--dark-surface);
}

.testimonials .section-label {
  color: var(--accent);
}

.testimonials .section-title {
  color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.testimonial-card {
  padding: var(--space-lg);
  background: var(--dark);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  transition: all var(--duration) var(--ease);
}

.testimonial-card:hover {
  border-color: #3A3A3E;
  transform: translateY(-2px);
}

.testimonial-quote {
  font-size: var(--text-base);
  color: #C8C8D0;
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.testimonial-name {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white);
  font-style: normal;
}

.testimonial-role {
  display: block;
  font-size: var(--text-xs);
  color: #888;
}


/* ------------------------------------------------
   PROCESS
   ------------------------------------------------ */
.process {
  padding: var(--space-3xl) 0;
  background: var(--accent-subtle);
  border-top: 1px solid #D5E8DD;
  border-bottom: 1px solid #D5E8DD;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.process-connector {
  display: none;
}

.process-step {
  padding: var(--space-lg);
  border: 1px solid #D5E8DD;
  border-radius: var(--radius-md);
  background: var(--white);
}

.process-number {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.process-step-title {
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-xs);
}

.process-step-desc {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.65;
}


/* ------------------------------------------------
   ABOUT
   ------------------------------------------------ */
.about {
  padding: var(--space-3xl) 0;
  background: var(--dark-surface);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.about .section-label {
  color: var(--accent);
}

.about .section-title {
  color: var(--white);
}

.about-body p {
  font-size: var(--text-base);
  color: #A0A0A8;
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

.about-body p:last-child {
  margin-bottom: 0;
}

/* About stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--dark-border);
}

.about-stat {
  text-align: center;
  padding: var(--space-md);
}

.about-stat-number {
  display: block;
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.about-stat-label {
  display: block;
  font-size: var(--text-sm);
  color: #888;
  letter-spacing: 0.01em;
}


/* ------------------------------------------------
   FINAL CTA
   ------------------------------------------------ */
.cta {
  padding: var(--space-4xl) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

/* Subtle green glow on the CTA */
.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(46, 139, 87, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.cta-title {
  font-size: var(--text-3xl);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: var(--space-md);
  color: var(--white);
}

.cta-sub {
  font-size: var(--text-lg);
  color: #A0A0A8;
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

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

.cta .btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 4px 20px rgba(46, 139, 87, 0.35);
}


/* ------------------------------------------------
   FOOTER
   ------------------------------------------------ */
.site-footer {
  border-top: 1px solid var(--dark-border);
  padding: var(--space-xl) 0 var(--space-lg);
  background: var(--dark);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-nav a {
  font-size: var(--text-sm);
  color: #888;
  transition: color var(--duration) var(--ease);
  padding: 4px 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--dark-border);
}

.footer-email {
  font-size: var(--text-sm);
  color: #888;
}

.footer-copy {
  font-size: var(--text-xs);
  color: #555;
}

/* Footer logo in dark context */
.logo--footer .logo-reef {
  color: var(--accent);
}

.logo--footer .logo-code {
  color: #CCC;
}


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

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


/* ================================================
   RESPONSIVE — SMALL MOBILE FIX (max 374px)
   ================================================ */
@media (max-width: 374px) {
  .hero-headline {
    font-size: 2.25rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .trust-logos {
    gap: var(--space-xs);
  }

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


/* ================================================
   RESPONSIVE — TABLET (768px+)
   ================================================ */
@media (min-width: 768px) {
  .hero {
    padding: var(--space-4xl) 0 var(--space-3xl);
  }

  .hero-visual {
    display: block;
  }

  .hero-headline {
    font-size: var(--text-5xl);
  }

  .hero-sub {
    font-size: var(--text-xl);
  }

  .trust-logos {
    gap: var(--space-lg);
  }

  .trust-logo-placeholder {
    font-size: var(--text-sm);
    padding: var(--space-sm) var(--space-md);
  }

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

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
  }

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

  .process-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
  }

  .about-inner {
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: start;
  }

  .cta-title {
    font-size: var(--text-4xl);
  }

  .footer-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}


/* ================================================
   RESPONSIVE — DESKTOP (1024px+)
   ================================================ */
@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-lg);
  }

  /* Show desktop nav, hide hamburger */
  .nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .nav-mobile {
    display: none !important;
  }

  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .hero-content {
    max-width: none;
  }

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

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

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
  }

  /* Process connectors on desktop */
  .process-steps {
    grid-template-columns: repeat(7, auto);
    align-items: start;
    gap: 0;
  }

  .process-step {
    flex: 1;
    border: none;
    background: transparent;
    padding: var(--space-md) var(--space-sm);
  }

  .process-connector {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 40px;
  }

  .process-connector::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gray-200);
  }
}


/* ================================================
   RESPONSIVE — LARGE DESKTOP (1280px+)
   ================================================ */
@media (min-width: 1280px) {
  :root {
    --text-5xl: 4.5rem;
  }

  .hero-accent {
    width: 600px;
    height: 600px;
  }
}
