:root {
    --aeth-bg: #05070b;
    --aeth-bg-soft: #0f172a;
    --aeth-ink: #0f172a;
    --aeth-muted: #64748b;
    --aeth-line: #e2e8f0;
    --aeth-white: #ffffff;
    --aeth-blue: #2563eb;
    --aeth-copper: #bf8156;
    --aeth-copper-soft: #f3dfd0;
    --aeth-surface: #f8fafc;
  }

  html {
    scroll-behavior: smooth;
  }

  .aeth-page,
  .aeth-page * {
    box-sizing: border-box;
  }

  .aeth-page {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    color: var(--aeth-ink);
    background: var(--aeth-white);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
  }

  .aeth-page a {
    color: inherit;
    text-decoration: none;
  }

  .aeth-wrap {
    width: min(1320px, calc(100% - 48px));
    margin: 0 auto;
  }

  .aeth-header .aeth-wrap,
  .aeth-hero .aeth-wrap {
    width: min(1680px, calc(100% - 112px));
  }

  .aeth-header {
    position: absolute;
    z-index: 20;
    top: 14px;
    left: 0;
    width: 100%;
    padding: 0;
    color: var(--aeth-white);
  }

  .aeth-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 7px 10px 7px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(5, 7, 11, 0.58), rgba(5, 7, 11, 0.32));
    box-shadow: 0 18px 60px rgba(0,0,0,0.18);
    backdrop-filter: blur(20px);
  }

  .aeth-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    color: var(--aeth-white);
  }

  .aeth-logo img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
  }

  .aeth-logo-text {
    display: grid;
    gap: 2px;
    line-height: 1;
  }

  .aeth-logo-text strong {
    color: var(--aeth-white);
    font-size: 14px;
    font-weight: 760;
    letter-spacing: 0.04em;
  }

  .aeth-logo-text span {
    color: rgba(255,255,255,0.58);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0;
  }

  .aeth-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 13px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.76);
  }

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

  .aeth-nav a:hover {
    color: var(--aeth-white);
  }

  .aeth-nav .aeth-nav-cta {
    color: var(--aeth-white);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.07);
  }

  .aeth-hero {
    position: relative;
    color: var(--aeth-white);
    padding: 0 0 70px;
    background: #f8fafc;
  }

  .aeth-hero-stage {
    position: relative;
    width: 100vw;
    min-height: min(740px, calc(100svh - 68px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 112px 0 46px;
    border-radius: 0 0 34px 34px;
    background:
      linear-gradient(90deg, rgba(5, 7, 11, 0.98) 0%, rgba(5, 7, 11, 0.88) 42%, rgba(5, 7, 11, 0.22) 76%, rgba(5, 7, 11, 0.44) 100%),
      url("https://aetherialabs.io/wp-content/uploads/2026/06/aetheria-hero-ecosystem-1920x1080-1.webp") center right / cover no-repeat;
    box-shadow: 0 42px 120px rgba(15, 23, 42, 0.18);
  }

  .aeth-hero-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(circle at 76% 50%, rgba(37,99,235,0.30), transparent 25%),
      radial-gradient(circle at 18% 24%, rgba(191,129,86,0.20), transparent 28%),
      linear-gradient(180deg, rgba(255,255,255,0.04), transparent 34%, rgba(0,0,0,0.24));
    mix-blend-mode: screen;
  }

  .aeth-hero-stage::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  }

  .aeth-hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
  }

  .aeth-hero-side {
    justify-self: end;
    width: min(390px, 100%);
    padding: 22px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 24px;
    background:
      radial-gradient(circle at 86% 18%, rgba(37,99,235,0.25), transparent 34%),
      linear-gradient(180deg, rgba(5,7,11,0.72), rgba(5,7,11,0.44));
    box-shadow: 0 34px 90px rgba(0,0,0,0.28);
    backdrop-filter: blur(18px);
  }

  .aeth-hero-title::before {
    content: "";
    display: block;
    width: 64px;
    height: 2px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--aeth-copper), rgba(191,129,86,0));
  }

  .aeth-eyebrow {
    margin: 0 0 16px;
    color: #93c5fd;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .aeth-hero h1 {
    max-width: 980px;
    margin: 0;
    font-size: clamp(48px, 4.2vw, 78px);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: 0;
    text-wrap: balance;
  }

  .aeth-hero-lead {
    max-width: 680px;
    margin: 22px 0 0;
    color: rgba(255,255,255,0.82);
    font-size: 18px;
    line-height: 1.48;
    text-shadow: 0 1px 18px rgba(0,0,0,0.28);
  }

  .aeth-hero-note {
    margin: 12px 0 0;
    color: rgba(255,255,255,0.56);
    font-size: 13px;
    line-height: 1.38;
  }

  .aeth-side-label {
    margin: 0 0 16px;
    color: #93c5fd;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.4;
    text-transform: uppercase;
  }

  .aeth-side-metric {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.14);
  }

  .aeth-side-metric strong {
    display: block;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.16;
    font-weight: 780;
    letter-spacing: 0;
  }

  .aeth-side-metric span {
    display: block;
    margin-top: 10px;
    color: rgba(255,255,255,0.72);
    font-size: 14px;
    line-height: 1.42;
  }

  .aeth-side-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
  }

  .aeth-side-stack span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: rgba(255,255,255,0.84);
    background: rgba(255,255,255,0.06);
    font-size: 12px;
    font-weight: 800;
  }

  .aeth-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
  }

  .aeth-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 10px;
    padding: 12px 17px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 12px 34px rgba(0,0,0,0.12);
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  }

  .aeth-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  }

  .aeth-button-primary {
    color: var(--aeth-white);
    background: var(--aeth-blue);
  }

  .aeth-button-primary:hover {
    background: #1d4ed8;
  }

  .aeth-button-ghost {
    color: var(--aeth-white);
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.06);
  }

  .aeth-button-light {
    color: var(--aeth-ink);
    border: 1px solid var(--aeth-line);
    background: var(--aeth-white);
  }

  .aeth-proof {
    position: relative;
    z-index: 3;
    width: min(1510px, 100%);
    margin-top: 38px;
    display: grid;
    grid-template-columns: 1.45fr repeat(4, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(226,232,240,0.72);
    border-radius: 22px;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 26px 76px rgba(15,23,42,0.13);
    backdrop-filter: blur(18px);
  }

  .aeth-proof-head {
    padding: 15px 18px;
    border-right: 1px solid rgba(226,232,240,0.72);
    background:
      radial-gradient(circle at 80% 20%, rgba(191,129,86,0.12), transparent 42%),
      #ffffff;
  }

  .aeth-proof-head span {
    display: block;
    margin-bottom: 7px;
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .aeth-proof-head strong {
    display: block;
    color: var(--aeth-ink);
    font-size: 15px;
    line-height: 1.25;
  }

  .aeth-proof-item {
    padding: 15px 18px;
    border-right: 1px solid rgba(226,232,240,0.72);
    background: #ffffff;
  }

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

  .aeth-proof-k {
    margin: 0 0 6px;
    color: var(--aeth-copper);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
  }

  .aeth-proof-v {
    margin: 0;
    color: var(--aeth-ink);
    font-size: 14px;
    line-height: 1.32;
    font-weight: 700;
  }

  @media (min-width: 1440px) {
    .aeth-wrap {
      width: min(1360px, calc(100% - 72px));
    }

    .aeth-header .aeth-wrap,
    .aeth-hero .aeth-wrap {
      width: min(1680px, calc(100% - 128px));
    }
  }

  .aeth-section {
    padding: 88px 0;
    background: var(--aeth-white);
  }

  .aeth-section-soft {
    background:
      radial-gradient(circle at 50% 0%, rgba(37,99,235,0.055), transparent 34%),
      linear-gradient(180deg, #f8fafc, #ffffff 72%);
  }

  .aeth-section-dark {
    color: var(--aeth-white);
    padding: 62px 0;
    background:
      radial-gradient(circle at 72% 46%, rgba(37,99,235,0.14), transparent 26%),
      linear-gradient(180deg, #05070b, #080d16);
  }

  .aeth-section-dark + .aeth-section {
    border-top: 1px solid rgba(15,23,42,0.06);
  }

  .aeth-split {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: 66px;
    align-items: center;
  }

  .aeth-section-kicker {
    margin: 0 0 14px;
    color: var(--aeth-blue);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
  }

  .aeth-section-kicker::after {
    content: "";
    display: block;
    width: 34px;
    height: 2px;
    margin-top: 12px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.38;
  }

  .aeth-center .aeth-section-kicker::after {
    margin-left: auto;
    margin-right: auto;
  }

  .aeth-section-dark .aeth-section-kicker {
    color: #93c5fd;
  }

  .aeth-heading {
    margin: 0;
    font-size: clamp(40px, 3.7vw, 58px);
    line-height: 1.02;
    font-weight: 780;
    letter-spacing: 0;
    text-wrap: balance;
  }

  .aeth-text {
    margin: 18px 0 0;
    color: var(--aeth-muted);
    font-size: 17px;
    line-height: 1.54;
  }

  .aeth-section-dark .aeth-text {
    color: rgba(255,255,255,0.70);
  }

  .aeth-media {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15,23,42,0.10);
    border-radius: 16px;
    background: #eef2f7;
    box-shadow: 0 42px 120px rgba(15,23,42,0.18);
  }

  .aeth-section-dark .aeth-media {
    border-color: rgba(255,255,255,0.12);
    background: #0b1220;
    box-shadow: 0 24px 80px rgba(0,0,0,0.30);
  }

  .aeth-media img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.01);
  }

  .aeth-manifesto {
    margin-top: 22px;
    display: grid;
    gap: 10px;
  }

  .aeth-line-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 15px 16px;
    border: 1px solid var(--aeth-line);
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    box-shadow: 0 10px 34px rgba(15,23,42,0.035);
  }

  .aeth-line-item strong {
    min-width: 118px;
    color: var(--aeth-ink);
    font-size: 15px;
  }

  .aeth-line-item span {
    color: var(--aeth-muted);
    font-size: 15px;
    line-height: 1.48;
  }

  .aeth-center {
    max-width: 850px;
    margin: 0 auto 38px;
    text-align: center;
  }

  .aeth-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .aeth-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .aeth-tile {
    min-height: 100%;
    padding: 24px;
    border: 1px solid var(--aeth-line);
    border-radius: 16px;
    background:
      linear-gradient(180deg, #ffffff, #fbfdff);
    box-shadow: 0 18px 60px rgba(15,23,42,0.05);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  }

  .aeth-tile::before {
    content: "";
    display: block;
    width: 42px;
    height: 2px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--aeth-copper), rgba(191,129,86,0));
  }

  .aeth-tile:hover {
    transform: translateY(-3px);
    border-color: rgba(37,99,235,0.24);
    box-shadow: 0 24px 70px rgba(15,23,42,0.10);
  }

  .aeth-tile-index {
    margin: 0 0 12px;
    color: var(--aeth-copper);
    font-size: 13px;
    font-weight: 800;
  }

  .aeth-tile h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.16;
    font-weight: 780;
    letter-spacing: 0;
  }

  .aeth-tile p {
    margin: 12px 0 0;
    color: var(--aeth-muted);
    font-size: 15px;
    line-height: 1.48;
  }

  .aeth-system {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 0.92fr);
    gap: 38px;
    align-items: center;
  }

  .aeth-modules {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .aeth-module {
    min-height: 68px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 10px 11px;
    background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035));
  }

  .aeth-module strong {
    display: block;
    margin-bottom: 4px;
    color: var(--aeth-white);
    font-size: 14px;
  }

  .aeth-module span {
    color: rgba(255,255,255,0.62);
    font-size: 12px;
    line-height: 1.28;
  }

  .aeth-section-dark .aeth-media {
    max-width: 520px;
    justify-self: end;
  }

  .aeth-method {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border: 1px solid var(--aeth-line);
    border-radius: 10px;
    overflow: hidden;
    background: var(--aeth-white);
    box-shadow: 0 26px 80px rgba(15,23,42,0.08);
  }

  .aeth-step {
    padding: 24px 22px;
    border-right: 1px solid var(--aeth-line);
    background: linear-gradient(180deg, rgba(248,250,252,0.82), #ffffff);
  }

  .aeth-step:last-child {
    border-right: 0;
  }

  .aeth-step b {
    display: block;
    margin-bottom: 12px;
    color: var(--aeth-copper);
    font-size: 13px;
  }

  .aeth-step h3 {
    margin: 0;
    font-size: 21px;
    line-height: 1.2;
  }

  .aeth-step p {
    margin: 11px 0 0;
    color: var(--aeth-muted);
    font-size: 15px;
    line-height: 1.5;
  }

  .aeth-output {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
    align-items: start;
  }

  .aeth-output-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .aeth-output-item {
    min-height: 56px;
    display: flex;
    align-items: center;
    border: 1px solid var(--aeth-line);
    border-radius: 8px;
    padding: 12px 15px;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    color: #334155;
    font-size: 15px;
    line-height: 1.42;
    box-shadow: 0 10px 34px rgba(15,23,42,0.035);
    transition: transform 180ms ease, border-color 180ms ease;
  }

  .aeth-output-item:hover {
    transform: translateY(-2px);
    border-color: rgba(37,99,235,0.24);
  }

  .aeth-signal {
    margin-top: 34px;
    padding: 26px 28px;
    border: 1px solid rgba(15,23,42,0.10);
    border-radius: 16px;
    background:
      radial-gradient(circle at 85% 40%, rgba(37,99,235,0.26), transparent 36%),
      #0f172a;
    color: var(--aeth-white);
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 22px;
    align-items: center;
    overflow: hidden;
    position: relative;
  }

  .aeth-signal::after {
    content: "";
    position: absolute;
    inset: -30% -10% auto auto;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(37,99,235,0.24), transparent 62%);
  }

  .aeth-signal strong {
    position: relative;
    z-index: 1;
    font-size: 27px;
    line-height: 1.16;
    font-weight: 760;
  }

  .aeth-signal p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255,255,255,0.68);
    font-size: 16px;
    line-height: 1.5;
  }

  .aeth-section-blog {
    background:
      radial-gradient(circle at 16% 0%, rgba(191,129,86,0.08), transparent 28%),
      linear-gradient(180deg, #ffffff, #f8fafc 78%);
  }

  .aeth-blog-headline {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 26px;
    align-items: end;
    margin-bottom: 28px;
  }

  .aeth-blog-headline p:not(.aeth-section-kicker) {
    max-width: 680px;
    margin: 12px 0 0;
    color: var(--aeth-muted);
    font-size: 16px;
    line-height: 1.5;
  }

  .aeth-blog-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--aeth-line);
    border-radius: 10px;
    color: var(--aeth-ink);
    background: #ffffff;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 14px 44px rgba(15,23,42,0.055);
    transition: transform 180ms ease, border-color 180ms ease;
  }

  .aeth-blog-all:hover {
    transform: translateY(-2px);
    border-color: rgba(37,99,235,0.28);
  }

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

  .aeth-blog-card {
    min-height: 100%;
    overflow: hidden;
    border: 1px solid rgba(226,232,240,0.92);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 58px rgba(15,23,42,0.065);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  }

  .aeth-blog-card:hover {
    transform: translateY(-3px);
    border-color: rgba(37,99,235,0.22);
    box-shadow: 0 26px 72px rgba(15,23,42,0.11);
  }

  .aeth-blog-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1.46 / 1;
    overflow: hidden;
    color: rgba(255,255,255,0.72);
    background:
      radial-gradient(circle at 70% 34%, rgba(37,99,235,0.28), transparent 32%),
      linear-gradient(135deg, #05070b, #101827);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .aeth-blog-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 260ms ease;
  }

  .aeth-blog-card:hover .aeth-blog-thumb img {
    transform: scale(1.04);
  }

  .aeth-blog-card-body {
    padding: 18px;
  }

  .aeth-blog-date {
    margin: 0 0 9px;
    color: var(--aeth-copper);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .aeth-blog-card h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.17;
    letter-spacing: 0;
  }

  .aeth-blog-card h3 a {
    color: var(--aeth-ink);
  }

  .aeth-blog-card-body p:not(.aeth-blog-date) {
    margin: 10px 0 0;
    color: var(--aeth-muted);
    font-size: 14px;
    line-height: 1.44;
  }

  .aeth-blog-empty {
    padding: 28px;
    border: 1px dashed #cbd5e1;
    border-radius: 18px;
    background: #ffffff;
    color: var(--aeth-muted);
  }

  .aeth-blog-empty strong {
    display: block;
    margin-bottom: 8px;
    color: var(--aeth-ink);
    font-size: 18px;
  }

  .aeth-cta {
    position: relative;
    overflow: hidden;
    color: var(--aeth-white);
    padding: 96px 0;
    background:
      radial-gradient(circle at 70% 50%, rgba(37,99,235,0.22), transparent 26%),
      linear-gradient(90deg, rgba(5,7,11,0.96), rgba(5,7,11,0.70)),
      url("https://aetherialabs.io/wp-content/uploads/2026/06/aetheria-hero-ecosystem-1920x1080-1.webp") center / cover no-repeat;
  }

  .aeth-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), transparent 42%, rgba(0,0,0,0.22));
  }

  .aeth-cta .aeth-wrap {
    position: relative;
    z-index: 1;
  }

  .aeth-cta h2 {
    max-width: 880px;
    margin: 0;
    font-size: clamp(40px, 4.3vw, 64px);
    line-height: 1.02;
    font-weight: 780;
    letter-spacing: 0;
  }

  .aeth-cta p {
    max-width: 650px;
    margin: 20px 0 0;
    color: rgba(255,255,255,0.74);
    font-size: 18px;
    line-height: 1.52;
  }

  .aeth-footer {
    padding: 28px 0;
    color: rgba(255,255,255,0.68);
    background: var(--aeth-bg);
    border-top: 1px solid rgba(255,255,255,0.10);
  }

  .aeth-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    font-size: 14px;
  }

  .aeth-footer img {
    width: 112px;
    height: auto;
    display: block;
  }

  .aeth-reveal {
    opacity: 1;
    transform: none;
  }

  .aeth-js .aeth-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 700ms ease, transform 700ms ease;
  }

  .aeth-js .aeth-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .aeth-float {
    animation: aethFloat 8s ease-in-out infinite;
  }

  .aeth-shimmer {
    position: relative;
  }

  .aeth-shimmer::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.14) 44%, transparent 58%);
    transform: translateX(-120%);
    animation: aethShimmer 8s ease-in-out infinite;
  }

  @keyframes aethFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  @keyframes aethShimmer {
    0%, 58% { transform: translateX(-120%); }
    78%, 100% { transform: translateX(120%); }
  }

  @media (max-width: 1024px) {
    .aeth-hero-content {
      max-width: 760px;
    }

    .aeth-hero-lead {
      max-width: 680px;
    }

    .aeth-hero h1 {
      font-size: 58px;
      line-height: 0.98;
    }

    .aeth-heading,
    .aeth-cta h2 {
      font-size: 44px;
    }

    .aeth-split,
    .aeth-system,
    .aeth-output,
    .aeth-blog-headline {
      grid-template-columns: 1fr;
      gap: 44px;
    }



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

    .aeth-proof-head {
      grid-column: 1 / -1;
      border-right: 0;
      border-bottom: 1px solid rgba(226,232,240,0.72);
    }

    .aeth-proof-item:nth-child(3),
    .aeth-proof-item:nth-child(5) {
      border-right: 0;
    }

    .aeth-proof-item:nth-child(2),
    .aeth-proof-item:nth-child(3) {
      border-bottom: 1px solid rgba(226,232,240,0.72);
    }

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

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

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

    .aeth-section-dark .aeth-media {
      max-width: 100%;
      justify-self: stretch;
    }

    .aeth-step:nth-child(2) {
      border-right: 0;
    }

    .aeth-step:nth-child(1),
    .aeth-step:nth-child(2) {
      border-bottom: 1px solid var(--aeth-line);
    }
  }

  @media (max-width: 768px) {
    .aeth-wrap {
      width: min(100% - 30px, 1180px);
    }

    .aeth-header .aeth-wrap,
    .aeth-hero .aeth-wrap {
      width: min(100% - 30px, 1180px);
    }

    .aeth-header {
      top: 12px;
      padding: 0;
    }

    .aeth-header-inner {
      align-items: center;
      padding: 10px 11px 10px 13px;
    }

    .aeth-logo img {
      width: 32px;
      height: 32px;
    }

    .aeth-logo-text strong {
      font-size: 14px;
    }

    .aeth-logo-text span {
      font-size: 10px;
    }

    .aeth-nav {
      justify-content: flex-end;
      flex-wrap: wrap;
      gap: 10px;
      font-size: 13px;
    }

    .aeth-nav a:not(.aeth-nav-cta):nth-child(-n+3) {
      display: none;
    }

    .aeth-hero {
      padding: 0 0 44px;
      background: #f8fafc;
    }

    .aeth-hero-stage {
      width: min(100vw - 20px, 760px);
      min-height: 86svh;
      padding: 104px 0 38px;
      border-radius: 0 0 24px 24px;
      background:
        linear-gradient(180deg, rgba(5, 7, 11, 0.96) 0%, rgba(5, 7, 11, 0.86) 52%, rgba(5, 7, 11, 0.64) 100%),
        url("https://aetherialabs.io/wp-content/uploads/2026/06/aetheria-hero-ecosystem-mobile-1080x1350-1.webp") center / cover no-repeat;
    }

    .aeth-hero h1 {
      font-size: 38px;
      line-height: 1;
    }

    .aeth-hero-lead {
      font-size: 16px;
      line-height: 1.48;
    }

    .aeth-proof,
    .aeth-grid-3,
    .aeth-grid-2,
    .aeth-signal,
    .aeth-output-list {
      grid-template-columns: 1fr;
    }

    .aeth-proof {
      margin-top: 28px;
    }

    .aeth-proof-head {
      grid-column: auto;
      border-bottom: 0;
    }

    .aeth-proof-head,
    .aeth-proof-item,
    .aeth-proof-item:nth-child(2),
    .aeth-proof-item:nth-child(3),
    .aeth-proof-item:nth-child(5) {
      border-right: 0;
      border-bottom: 1px solid rgba(226,232,240,0.72);
    }

    .aeth-proof-item:last-child {
      border-bottom: 0;
    }

    .aeth-blog-headline {
      gap: 20px;
      margin-bottom: 26px;
    }

    .aeth-blog-all {
      width: fit-content;
    }

    .aeth-blog-grid {
      grid-template-columns: 1fr;
    }

    .aeth-section {
      padding: 62px 0;
    }

    .aeth-heading,
    .aeth-cta h2 {
      font-size: 37px;
    }

    .aeth-text {
      font-size: 16px;
    }

    .aeth-line-item {
      display: block;
    }

    .aeth-line-item strong {
      display: block;
      margin-bottom: 6px;
    }

    .aeth-modules {
      grid-template-columns: 1fr;
    }

    .aeth-module {
      min-height: auto;
    }

    .aeth-method {
      grid-template-columns: 1fr;
    }

    .aeth-step,
    .aeth-step:nth-child(2) {
      border-right: 0;
      border-bottom: 1px solid var(--aeth-line);
    }

    .aeth-step:last-child {
      border-bottom: 0;
    }

    .aeth-footer-inner {
      align-items: flex-start;
      flex-direction: column;
    }
  }

  @media (max-width: 430px) {
    .aeth-nav a[href="/blog/"] {
      display: none;
    }

    .aeth-hero h1 {
      font-size: 39px;
    }

    .aeth-heading,
    .aeth-cta h2 {
      font-size: 33px;
    }

    .aeth-actions,
    .aeth-actions .aeth-button {
      width: 100%;
    }

    .aeth-tile,
    .aeth-blog-card-body,
    .aeth-signal {
      padding: 20px;
    }
  }

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

    .aeth-reveal,
    .aeth-float,
    .aeth-shimmer::after,
    .aeth-button,
    .aeth-tile,
    .aeth-blog-all,
    .aeth-blog-card {
      animation: none;
      transition: none;
      transform: none;
      opacity: 1;
    }
  }

.aeth-default {
  min-height: 70vh;
  padding: 92px 24px;
  color: #0f172a;
  background: #ffffff;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.aeth-default-wrap {
  width: min(920px, 100%);
  margin: 0 auto;
}

.aeth-default h1 {
  margin: 0 0 24px;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: 0;
}

.aeth-default a {
  color: #2563eb;
}

.aeth-entry {
  color: #334155;
  font-size: 18px;
  line-height: 1.62;
}

.aeth-entry img {
  max-width: 100%;
  height: auto;
}

.aeth-post-card {
  padding: 0 0 34px;
  margin: 0 0 34px;
  border-bottom: 1px solid #e2e8f0;
}

.aeth-back {
  margin: 0 0 22px;
  font-size: 14px;
  font-weight: 700;
}

.aeth-blog-index {
  background:
    radial-gradient(circle at 50% 0%, rgba(37,99,235,0.06), transparent 34%),
    #ffffff;
}

.aeth-blog-head {
  margin-bottom: 46px;
}

.aeth-blog-head p:not(.aeth-back) {
  max-width: 680px;
  margin: 0;
  color: #64748b;
  font-size: 18px;
  line-height: 1.52;
}

.aeth-post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.aeth-post-card {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 22px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: 0 18px 60px rgba(15,23,42,0.055);
}

.aeth-post-card h1,
.aeth-post-card h2 {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.14;
}

.aeth-post-card h1 a,
.aeth-post-card h2 a {
  color: #0f172a;
}

.aeth-post-meta {
  margin: 0 0 12px;
  color: #bf8156;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.aeth-post-thumb {
  display: block;
  overflow: hidden;
  margin: 0 0 20px;
  border-radius: 8px;
  background: #e2e8f0;
}

.aeth-post-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .aeth-post-grid {
    grid-template-columns: 1fr;
  }
}

.aeth-blog-page,
.aeth-blog-page * {
  box-sizing: border-box;
}

.aeth-blog-page {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  color: #0f172a;
  background: #ffffff;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

.aeth-blog-page a {
  color: inherit;
  text-decoration: none;
}

.aeth-blog-wrap {
  width: min(1360px, calc(100% - 64px));
  margin: 0 auto;
}

.aeth-blog-archive-hero {
  position: relative;
  color: #ffffff;
  padding: 22px 0 84px;
  background:
    radial-gradient(circle at 72% 42%, rgba(37,99,235,0.25), transparent 28%),
    linear-gradient(90deg, rgba(5,7,11,0.98), rgba(5,7,11,0.78) 58%, rgba(5,7,11,0.44)),
    url("https://aetherialabs.io/wp-content/uploads/2026/06/aetheria-hero-ecosystem-1920x1080-1.webp") center right / cover no-repeat;
}

.aeth-blog-archive-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.26), transparent);
}

.aeth-blog-archive-title {
  position: relative;
  z-index: 1;
  max-width: 930px;
  padding-top: 144px;
}

.aeth-blog-archive-title h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(52px, 5.2vw, 92px);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

.aeth-blog-archive-title > p:not(.aeth-section-kicker) {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255,255,255,0.74);
  font-size: 19px;
  line-height: 1.5;
}

.aeth-blog-archive-list {
  padding: 66px 0 84px;
  background:
    radial-gradient(circle at 50% 0%, rgba(37,99,235,0.06), transparent 34%),
    linear-gradient(180deg, #f8fafc, #ffffff 72%);
}

.aeth-blog-page .aeth-post-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.aeth-blog-page .aeth-post-card {
  overflow: hidden;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(226,232,240,0.92);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 20px 64px rgba(15,23,42,0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.aeth-blog-page .aeth-post-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37,99,235,0.22);
  box-shadow: 0 30px 86px rgba(15,23,42,0.12);
}

.aeth-blog-page .aeth-post-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1.48 / 1;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  color: rgba(255,255,255,0.74);
  background:
    radial-gradient(circle at 72% 36%, rgba(37,99,235,0.28), transparent 32%),
    linear-gradient(135deg, #05070b, #101827);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.aeth-blog-page .aeth-post-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 260ms ease;
}

.aeth-blog-page .aeth-post-card:hover .aeth-post-thumb img {
  transform: scale(1.04);
}

.aeth-post-card-body {
  padding: 21px;
}

.aeth-blog-page .aeth-post-card h2 {
  margin: 0;
  font-size: 27px;
  line-height: 1.13;
  letter-spacing: 0;
}

.aeth-blog-page .aeth-entry {
  margin-top: 11px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.48;
}

.aeth-blog-page .navigation.pagination {
  margin-top: 42px;
}

.aeth-blog-page .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.aeth-blog-page .page-numbers {
  min-width: 40px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  color: #0f172a;
  background: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.aeth-blog-page .page-numbers.current {
  color: #ffffff;
  border-color: #2563eb;
  background: #2563eb;
}

@media (max-width: 1024px) {
  .aeth-blog-page .aeth-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .aeth-blog-wrap {
    width: min(100% - 30px, 1360px);
  }

  .aeth-blog-archive-hero {
    padding-bottom: 68px;
  }

  .aeth-blog-archive-title {
    padding-top: 104px;
  }

  .aeth-blog-archive-title h1 {
    font-size: 42px;
  }

  .aeth-blog-archive-title > p:not(.aeth-section-kicker) {
    font-size: 16px;
  }

  .aeth-blog-page .aeth-post-grid {
    grid-template-columns: 1fr;
  }
}

.aeth-article-page,
.aeth-article-page * {
  box-sizing: border-box;
}

.aeth-article-page {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  color: #0f172a;
  background: #ffffff;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

.aeth-article-page a {
  color: inherit;
}

.aeth-article-hero {
  color: #ffffff;
  padding: 22px 0 74px;
  background:
    radial-gradient(circle at 70% 42%, rgba(37,99,235,0.24), transparent 28%),
    linear-gradient(90deg, rgba(5,7,11,0.98), rgba(5,7,11,0.76) 62%, rgba(5,7,11,0.46)),
    url("https://aetherialabs.io/wp-content/uploads/2026/06/aetheria-hero-ecosystem-1920x1080-1.webp") center right / cover no-repeat;
}

.aeth-article-title {
  max-width: 980px;
  padding-top: 198px;
}

.aeth-article-title h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(46px, 5vw, 82px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

.aeth-article-content {
  padding: 66px 0 84px;
  background:
    radial-gradient(circle at 50% 0%, rgba(37,99,235,0.05), transparent 34%),
    #ffffff;
}

.aeth-article-wrap {
  width: min(860px, calc(100% - 48px));
  margin: 0 auto;
}

.aeth-article-cover {
  overflow: hidden;
  margin: -18px 0 42px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #f8fafc;
  box-shadow: 0 24px 80px rgba(15,23,42,0.10);
}

.aeth-article-cover img {
  width: 100%;
  height: auto;
  display: block;
}

.aeth-article-page .aeth-entry {
  color: #334155;
  font-size: 19px;
  line-height: 1.66;
}

.aeth-article-page .aeth-entry h2,
.aeth-article-page .aeth-entry h3 {
  color: #0f172a;
  line-height: 1.14;
  letter-spacing: 0;
}

.aeth-article-page .aeth-entry h2 {
  margin-top: 44px;
  font-size: 34px;
}

.aeth-article-page .aeth-entry h3 {
  margin-top: 34px;
  font-size: 26px;
}

@media (max-width: 640px) {
  .aeth-article-hero {
    padding-bottom: 62px;
  }

  .aeth-article-title {
    padding-top: 126px;
  }

  .aeth-article-title h1 {
    font-size: 40px;
  }

  .aeth-article-wrap {
    width: min(100% - 30px, 860px);
  }

  .aeth-article-page .aeth-entry {
    font-size: 17px;
  }
}

.aeth-contact-page,
.aeth-contact-page * {
  box-sizing: border-box;
}

.aeth-contact-page {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  color: #0f172a;
  background: #ffffff;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

.aeth-contact-page a {
  color: inherit;
  text-decoration: none;
}

.aeth-contact-wrap {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.aeth-contact-hero {
  color: #ffffff;
  background:
    radial-gradient(circle at 72% 42%, rgba(37,99,235,0.26), transparent 28%),
    linear-gradient(90deg, rgba(5,7,11,0.98), rgba(5,7,11,0.78)),
    url("https://aetherialabs.io/wp-content/uploads/2026/06/aetheria-hero-ecosystem-1920x1080-1.webp") center right / cover no-repeat;
}

.aeth-contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(36px, 7vw, 104px);
  align-items: end;
  padding: 162px 0 92px;
}

.aeth-contact-kicker {
  margin: 0 0 14px;
  color: #93c5fd;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0;
}

.aeth-contact-copy h1 {
  max-width: 780px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(52px, 5.4vw, 92px);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

.aeth-contact-copy p:not(.aeth-contact-kicker) {
  max-width: 660px;
  margin: 20px 0 0;
  color: rgba(255,255,255,0.74);
  font-size: 19px;
  line-height: 1.5;
}

.aeth-contact-panel {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 22px;
  padding: 24px;
  background: rgba(5,7,11,0.46);
  box-shadow: 0 30px 90px rgba(0,0,0,0.24);
  backdrop-filter: blur(18px);
}

.aeth-contact-panel span {
  display: block;
  margin-bottom: 12px;
  color: #93c5fd;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.aeth-contact-panel strong {
  display: block;
  color: #ffffff;
  font-size: 27px;
  line-height: 1.16;
}

.aeth-contact-panel p {
  margin: 12px 0 0;
  color: rgba(255,255,255,0.68);
  font-size: 15px;
  line-height: 1.48;
}

.aeth-contact-main {
  padding: 84px 0 92px;
  background:
    radial-gradient(circle at 50% 0%, rgba(37,99,235,0.06), transparent 36%),
    #f8fafc;
}

.aeth-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.aeth-contact-info {
  position: sticky;
  top: 32px;
}

.aeth-contact-info h2,
.aeth-contact-form-head h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 1.04;
  font-weight: 780;
  letter-spacing: 0;
  text-wrap: balance;
}

.aeth-contact-steps {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.aeth-contact-steps div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  padding: 15px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 44px rgba(15,23,42,0.045);
}

.aeth-contact-steps b {
  color: #bf8156;
  font-size: 13px;
}

.aeth-contact-steps span {
  color: #475569;
  font-size: 15px;
  line-height: 1.45;
}

.aeth-contact-form-card {
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: clamp(24px, 3vw, 38px);
  background: rgba(255,255,255,0.96);
  box-shadow: 0 34px 100px rgba(15,23,42,0.12);
}

.aeth-contact-form-head {
  margin-bottom: 22px;
}

.aeth-contact-placeholder {
  border: 1px dashed #cbd5e1;
  border-radius: 16px;
  padding: 22px;
  color: #475569;
  background: #f8fafc;
}

.aeth-contact-placeholder strong {
  display: block;
  margin-bottom: 8px;
  color: #0f172a;
}

.aeth-contact-placeholder code {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  color: #0f172a;
  background: #e2e8f0;
}

.aeth-contact-form .forminator-ui {
  margin: 0 !important;
}

.aeth-contact-form .forminator-label {
  color: #0f172a !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

.aeth-contact-form .forminator-input,
.aeth-contact-form .forminator-textarea,
.aeth-contact-form .forminator-select2 + .select2 .selection .select2-selection {
  min-height: 48px !important;
  border: 1px solid #dbe3ef !important;
  border-radius: 12px !important;
  color: #0f172a !important;
  background: #f8fafc !important;
  box-shadow: none !important;
}

.aeth-contact-form .forminator-textarea {
  min-height: 138px !important;
}

.aeth-contact-form .forminator-button-submit {
  min-height: 48px !important;
  border-radius: 12px !important;
  padding: 0 22px !important;
  background: #2563eb !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  box-shadow: 0 16px 44px rgba(37,99,235,0.22) !important;
}

.aeth-contact-footer {
  padding: 30px 0;
  color: rgba(255,255,255,0.68);
  background: #05070b;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.aeth-contact-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-size: 14px;
}

.aeth-contact-footer img {
  width: 112px;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .aeth-contact-hero-grid,
  .aeth-contact-layout {
    grid-template-columns: 1fr;
  }

  .aeth-contact-info {
    position: static;
  }
}

@media (max-width: 640px) {
  .aeth-contact-wrap {
    width: min(100% - 30px, 1280px);
  }

  .aeth-contact-hero-grid {
    padding: 126px 0 72px;
  }

  .aeth-contact-copy h1 {
    font-size: 42px;
  }

  .aeth-contact-copy p:not(.aeth-contact-kicker) {
    font-size: 16px;
  }

  .aeth-contact-main {
    padding: 64px 0 78px;
  }

  .aeth-contact-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
