/* DayTronX — global.css
   Reset, variables, base typography, shared utilities */

:root {
  --dt-dark:        #424B54;
  --dt-dark-deep:   #2d343a;
  --dt-teal:        #4DBFC8;
  --dt-teal-dark:   #3aa8b1;
  --dt-green:       #90D370;
  --dt-teal-light:  #e8f8f9;
  --dt-teal-mid:    #b8e8ec;
  --dt-gray-bg:     #f4f5f6;
  --dt-gray-border: #e5e7eb;
  --dt-white:       #ffffff;
  --dt-text-muted:  #6b7280;
  --dt-text-light:  rgba(255, 255, 255, 0.65);
  --dt-text-dim:    rgba(255, 255, 255, 0.4);
  --dt-text-fade:   rgba(255, 255, 255, 0.3);
  --dt-danger:      #d9534f;

  --font-heading: 'Figtree', sans-serif;
  --font-body:    'Manrope', sans-serif;

}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  color: var(--dt-dark);
  background: var(--dt-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.15;
  color: var(--dt-dark);
}

a {
  color: var(--dt-teal);
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease;
}
a:hover { color: var(--dt-teal-dark); }

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

/* Section width container */
.dt-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Generic eyebrow / section label */
.dt-eyebrow {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--dt-teal);
}

.dt-eyebrow-light {
  color: var(--dt-teal);
  font-size: 12px;
  letter-spacing: 2px;
}

/* Section headings */
.dt-section-h2 {
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--dt-dark);
  letter-spacing: -1px;
  margin-top: 14px;
}

@media (max-width: 768px) {
  .dt-section-h2 { font-size: 28px; }
}

/* Buttons */
.dt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 14px;
  padding: 13px 26px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
  text-decoration: none;
}

.dt-btn-primary {
  background: var(--dt-teal);
  color: var(--dt-white);
}
.dt-btn-primary:hover {
  background: var(--dt-teal-dark);
  color: var(--dt-white);
}

.dt-btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.dt-btn-ghost:hover {
  color: var(--dt-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.dt-btn-dark {
  background: var(--dt-dark);
  color: var(--dt-white);
}
.dt-btn-dark:hover {
  background: #353c44;
  color: var(--dt-white);
}

.dt-btn-light {
  background: var(--dt-white);
  color: var(--dt-dark);
}
.dt-btn-light:hover {
  background: #f3f4f6;
  color: var(--dt-dark);
}

/* Hero shared */
.dt-hero {
  position: relative;
  background: var(--dt-dark);
  color: var(--dt-white);
  padding: 100px 40px 90px;
  overflow: hidden;
}
.dt-hero::before,
.dt-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(77, 191, 200, 0.08);
  pointer-events: none;
}
.dt-hero::before {
  width: 520px; height: 520px;
  top: -200px; right: -180px;
}
.dt-hero::after {
  width: 320px; height: 320px;
  top: -80px; right: 60px;
  border-color: rgba(77, 191, 200, 0.05);
}
.dt-hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 1;
}
.dt-hero h1 {
  font-family: 'Figtree', sans-serif;
  font-weight: 800;
  font-size: 52px;
  color: var(--dt-white);
  letter-spacing: -1.5px;
  margin-top: 18px;
  max-width: 820px;
}
.dt-hero .dt-tagline {
  font-weight: 300;
  font-style: italic;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
  max-width: 680px;
}
.dt-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  margin-top: 22px;
  max-width: 640px;
  line-height: 1.7;
}
.dt-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

@media (max-width: 768px) {
  .dt-hero { padding: 70px 24px 60px; }
  .dt-hero h1 { font-size: 36px; letter-spacing: -1px; }
  .dt-hero .dt-tagline { font-size: 16px; }
  .dt-hero p { font-size: 15px; }
  .dt-container { padding: 0 24px; }
}

/* Page section padding */
.dt-section {
  padding: 70px 40px;
}
.dt-section-narrow {
  padding: 50px 40px;
}

@media (max-width: 768px) {
  .dt-section, .dt-section-narrow { padding: 50px 24px; }
}

/* Generic CTA band */
.dt-cta-band {
  background: var(--dt-dark);
  color: var(--dt-white);
  text-align: center;
  padding: 70px 40px;
}
.dt-cta-band h2 {
  color: var(--dt-white);
  font-family: 'Figtree', sans-serif;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -1px;
  max-width: 760px;
  margin: 0 auto 14px;
}
.dt-cta-band p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 620px;
  margin: 0 auto 26px;
  font-size: 16px;
}

/* Inline link arrow */
.dt-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 14px;
}

/* Utility */
.dt-text-teal { color: var(--dt-teal); }
.dt-text-white { color: var(--dt-white); }
.dt-text-muted { color: var(--dt-text-muted); }
