@import url("https://fonts.googleapis.com/css2?family=Estedad:wght@100..900&display=swap");

:root {
  --paper: #fbfaf7;
  --text: #181817;
  --muted: #6f706c;
  --border: rgba(24, 24, 23, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "Estedad", Tahoma, Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.landing {
  --accent: #1769ff;
  --accent-dark: #0b45b8;
  --soft: #eaf1ff;
  --ink: #0a1f46;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 0%, var(--soft) 0, transparent 31rem),
    var(--paper);
}

.nav-shell {
  width: min(1180px, calc(100% - 40px));
  height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--border);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.logo-glyph {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: white;
  background: var(--accent);
  font-weight: 900;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent) 28%, transparent);
}

.logo > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo b {
  font-size: 19px;
}

.logo small {
  font: 500 11px/1.4 "Estedad", sans-serif;
  color: var(--muted);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #555651;
  font-size: 14px;
}

.nav-links a {
  transition: color 180ms ease;
}

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

.nav-cta {
  padding: 12px 19px;
  color: white;
  background: var(--ink);
  border-radius: 13px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: 650px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  align-items: center;
  gap: 72px;
  padding: 72px 0 82px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.15px;
}

.eyebrow i {
  width: 9px;
  height: 9px;
  display: inline-block;
  border: 2px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 13%, transparent);
}

.hero-copy h1 {
  margin: 24px 0 22px;
  color: var(--ink);
  font-size: clamp(46px, 5.35vw, 75px);
  line-height: 1.22;
  letter-spacing: -3px;
}

.hero-copy h1 strong {
  display: block;
  color: var(--accent);
  font-weight: 900;
}

.hero-copy > p {
  max-width: 590px;
  margin: 0;
  color: #555650;
  font-size: 17px;
  line-height: 2;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 24px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button-primary {
  color: white;
  background: var(--accent);
  box-shadow: 0 13px 30px color-mix(in srgb, var(--accent) 28%, transparent);
}

.button-primary:hover {
  box-shadow: 0 18px 36px color-mix(in srgb, var(--accent) 36%, transparent);
}

.button-ghost {
  color: var(--ink);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.65);
}

.trust-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  color: #666762;
  font-size: 11px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.trust-row b {
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--accent-dark);
  background: var(--soft);
  font-size: 10px;
}

.product-stage {
  min-height: 520px;
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
}

.product-stage::before {
  content: "";
  width: 78%;
  aspect-ratio: 1;
  position: absolute;
  border-radius: 44% 56% 52% 48%;
  background: var(--accent);
  opacity: 0.1;
  filter: blur(2px);
  transform: rotate(12deg);
}

.stage-orbit {
  position: absolute;
  border: 1px solid color-mix(in srgb, var(--accent) 34%, transparent);
  border-radius: 50%;
}

.orbit-one {
  width: 88%;
  aspect-ratio: 1;
  transform: rotate(-16deg) scaleY(0.58);
}

.orbit-two {
  width: 68%;
  aspect-ratio: 1;
  transform: rotate(42deg) scaleY(0.78);
}

.dashboard-card {
  width: min(100%, 540px);
  padding: 26px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 34px 80px rgba(27, 24, 20, 0.14);
  backdrop-filter: blur(16px);
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
}

.dashboard-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.dashboard-head small {
  color: var(--muted);
  font-size: 10px;
}

.dashboard-head h2 {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 20px;
}

.live-dot {
  padding: 6px 10px;
  border-radius: 99px;
  color: var(--accent-dark);
  background: var(--soft);
  font-size: 10px;
  font-weight: 800;
}

.live-dot::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 5px;
  display: inline-block;
  border-radius: 50%;
  background: var(--accent);
}

.chip-row {
  margin: 22px 0;
  display: flex;
  gap: 7px;
  overflow: hidden;
}

.chip-row span {
  flex: 0 0 auto;
  padding: 7px 11px;
  border: 1px solid var(--border);
  border-radius: 99px;
  color: #72736f;
  font-size: 9px;
}

.chip-row .active {
  border-color: var(--accent);
  color: white;
  background: var(--accent);
}

.data-list {
  display: grid;
  gap: 8px;
}

.data-row {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border: 1px solid rgba(24, 24, 23, 0.07);
  border-radius: 15px;
  background: #fff;
}

.row-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--accent-dark);
  background: var(--soft);
  font: 700 11px "Estedad", sans-serif;
}

.row-copy {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 4px;
}

.row-copy b,
.data-row > strong {
  color: var(--ink);
  font-size: 11px;
}

.row-copy small {
  color: #8a8b87;
  font-size: 9px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.data-row > strong {
  flex: 0 0 auto;
}

.mini-chart {
  height: 68px;
  margin-top: 19px;
  display: flex;
  align-items: end;
  gap: 7px;
  padding: 8px 4px 0;
  border-top: 1px dashed var(--border);
}

.mini-chart i {
  flex: 1;
  border-radius: 5px 5px 2px 2px;
  background: color-mix(in srgb, var(--accent) 34%, white);
}

.mini-chart i:nth-last-child(-n + 2) {
  background: var(--accent);
}

.float-card {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 45px rgba(24, 24, 23, 0.14);
  font-size: 10px;
  backdrop-filter: blur(10px);
}

.float-card-top {
  top: 58px;
  left: -12px;
}

.float-card-top span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: white;
  background: var(--accent);
}

.float-card-bottom {
  right: -8px;
  bottom: 45px;
  align-items: start;
  flex-direction: column;
}

.float-card-bottom small {
  color: var(--muted);
}

.float-card-bottom b {
  color: var(--accent-dark);
}

.metrics-bar {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.65);
}

.metrics-bar > div {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-left: 1px solid var(--border);
}

.metrics-bar > div:last-child {
  border-left: 0;
}

.metrics-bar strong {
  color: var(--accent);
  font-size: 25px;
}

.metrics-bar span {
  color: #6b6c68;
  font-size: 12px;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 128px 0;
}

.section-heading {
  max-width: 670px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading h2,
.process-content h2,
.audience-section h2 {
  margin: 14px 0;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.4;
  letter-spacing: -1.5px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 330px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.75);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card:hover {
  border-color: color-mix(in srgb, var(--accent) 35%, transparent);
  box-shadow: 0 24px 60px rgba(27, 24, 20, 0.08);
  transform: translateY(-6px);
}

.feature-card::after {
  content: "";
  width: 180px;
  height: 180px;
  position: absolute;
  left: -80px;
  bottom: -90px;
  border-radius: 50%;
  background: var(--soft);
}

.feature-number {
  float: left;
  color: #adaeaa;
  font: 500 12px "Estedad", sans-serif;
}

.feature-icon {
  width: 68px;
  height: 68px;
  margin: 48px 0 26px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: var(--accent-dark);
  background: var(--soft);
  font-size: 27px;
  font-weight: 900;
}

.feature-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 20px;
}

.feature-card p {
  margin: 0;
  color: #70716d;
  font-size: 13px;
  line-height: 1.9;
}

.process-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  gap: 80px;
}

.process-quote {
  min-height: 470px;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  padding: 52px;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  color: white;
  background: var(--ink);
}

.process-quote::after {
  content: "";
  width: 300px;
  height: 300px;
  position: absolute;
  left: -130px;
  bottom: -150px;
  border: 50px solid var(--accent);
  border-radius: 50%;
  opacity: 0.55;
}

.quote-mark {
  color: var(--accent);
  font: 900 100px/0.6 "Estedad", sans-serif;
}

.process-quote blockquote {
  margin: 30px 0;
  position: relative;
  z-index: 1;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.65;
}

.process-quote > span:last-child {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.process-content {
  padding: 28px 0;
}

.steps {
  margin-top: 35px;
  display: grid;
}

.step {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.step > span {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--accent-dark);
  background: var(--soft);
  font: 800 14px "Estedad", sans-serif;
}

.step h3 {
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 17px;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.audience-section {
  width: min(1180px, calc(100% - 40px));
  min-height: 310px;
  margin: 0 auto 128px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 55px 68px;
  overflow: hidden;
  border-radius: 32px;
  background: var(--soft);
}

.audience-section > div {
  max-width: 780px;
  position: relative;
  z-index: 1;
}

.audience-section h2 {
  margin-bottom: 0;
}

.audience-glyph {
  color: var(--accent);
  font-size: 150px;
  font-weight: 900;
  line-height: 1;
  opacity: 0.23;
  transform: rotate(-10deg);
}

.cta-section {
  width: min(1180px, calc(100% - 40px));
  min-height: 450px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 70px 30px;
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  color: white;
  background: var(--accent);
  text-align: center;
}

.cta-pattern {
  width: 580px;
  aspect-ratio: 1;
  position: absolute;
  top: -340px;
  left: -80px;
  border: 80px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.cta-section .eyebrow,
.cta-section h2,
.cta-section p,
.cta-section .button {
  position: relative;
  z-index: 1;
}

.cta-section .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.cta-section .eyebrow i {
  border-color: white;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.12);
}

.cta-section h2 {
  margin: 20px 0 10px;
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -2px;
}

.cta-section p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.button-light {
  color: var(--accent-dark);
  background: white;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.landing-footer {
  width: min(1180px, calc(100% - 40px));
  min-height: 190px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: var(--muted);
  font-size: 12px;
}

.landing-footer > a:last-child {
  color: var(--accent-dark);
  font-weight: 800;
}

/* Brand directory */
.directory {
  min-height: 100vh;
  padding: 0 0 30px;
  position: relative;
  overflow: hidden;
  background: #11110f;
  color: #f8f6ef;
}

.directory-glow {
  width: 600px;
  height: 600px;
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
}

.directory-glow-one {
  top: -300px;
  right: -180px;
  background: #ff5c35;
}

.directory-glow-two {
  left: -250px;
  bottom: 10%;
  background: #7657ff;
}

.directory-nav,
.directory-hero,
.brand-grid,
.directory-footer {
  width: min(1180px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
  position: relative;
  z-index: 1;
}

.directory-nav {
  height: 92px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.directory-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: white;
  font-weight: 900;
}

.directory-hero {
  padding: 105px 0 80px;
}

.directory-hero .eyebrow {
  color: #ff896d;
}

.directory-hero h1 {
  max-width: 830px;
  margin: 22px 0;
  font-size: clamp(47px, 7.8vw, 100px);
  line-height: 1.25;
  letter-spacing: -4px;
}

.directory-hero p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 15px;
  line-height: 2;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.brand-card {
  min-height: 315px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 27px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 230ms ease, border-color 230ms ease, background 230ms ease;
}

.brand-card::after {
  content: "";
  width: 220px;
  height: 220px;
  position: absolute;
  left: -110px;
  bottom: -130px;
  border-radius: 50%;
  background: var(--card-accent);
  opacity: 0.11;
  transition: transform 300ms ease, opacity 300ms ease;
}

.brand-card:hover {
  border-color: color-mix(in srgb, var(--card-accent) 65%, transparent);
  background: rgba(255, 255, 255, 0.065);
  transform: translateY(-5px);
}

.brand-card:hover::after {
  opacity: 0.24;
  transform: scale(1.35);
}

.brand-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.brand-index {
  color: rgba(255, 255, 255, 0.32);
  font: 500 12px "Estedad", sans-serif;
}

.brand-glyph {
  width: 53px;
  height: 53px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--card-accent);
  background: color-mix(in srgb, var(--card-accent) 14%, transparent);
  font-size: 20px;
  font-weight: 900;
}

.brand-card p {
  margin: 0;
  color: var(--card-accent);
  font: 500 11px/1.4 "Estedad", sans-serif;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.brand-card h2 {
  margin: 5px 0 10px;
  font-size: 33px;
}

.brand-subject {
  color: rgba(255, 255, 255, 0.47);
  font-size: 12px;
}

.brand-open {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
}

.brand-open b {
  margin-right: 8px;
  color: var(--card-accent);
  font-size: 17px;
}

.directory-footer {
  padding: 60px 0 20px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.33);
  font-size: 11px;
}

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

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 65px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy > p {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .product-stage {
    width: min(100%, 650px);
    margin-inline: auto;
  }

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

  .feature-card {
    min-height: 270px;
  }

  .feature-icon {
    margin-top: 32px;
  }

  .process-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-quote {
    min-height: 370px;
  }
}

@media (max-width: 680px) {
  .nav-shell,
  .hero-shell,
  .metrics-bar,
  .section,
  .audience-section,
  .cta-section,
  .landing-footer,
  .directory-nav,
  .directory-hero,
  .brand-grid,
  .directory-footer {
    width: min(100% - 28px, 1180px);
  }

  .nav-shell {
    height: 76px;
  }

  .nav-cta {
    padding: 10px 12px;
    font-size: 11px;
  }

  .logo-glyph {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .logo b {
    font-size: 16px;
  }

  .hero-shell {
    min-height: 0;
    padding: 58px 0 52px;
  }

  .hero-copy h1 {
    margin-top: 18px;
    font-size: 43px;
    letter-spacing: -2px;
  }

  .hero-copy > p {
    font-size: 14px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
    text-align: right;
  }

  .product-stage {
    min-height: 430px;
  }

  .dashboard-card {
    padding: 18px;
    transform: none;
  }

  .dashboard-head h2 {
    font-size: 16px;
  }

  .float-card {
    display: none;
  }

  .metrics-bar {
    grid-template-columns: 1fr;
  }

  .metrics-bar > div {
    border-bottom: 1px solid var(--border);
    border-left: 0;
  }

  .metrics-bar > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 90px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2,
  .process-content h2,
  .audience-section h2 {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .feature-card {
    min-height: 290px;
  }

  .process-quote {
    min-height: 330px;
    padding: 35px;
  }

  .process-quote blockquote {
    font-size: 26px;
  }

  .audience-section {
    min-height: 330px;
    margin-bottom: 90px;
    padding: 40px 30px;
  }

  .audience-glyph {
    display: none;
  }

  .cta-section {
    min-height: 410px;
    border-radius: 26px;
  }

  .landing-footer {
    padding: 55px 0;
    align-items: start;
    flex-direction: column;
  }

  .directory-hero {
    padding: 75px 0 55px;
  }

  .directory-hero h1 {
    font-size: 49px;
    letter-spacing: -2px;
  }

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

  .brand-card {
    min-height: 290px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
