:root {
  --teal-950: #083f43;
  --teal-900: #0b575b;
  --teal-800: #116a6e;
  --teal-700: #14797a;
  --orange: #ff7b35;
  --orange-soft: #ff9a59;
  --cream: #fbf3e8;
  --white: #fffdf9;
  --ink: #18363a;
  --line: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(3, 42, 45, 0.22);
}

* { box-sizing: border-box; }

html, body { min-width: 320px; }

body {
  margin: 0;
  color: var(--white);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

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

button,
input { font: inherit; }

.site { min-height: 100vh; overflow: hidden; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.06), transparent 26%),
    linear-gradient(150deg, var(--teal-900) 0%, var(--teal-800) 58%, var(--teal-700) 100%);
}

.shape {
  position: absolute;
  z-index: -1;
  border-radius: 48% 52% 45% 55%;
  pointer-events: none;
  transform-origin: center;
}

.shape--one {
  width: 75vw;
  height: 72vw;
  max-width: 1050px;
  max-height: 950px;
  top: -37vw;
  right: -11vw;
  background: rgba(255, 255, 255, 0.055);
  transform: rotate(16deg);
}

.shape--two {
  width: 70vw;
  height: 48vw;
  max-width: 980px;
  max-height: 660px;
  left: -26vw;
  top: 18vh;
  background: rgba(6, 55, 59, 0.14);
  transform: rotate(-18deg);
}

.shape--three {
  width: 62vw;
  height: 50vw;
  max-width: 900px;
  max-height: 680px;
  right: -23vw;
  bottom: -20vh;
  background: rgba(255, 255, 255, 0.045);
  transform: rotate(-12deg);
}

.shape--four {
  width: 34vw;
  height: 29vw;
  max-width: 520px;
  max-height: 440px;
  left: 16vw;
  bottom: -15vh;
  background: rgba(255, 123, 53, 0.085);
  transform: rotate(24deg);
}

.hero__inner {
  width: min(1180px, calc(100% - 48px));
  min-height: 100vh;
  margin-inline: auto;
  padding: 42px 0 188px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.brand { width: 100%; display: flex; justify-content: center; }

.brand a {
  display: inline-flex;
  padding: 8px;
  text-decoration: none;
}

.brand__logo {
  width: min(260px, 72vw);
  height: auto;
}

.hero__content {
  width: min(920px, 100%);
  margin: clamp(20px, 8vh, 20px) auto 0
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
}

h1 {
  margin: 0;
  font-size: clamp(2.85rem, 6.1vw, 4.75rem);
  line-height: 0.99;
  letter-spacing: -0.03em;
  font-weight: 800;
}

h1 span { color: var(--orange-soft); }

.lead {
  width: min(720px, 100%);
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1.16rem, 1.95vw, 1.48rem);
  line-height: 1.52;
  font-weight: 600;
}

.domain-search {
  width: min(840px, 100%);
  margin: 34px auto 0;
  padding: 8px;
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(360px, 1.55fr);
  align-items: center;
  gap: 8px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 18px;
  background: rgba(5, 58, 61, 0.25);
  box-shadow: var(--shadow);
  backdrop-filter: blur(13px);
}

.domain-search__copy {
  padding: 14px 17px;
}

.domain-search__copy p {
  margin: 0 0 3px;
  font-size: 0.96rem;
  font-weight: 800;
}

.domain-search__copy span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.4;
}

.domain-search__form {
  min-height: 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.domain-search__form input {
  min-width: 0;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 12px;
  padding: 15px 17px;
  outline: none;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.domain-search__form input::placeholder { color: rgba(255, 255, 255, 0.46); }

.domain-search__form input:focus {
  border-color: rgba(255, 154, 89, 0.72);
  background: rgba(255, 255, 255, 0.10);
}

.domain-search__form button {
  min-width: 138px;
  border: 0;
  border-radius: 12px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
  color: #fff;
  background: var(--orange);
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(255, 123, 53, 0.22);
  transition: transform 180ms ease, background-color 180ms ease;
}

.domain-search__form button:hover {
  background: #ff8a4d;
  transform: translateY(-1px);
}

.actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button {
  min-height: 52px;
  padding: 14px 21px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button--primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 16px 36px rgba(255, 123, 53, 0.24);
}

.button--primary:hover { background: #ff8a4d; }

.button--secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(9px);
}

.button--secondary:hover { background: rgba(255, 255, 255, 0.12); }

.service-links {
  width: min(1000px, 100%);
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 102px;
  position: relative;
  padding: 18px 44px 18px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(6, 55, 59, 0.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 123, 53, 0.5);
  background: rgba(6, 55, 59, 0.28);
}

.service-card--static { cursor: default; }
.service-card--static:hover { transform: none; }

.service-card__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  color: var(--orange);
  background: rgba(255, 123, 53, 0.12);
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.service-card small {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  line-height: 1.38;
}

.service-card__arrow {
  position: absolute;
  top: 17px;
  right: 17px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  transition: color 180ms ease, transform 180ms ease;
}

.service-card:hover .service-card__arrow {
  color: var(--orange-soft);
  transform: translate(2px, -2px);
}

.hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
  line-height: 0;
}

.hero__wave svg {
  display: block;
  width: 100%;
  height: clamp(76px, 10vw, 130px);
}

.hero__wave path { fill: var(--cream); }

.footer {
  position: relative;
  z-index: 3;
  color: var(--ink);
  background: var(--cream);
}

.footer__inner {
  width: min(1000px, calc(100% - 48px));
  margin: 0 auto;
  padding: 25px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-size: 0.82rem;
}

.footer__inner > div:first-child {
  display: grid;
  gap: 4px;
}

.footer__inner strong { font-size: 0.88rem; }

.footer__inner span { color: rgba(24, 54, 58, 0.72); }

.footer__contact {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer__contact a { color: var(--ink); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 920px) {
  .service-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .domain-search { grid-template-columns: 1fr; }
  .domain-search__copy { padding-bottom: 8px; }
}

@media (max-width: 680px) {
  .hero__inner {
    width: min(100% - 28px, 1180px);
    padding-top: 26px;
    padding-bottom: 100px;
  }

  .brand__logo { width: min(290px, 78vw); }

  .hero__content { margin-top: 20px; }

  h1 {
    font-size: clamp(2.45rem, 12vw, 2.2rem);
    line-height: 1.01;
  }

  .lead { font-size: 1.05rem; }

  .domain-search { padding: 9px; border-radius: 16px; }

  .domain-search__form {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .domain-search__form button { min-height: 50px; }

  .actions { margin-top: 16px; }

  .button { width: 100%; }

  .service-links {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .service-card { min-height: 92px; }

  .footer__inner {
    width: min(100% - 28px, 1000px);
    padding-top: 20px;
    padding-bottom: 24px;
    text-align: center;
    align-items: center;
    flex-direction: column;
  }

  .footer__contact { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .button,
  .service-card,
  .service-card__arrow,
  .domain-search__form button {
    transition: none;
  }
}
