:root {
  --aetheon-navy: #022B69;
  --aetheon-teal: #139891;
  --aetheon-gold: #F2A733;
  --aetheon-sea-green: #13A873;
  --ink: #152325;
  --muted: #58595B;
  --paper: #f8fafb;
}

html {
  min-height: 100%;
}

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at left top, rgba(153, 217, 213, 0.26), transparent 26rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 251, 0.9)),
    var(--paper);
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body::after {
  position: fixed;
  right: clamp(-7.75rem, -4.7vw, -2.75rem);
  bottom: clamp(0.5rem, 1vw, 1.2rem);
  z-index: -1;
  color: var(--aetheon-navy);
  content: "your idea";
  font-size: clamp(7.5rem, 13vw, 14rem);
  font-weight: 800;
  line-height: 0.82;
  opacity: 0.055;
  pointer-events: none;
  white-space: nowrap;
}

.site-shell {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
  min-height: calc(100vh - 36px);
}

.site-hero {
  display: flex;
  min-height: calc(100vh - 36px);
  width: min(100% - 2rem, 72rem);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 0;
  flex-direction: column;
  justify-content: space-between;
}

.site-hero__brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.7rem 0;
}

.site-hero__logo {
  width: clamp(10rem, 18vw, 15rem);
  height: auto;
}

.site-hero__content {
  max-width: 49rem;
  padding-bottom: clamp(2rem, 10vh, 7rem);
}

.site-hero__eyebrow {
  margin: 0 0 1rem;
  color: var(--aetheon-teal);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-hero h1 {
  max-width: 14ch;
  margin: 0;
  color: var(--aetheon-navy);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 1;
}

.site-hero__copy {
  max-width: 40rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.site-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.site-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1.15rem;
  border: 1px solid rgba(2, 43, 105, 0.22);
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.74);
  color: var(--aetheon-navy);
  font-weight: 700;
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.site-button:hover,
.site-button:focus {
  background: #fff;
  box-shadow: 0 0.7rem 1.6rem rgba(2, 43, 105, 0.14);
  color: var(--aetheon-navy);
  transform: translateY(-1px);
}

.site-button--primary {
  border-color: var(--aetheon-navy);
  background: var(--aetheon-navy);
  color: #fff;
}

.site-button--primary:hover,
.site-button--primary:focus {
  background: #0a3478;
  color: #fff;
}

.site-hero__footer {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  color: var(--aetheon-navy);
  font-size: 1rem;
  font-weight: 700;
}

.site-hero__footer::before {
  display: block;
  width: 4.5rem;
  height: 0.2rem;
  background: linear-gradient(90deg, var(--aetheon-gold), var(--aetheon-teal), var(--aetheon-sea-green));
  border-radius: 999px;
  content: "";
}

.site-hero__icon {
  width: 1.65rem;
  height: 1.65rem;
}

.account-page {
  display: grid;
  min-height: calc(100vh - 36px);
  width: min(100% - 2rem, 72rem);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 0;
  align-content: start;
  gap: clamp(2rem, 7vh, 5rem);
}

.account-brand img {
  width: clamp(10rem, 22vw, 15rem);
  height: auto;
}

.account-panel {
  width: min(100%, 34rem);
  padding: clamp(1.4rem, 4vw, 2rem);
  border: 1px solid rgba(2, 43, 105, 0.12);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1.3rem 3rem rgba(2, 43, 105, 0.12);
  backdrop-filter: blur(10px);
}

.account-panel--wide {
  width: min(100%, 48rem);
}

.account-eyebrow {
  margin: 0 0 0.5rem;
  color: var(--aetheon-teal);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.account-panel h1 {
  margin: 0 0 1.4rem;
  color: var(--aetheon-navy);
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 800;
  line-height: 1;
}

.account-form {
  display: grid;
  gap: 0.55rem;
}

.account-form label {
  margin-top: 0.45rem;
  color: var(--ink);
  font-weight: 700;
}

.account-form input {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(20, 33, 61, 0.2);
  border-radius: 0.35rem;
  background: #fff;
  color: var(--ink);
}

.account-form input:focus {
  border-color: var(--aetheon-teal);
  box-shadow: 0 0 0 0.18rem rgba(19, 152, 145, 0.17);
  outline: none;
}

.account-form span {
  min-height: 1rem;
  color: #b42318;
  font-size: 0.88rem;
}

.account-form .site-button {
  margin-top: 0.8rem;
}

.account-resend {
  margin: -0.25rem 0 1rem;
}

.account-resend .site-button {
  width: 100%;
}

.account-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.account-message {
  margin: 0 0 1.2rem;
  padding: 0.85rem 1rem;
  border-radius: 0.35rem;
  font-weight: 700;
}

.account-message--success {
  background: rgba(19, 152, 145, 0.14);
  color: #05645f;
}

.account-message--warning {
  background: rgba(242, 167, 51, 0.17);
  color: #7a4b00;
}

.account-message--error {
  background: rgba(180, 35, 24, 0.1);
  color: #9f1d14;
}

.account-message--info {
  background: rgba(2, 43, 105, 0.09);
  color: var(--aetheon-navy);
}

.account-confirmation {
  display: grid;
  gap: 0.9rem;
  padding: 1.1rem;
  border-radius: 0.5rem;
  background: rgba(19, 152, 145, 0.14);
  color: #05645f;
}

.account-confirmation h2 {
  margin: 0;
  color: inherit;
  font-size: 1.25rem;
}

.account-confirmation p {
  margin: 0;
}

.account-switch {
  margin: 1.25rem 0 0;
  color: var(--muted);
}

.account-switch a {
  color: var(--aetheon-navy);
  font-weight: 800;
}

.product-list {
  display: grid;
  gap: 1rem;
}

.customer-product-grid {
  display: grid;
  gap: 1rem;
}

.customer-product-section {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(2, 43, 105, 0.12);
  border-radius: 0.45rem;
  background: #fff;
}

.customer-product-section h2 {
  margin: 0;
  color: var(--aetheon-navy);
  font-size: 1.35rem;
}

.customer-product-section p {
  margin: 0;
  color: var(--muted);
}

.customer-product-section--downloads {
  border-color: rgba(19, 152, 145, 0.24);
}

.product-list article {
  padding: 1rem;
  border: 1px solid rgba(2, 43, 105, 0.12);
  border-radius: 0.45rem;
  background: #fff;
}

.product-list h3 {
  margin: 0 0 0.45rem;
  color: var(--aetheon-navy);
  font-size: 1.3rem;
}

.product-list p {
  margin: 0;
  color: var(--muted);
}

.vpn-client-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.4rem;
}

.vpn-client-row {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0.8rem;
  border: 1px solid rgba(20, 33, 61, 0.12);
  border-radius: 0.35rem;
}

.vpn-client-row legend {
  float: none;
  width: auto;
  margin: 0;
  color: var(--aetheon-navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.vpn-purchase-summary {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 0.25rem 0.75rem;
  margin: 0.85rem 0 0;
}

.vpn-purchase-summary dt {
  color: var(--muted);
  font-weight: 700;
}

.vpn-purchase-summary dd {
  margin: 0;
  color: var(--ink);
}

.download-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.download-link {
  gap: 0.65rem;
  min-height: 3.1rem;
  text-align: left;
}

.download-link img {
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  border-radius: 0.35rem;
  object-fit: contain;
}

.download-link span {
  line-height: 1.2;
}

.aetheon-site-status-bar {
  --aetheon-status-bar-background: #edf2f7;
  --aetheon-status-bar-border-color: #dbe4ec;
  flex: 0 0 auto;
  color: var(--muted);
}

.aetheon-site-status-bar .aetheon-status-bar__section--center {
  color: #6b7686;
}

.aetheon-site-status-bar .aetheon-status-bar__section--right {
  color: #31415a;
}

@media (max-width: 48rem) {
  body {
    background:
      radial-gradient(circle at left top, rgba(153, 217, 213, 0.26), transparent 20rem),
      linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 251, 0.92)),
      var(--paper);
  }

  body::after {
    right: -3.95rem;
    bottom: 0.45rem;
    font-size: 4.8rem;
  }

  .site-hero h1 {
    font-size: 3.2rem;
  }

  .site-hero__footer {
    font-size: 0.95rem;
  }

  .site-hero__footer::before {
    width: 3rem;
  }
}
