@charset "utf-8";

/* =========================
   Domain Genesis Homepage
   ========================= */

:root {
  --bg: #09090a;
  --ink: #f7f4ec;
  --muted: #c9c3b8;
  --soft: #f8f5ef;
  --panel: #101011;
  --gold: #d2a12b;
  --gold-soft: #f6ead0;
  --gold-dark: #a87912;
  --line: rgba(210, 161, 43, 0.35);
  --white-line: rgba(255,255,255,0.12);

  --font-heading: "Lora", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;

  --max: 1160px;
  --hero-copy: 720px;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

/* HERO */

.dg-hero {
  position: relative;
  background: #09090a;
  overflow: hidden;
}

.dg-hero::after {
  content: "";
  position: absolute;
  top: 34px;
  right: -90px;
  width: min(740px, 52vw);
  height: 620px;
  background: url("../img/ui/global-network.jpg") no-repeat center center;
  background-size: contain;
  opacity: 0.92;
  pointer-events: none;
  z-index: 1;
}

.dg-hero-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto;
  padding: 30px 0 58px;
}

.dg-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 58px;
}

.dg-brand-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
}

.dg-logo {
  width: 105px;
}

.dg-brand-text {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dg-dot {
  color: var(--gold);
}

.dg-hero-grid {
  display: block;
}

.dg-hero-copy {
  position: relative;
  z-index: 3;
  width: min(100%, var(--hero-copy));
}

.dg-hero-copy h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.2vw, 3.7rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
}

.dg-hero-copy p {
  width: min(100%, 700px);
  margin: 24px 0 0;
  color: #e4dfd5;
  font-size: 1.12rem;
  line-height: 1.65;
}

.dg-trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.dg-shield {
  width: 28px;
  height: 30px;
  display: inline-block;
}

.dg-hero-visual {
  display: none;
}

/* MAIN */

.dg-main {
  background: #fff;
  color: #101014;
  padding: 42px 0;
  display: flow-root;
}

.dg-main > section {
  width: min(calc(100% - 64px), var(--max));
  margin-left: auto;
  margin-right: auto;
}

/* FEATURE CARDS */

.dg-card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: -6px;
}

.dg-card {
  min-height: 238px;
  padding: 28px 28px 24px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: start;
}

.dg-card-icon {
  width: 72px;
}

.dg-card h2 {
  margin: 8px 0 14px;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  line-height: 1.05;
  font-weight: 600;
}

.dg-card p {
  margin: 0;
  color: #33353a;
  font-size: 0.98rem;
  line-height: 1.65;
}

/* PROOF STRIP */

.dg-proof-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 42px 0 36px;
}

.dg-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 0 22px;
  border-right: 1px solid rgba(0,0,0,0.13);
}

.dg-proof:last-child {
  border-right: 0;
}

.dg-proof img {
  width: 56px;
  height: auto;
  margin-bottom: 6px;
}

.dg-proof strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
}

.dg-proof span {
  display: block;
  font-size: 0.92rem;
  color: #3f4249;
}

/* FOCUS PANEL */

.dg-focus {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  padding: 44px 54px;
  border-radius: 18px;
  background: #f7f1e9;
  align-items: center;
}

.dg-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--gold-dark);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dg-eyebrow::after {
  content: "";
  display: inline-block;
  width: 56px;
  height: 1px;
  background: var(--gold-dark);
}

.dg-focus h2 {
  margin: 20px 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.dg-focus p {
  max-width: 390px;
  margin: 0;
  color: #3a3c42;
  font-size: 1rem;
  line-height: 1.65;
}

.dg-focus-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dg-focus-list li {
  position: relative;
  padding: 18px 0 18px 48px;
  border-bottom: 1px solid rgba(0,0,0,0.11);
  font-weight: 700;
  font-size: 1.05rem;
}

.dg-focus-list li:last-child {
  border-bottom: 0;
}

.dg-focus-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 16px;
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  color: var(--gold-dark);
  font-size: 0.85rem;
}

/* CONTACT PANEL */

.dg-main > .dg-contact-panel {
  position: relative;
  overflow: hidden;
  width: min(calc(100% - 64px), 760px);
  margin: 42px auto 0;
  padding: 38px 42px 42px;
  text-align: center;
  border-radius: 18px;
  background: #09090a;
  color: #fff;
  border: 1px solid rgba(210,161,43,0.3);
}

.dg-main > .dg-contact-panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;

  background: url("../img/ui/global-network.jpg") no-repeat center top;
  background-size: cover;

  opacity: 0.72;
  pointer-events: none;
  z-index: 0;
}

.dg-main > .dg-contact-panel > * {
  position: relative;
  z-index: 1;
}

.dg-contact-panel h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.1;
}

.dg-contact-panel p {
  max-width: 560px;
  margin: 16px auto 28px;
  color: #e8e1d5;
}

.dg-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 14px 28px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: #0b0b0c;
  font-weight: 700;
  cursor: pointer;
}

/* FOOTER */

.dg-footer {
  background: #09090a;
  color: #fff;
}

.dg-footer-inner {
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.dg-footer-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.dg-footer-logo {
  width: 82px;
  margin: 0;
}

.dg-footer-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #d9d4ca;
}

.dg-footer-brand-line {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--gold);
  font-weight: 600;
}

.dg-footer-bullet {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.dg-footer-since {
  font-size: 0.88em;
  font-weight: 500;
}

.dg-footer-copy a {
  color: #d9d4ca;
  font-size: 0.92rem;
}

.dg-footer-trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d9d4ca;
  font-size: 0.92rem;
  text-align: right;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .dg-hero::after {
    top: 120px;
    right: -180px;
    width: min(680px, 78vw);
    opacity: 0.45;
  }

  .dg-focus {
    grid-template-columns: 1fr;
  }

  .dg-card-row {
    grid-template-columns: 1fr;
  }

  .dg-proof-row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
  }

  .dg-proof:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .dg-hero-inner,
  .dg-main > section,
  .dg-footer-inner {
    width: min(calc(100% - 32px), var(--max));
  }

  .dg-hero-inner {
    padding-top: 24px;
  }

  .dg-topbar,
  .dg-brand-lockup,
  .dg-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .dg-topbar {
    margin-bottom: 42px;
  }

  .dg-brand-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
  }

  .dg-hero-copy h1 {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }

  .dg-hero-copy p {
    font-size: 1rem;
  }

  .dg-hero::after {
    top: 180px;
    right: -220px;
    width: 620px;
    opacity: 0.32;
  }

  .dg-card {
    grid-template-columns: 1fr;
  }

  .dg-focus {
    padding: 34px 24px;
  }

  .dg-main > .dg-contact-panel {
    width: min(calc(100% - 32px), 760px);
    padding: 34px 24px 36px;
  }

  .dg-proof-row {
    grid-template-columns: 1fr;
  }

  .dg-proof {
    border-right: 0;
    border-bottom: 1px solid rgba(0,0,0,0.12);
    padding-bottom: 24px;
  }

  .dg-proof:last-child {
    border-bottom: 0;
  }
  .dg-footer-inner,
  .dg-footer-left {
    flex-direction: column;
    align-items: flex-start;
  }

.dg-footer-trust {
  text-align: left;
}
}