:root {
  --blue: #081f5c;
  --blue-2: #123a8f;
  --orange: #ff7417;
  --orange-hover: #ff5d15;
  --amber: #ffa31a;
  --orange-dark: #ff4e12;
  --bg: #ffffff;
  --bg-soft: #f7f9fc;
  --border: #e6edf5;
  --text: #081f5c;
  --muted: #66748b;
  --faint: #9aa8be;
  --success: #22c55e;
  --error: #ef4444;
  --shadow: rgba(8, 31, 92, 0.08);
  --shadow-md: rgba(8, 31, 92, 0.14);
  --shadow-hover: rgba(8, 31, 92, 0.2);
  --gradient: linear-gradient(135deg, #ffa31a 0%, #ff7417 55%, #ff4e12 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

img,
svg {
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: white;
  background: #030713;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-announcement {
  background: linear-gradient(90deg, #081f5c 0%, #123a8f 72%, #081f5c 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.top-announcement-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.86rem;
  font-weight: 800;
}

.top-announcement a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.top-announcement svg {
  width: 16px;
  height: 16px;
}

.top-links {
  display: flex;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
}

.nav-shell {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: white;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: var(--gradient);
  box-shadow: 0 14px 30px rgba(255, 116, 23, 0.28);
}

.brand-text {
  font-size: 1.18rem;
  letter-spacing: 0;
}

.brand-text span {
  color: var(--orange);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  font-size: 0.92rem;
}

.site-nav a:hover,
.site-nav a.active,
.site-nav a[aria-current="page"] {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.account-link {
  color: white !important;
  background: var(--gradient) !important;
  box-shadow: 0 12px 26px rgba(255, 116, 23, 0.25);
}

.account-link:hover {
  background: linear-gradient(135deg, #ff9b16 0%, #ff5d15 55%, #ff4310 100%) !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  isolation: isolate;
  color: white;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 163, 26, 0.2), transparent 22%),
    linear-gradient(180deg, #081f5c 0%, #061841 20%, #081225 46%, #060b16 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(8, 31, 92, 0.9) 0%, rgba(6, 18, 42, 0.76) 34%, rgba(6, 11, 22, 0.22) 68%, rgba(6, 11, 22, 0.14) 100%),
    url("../img/hero-cloud.webp") center bottom / cover no-repeat;
  opacity: 0.94;
}

.hero-scale {
  position: absolute;
  top: 34px;
  right: max(24px, calc((100vw - 1180px) / 2 + 4px));
  bottom: 92px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: rgba(154, 168, 190, 0.62);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.7rem;
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(6, 11, 22, 0), #ffffff 96%);
}

.hero-layout {
  min-height: 560px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 88px 0 60px;
  text-align: center;
}

.hero-copy {
  max-width: 900px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 99px;
  background: var(--gradient);
}

.eyebrow.light {
  color: #fff;
}

.eyebrow.light::before {
  background: rgba(255, 255, 255, 0.85);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin: 0 auto 20px;
  font-size: clamp(2.75rem, 5.2vw, 4.85rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
}

.hero-copy p {
  max-width: 720px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.hero-actions,
.cta-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 18px 34px rgba(255, 116, 23, 0.27);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff9b16 0%, #ff5d15 55%, #ff4310 100%);
}

.btn-secondary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 16px 32px rgba(8, 31, 92, 0.24);
}

.btn-secondary:hover {
  background: var(--blue-2);
}

.hero-outline {
  color: white;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.hero-outline:hover {
  background: rgba(255, 255, 255, 0.13);
}

.btn-plan {
  width: 100%;
  color: var(--blue);
  background: var(--bg-soft);
  border: 1px solid var(--border);
}

.hero-panel,
.plan-card,
.panel-form,
.account-card,
.support-options a,
.domain-grid article {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px var(--shadow);
}

.hero-panel {
  padding: 24px;
  backdrop-filter: blur(16px);
}

.hero h1 {
  color: white;
}

.hero .eyebrow {
  color: #ffa31a;
}

.hero-trust {
  padding-top: 52px;
  font-weight: 800;
}

.hero-partners {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 34px;
  margin-top: 28px;
}

.hero-partners span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 900;
}

.hero-partners svg {
  color: #ffa31a;
}

.hero-service-cards {
  position: absolute;
  left: 50%;
  bottom: -78px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  transform: translateX(-50%);
}

.hero-service-cards article {
  min-height: 156px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(3, 7, 19, 0.82);
  box-shadow: 0 22px 55px rgba(3, 7, 19, 0.34);
  backdrop-filter: blur(18px);
}

.hero-service-cards svg {
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  color: #ffa31a;
}

.hero-service-cards strong {
  display: block;
  margin-bottom: 6px;
  color: white;
  font-size: 1.08rem;
}

.hero-service-cards span {
  color: rgba(255, 255, 255, 0.68);
}

.status-row,
.mini-grid span,
.feature-list div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-row {
  margin-bottom: 26px;
  color: var(--muted);
  font-weight: 800;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.12);
}

.metric {
  padding: 22px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--blue);
  color: white;
}

.metric strong {
  display: block;
  font-size: 3rem;
  line-height: 1;
}

.metric span {
  color: rgba(255, 255, 255, 0.76);
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mini-grid span {
  min-height: 54px;
  padding: 10px;
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 800;
}

.trust-strip {
  padding-top: 88px;
  border-block: 1px solid var(--border);
  background: #fff;
}

.trust-grid,
.domain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px 0;
}

.trust-grid div {
  display: grid;
  gap: 3px;
}

.trust-grid strong {
  font-size: 1.25rem;
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 92px 0;
}

.section.alt,
.split-section {
  background: var(--bg-soft);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
  text-align: center;
}

.section-heading.left {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

.section-heading p {
  margin-bottom: 0;
  font-size: 1.04rem;
}

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

.plans-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 26px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 116, 23, 0.36);
  box-shadow: 0 24px 62px var(--shadow-hover);
}

.plan-card.featured {
  border-color: rgba(255, 116, 23, 0.45);
  box-shadow: 0 22px 58px rgba(255, 116, 23, 0.14);
}

.plan-badge {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  background: var(--gradient);
  font-size: 0.78rem;
  font-weight: 800;
}

.price {
  display: flex;
  align-items: end;
  gap: 7px;
  margin: 12px 0 18px;
}

.price strong {
  font-size: 2rem;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-weight: 700;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.plan-card li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-size: 0.94rem;
}

.plan-card li svg {
  flex: 0 0 auto;
  width: 18px;
  color: var(--success);
}

.plan-card .btn {
  margin-top: auto;
}

.split-layout,
.form-layout,
.account-layout,
.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 44px;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list div {
  min-height: 72px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  color: var(--blue);
  font-weight: 800;
  box-shadow: 0 12px 30px var(--shadow);
}

.feature-list svg {
  color: var(--orange);
}

.cta-band {
  padding: 72px 0;
  color: white;
  background: var(--blue);
}

.cta-band h2 {
  color: white;
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.cta-layout {
  grid-template-columns: minmax(0, 1fr) auto;
}

.page-hero {
  padding: 118px 0 76px;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 116, 23, 0.13), transparent 28%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero.compact {
  padding: 96px 0 68px;
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.page-hero p {
  max-width: 700px;
  font-size: 1.08rem;
}

.domain-search {
  text-align: center;
}

.domain-search h1,
.domain-search p {
  margin-left: auto;
  margin-right: auto;
}

.search-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  max-width: 720px;
  margin: 32px auto 0;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 50px var(--shadow);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--blue);
  background: #fff;
  outline: none;
}

input,
select {
  min-height: 50px;
  padding: 0 14px;
}

textarea {
  padding: 12px 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 116, 23, 0.65);
  box-shadow: 0 0 0 4px rgba(255, 116, 23, 0.12);
}

.search-box input {
  border: 0;
  font-weight: 800;
}

.domain-grid article {
  padding: 22px;
}

.domain-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.9rem;
}

.domain-grid span {
  color: var(--muted);
}

.form-layout {
  align-items: start;
}

.support-options {
  display: grid;
  gap: 14px;
}

.support-options a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 4px 14px;
  padding: 20px;
}

.support-options svg {
  grid-row: span 2;
  color: var(--orange);
}

.support-options span {
  font-weight: 900;
}

.support-options small {
  color: var(--muted);
}

.panel-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.panel-form label {
  display: grid;
  gap: 7px;
  color: var(--blue);
  font-weight: 800;
}

.notice {
  padding: 13px 14px;
  border-radius: 12px;
  font-weight: 800;
}

.notice.success {
  color: #126b35;
  background: rgba(34, 197, 94, 0.12);
}

.notice.error {
  color: #9d1c1c;
  background: rgba(239, 68, 68, 0.12);
}

.account-layout {
  align-items: stretch;
}

.account-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  color: white;
  background:
    linear-gradient(135deg, rgba(255, 116, 23, 0.92), rgba(255, 78, 18, 0.9)),
    var(--orange);
}

.account-card svg {
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
}

.account-card h2 {
  font-size: 2.1rem;
}

.account-card p {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  color: white;
  background: var(--blue);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr;
  gap: 40px;
  padding: 58px 0 34px;
}

.footer-brand .brand-text,
.footer-brand .brand-text span {
  color: white;
}

.site-footer p {
  max-width: 470px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h3 {
  margin-bottom: 14px;
  color: white;
  font-size: 1rem;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom span {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 1020px) {
  .hero-layout,
  .split-layout,
  .form-layout,
  .account-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 150px;
  }

  .hero-service-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav-shell {
    min-height: 68px;
  }

  .top-announcement-inner {
    min-height: 38px;
    justify-content: center;
    text-align: center;
  }

  .top-links {
    display: none;
  }

  .brand-text {
    font-size: 1rem;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    inset: calc(100% + 10px) 0 auto auto;
    width: min(320px, calc(100vw - 28px));
    display: none;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: #030713;
    box-shadow: 0 22px 50px rgba(3, 7, 19, 0.34);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    justify-content: flex-start;
    border-radius: 12px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(8, 31, 92, 0.92) 0%, rgba(6, 18, 42, 0.8) 48%, rgba(6, 11, 22, 0.22) 100%),
      url("../img/hero-cloud.webp") center bottom / cover no-repeat;
  }

  .hero-layout {
    padding: 54px 0 46px;
  }

  .hero-scale {
    display: none;
  }

  h1 {
    font-size: clamp(2.45rem, 14vw, 4.1rem);
  }

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

  .btn {
    width: 100%;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-trust {
    padding-top: 32px;
  }

  .hero-partners {
    gap: 14px 20px;
  }

  .hero-service-cards {
    position: relative;
    left: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    width: min(100% - 28px, 480px);
    margin: 0 auto -32px;
    transform: none;
  }

  .hero-service-cards article {
    min-height: auto;
    padding: 18px;
  }

  .trust-strip {
    padding-top: 52px;
  }

  .trust-grid,
  .domain-grid,
  .plans-grid,
  .plans-grid.two,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading {
    text-align: left;
  }

  .search-box {
    grid-template-columns: 1fr;
  }

  .cta-layout {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}
