:root {
  --ara-blue-50: #eff6ff;
  --ara-blue-100: #dbeafe;
  --ara-blue-300: #93c5fd;
  --ara-blue-400: #60a5fa;
  --ara-blue-500: #3b82f6;
  --ara-blue-600: #2563eb;
  --ara-blue-700: #1d4ed8;
  --ara-ink: #06111f;
  --ara-dark: #0a1628;
  --ara-mid: #11334c;
  --ara-light: #f2f6f8;
  --ara-navy: #071426;
  --ara-navy-2: #0a1b33;
  --ara-green: #3f8f64;
  --ara-mist: #f5f9ff;
  --ara-muted: #5d6c80;
  --ara-line: rgba(59, 130, 246, 0.18);
  --ara-shadow: 0 24px 70px rgba(3, 12, 28, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body.ara-home {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--ara-dark);
  color: var(--ara-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.ara-home a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 0.75rem;
  z-index: 10000;
  transform: translateY(-150%);
  border-radius: 999px;
  background: #fff;
  color: var(--ara-blue-700);
  padding: 0.75rem 1rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--ara-shadow);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.material-symbols-rounded {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 1.35em;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.auth-action-banner {
  position: fixed;
  top: 5.25rem;
  left: 50%;
  z-index: 9000;
  width: min(92vw, 520px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
  transform: translateX(-50%);
  border: 1px solid rgba(147, 197, 253, 0.34);
  border-radius: 1rem;
  background: rgba(7, 20, 38, 0.94);
  color: #f8fbff;
  padding: 0.95rem 1rem;
  box-shadow: 0 18px 44px rgba(3, 12, 28, 0.32);
}

.auth-action-banner[hidden],
.auth-action-modal[hidden] {
  display: none;
}

.auth-action-banner[data-status="success"] {
  border-color: rgba(52, 211, 153, 0.46);
  background: rgba(6, 54, 43, 0.96);
}

.auth-action-banner[data-status="error"] {
  border-color: rgba(248, 113, 113, 0.5);
  background: rgba(69, 16, 31, 0.96);
}

.auth-action-banner__icon {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(147, 197, 253, 0.16);
  color: var(--ara-blue-100);
}

.auth-action-banner strong,
.auth-action-banner p {
  margin: 0;
}

.auth-action-banner strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 900;
}

.auth-action-banner p {
  margin-top: 0.18rem;
  color: rgba(226, 238, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.45;
}

.auth-action-modal {
  position: fixed;
  inset: 0;
  z-index: 9100;
  display: grid;
  place-items: center;
  background: rgba(3, 10, 24, 0.72);
  padding: 1rem;
}

.auth-action-modal__card {
  width: min(100%, 430px);
  border: 1px solid rgba(147, 197, 253, 0.25);
  border-radius: 1.25rem;
  background: #f8fbff;
  color: var(--ara-ink);
  padding: 1.35rem;
  box-shadow: 0 24px 70px rgba(3, 12, 28, 0.42);
}

.auth-action-modal__card > .material-symbols-rounded {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: var(--ara-blue-50);
  color: var(--ara-blue-700);
}

.auth-action-modal h2,
.auth-action-modal p {
  margin: 0;
}

.auth-action-modal h2 {
  margin-top: 1rem;
  font-size: 1.45rem;
  line-height: 1.15;
}

.auth-action-modal p {
  margin-top: 0.55rem;
  color: var(--ara-muted);
  line-height: 1.55;
}

.auth-action-modal label {
  display: block;
  margin-top: 1.15rem;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--ara-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-action-modal input {
  width: 100%;
  margin-top: 0.45rem;
  border: 1px solid rgba(17, 51, 76, 0.22);
  border-radius: 0.75rem;
  background: #fff;
  color: var(--ara-ink);
  padding: 0.85rem 0.95rem;
  font: inherit;
}

.auth-action-modal input:focus {
  outline: 3px solid rgba(147, 197, 253, 0.55);
  border-color: var(--ara-blue-500);
}

.auth-action-modal__error {
  color: #b91c1c !important;
  font-size: 0.88rem;
  font-weight: 800;
}

.auth-action-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.auth-action-modal button {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.auth-action-modal button[type="button"] {
  border-color: rgba(17, 51, 76, 0.18);
  background: #fff;
  color: var(--ara-mid);
}

.auth-action-modal button[type="submit"] {
  background: var(--ara-blue-600);
  color: #fff;
}

.home-hero {
  position: relative;
  min-height: min(740px, calc(100dvh - 40px));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  padding: clamp(3.5rem, 6vh, 5rem) clamp(1rem, 4vw, 4rem) clamp(1rem, 2.5vw, 1.5rem);
}

.home-hero__image,
.home-hero__wash,
.home-hero__grain {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.home-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(1.02) contrast(0.98) brightness(0.9);
}

.home-hero__wash {
  z-index: -2;
  background: rgba(5, 14, 28, 0.56);
}

.home-hero__grain {
  z-index: -1;
  opacity: 0;
  background: none;
}

.home-hero__content {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.52fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.home-hero__copy {
  max-width: 660px;
  padding-bottom: clamp(0.5rem, 3vh, 2.75rem);
}

.home-kicker,
.home-eyebrow {
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ara-blue-100);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-kicker {
  border: 1px solid rgba(147, 197, 253, 0.42);
  border-radius: 999px;
  background: rgba(7, 20, 38, 0.58);
  padding: 0.6rem 0.85rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.home-hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2.7rem, 4.6vw, 4.45rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

.home-hero__lead {
  max-width: 560px;
  margin: 1.15rem 0 0;
  color: rgba(239, 246, 255, 0.9);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.58;
}

.home-hero__actions,
.story-actions,
.signed-in-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.home-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font-size: 0.98rem;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.home-btn:focus-visible,
.hero-dock a:focus-visible,
.action-card:focus-visible,
.platform-card:focus-visible {
  outline: 3px solid rgba(147, 197, 253, 0.95);
  outline-offset: 3px;
}

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

body.ara-home .home-btn--primary {
  background: var(--ara-blue-600);
  color: #fff;
  box-shadow: none;
}

body.ara-home .home-btn--electric {
  background: #fff;
  color: #0b3b86;
  box-shadow: none;
}

body.ara-home .home-btn--glass,
body.ara-home .home-btn--quiet {
  border-color: rgba(147, 197, 253, 0.36);
  background: rgba(8, 25, 48, 0.62);
  color: #f8fbff;
  box-shadow: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body.ara-home .home-btn--quiet {
  color: var(--ara-blue-700);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(37, 99, 235, 0.18);
  box-shadow: none;
}

.hero-panel {
  display: block;
  border: 1px solid rgba(147, 197, 253, 0.28);
  border-radius: 1.6rem;
  background: rgba(5, 16, 32, 0.62);
  padding: clamp(1.15rem, 2.2vw, 1.65rem);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26), 0 0 0 1px rgba(45, 212, 191, 0.18), 0 0 28px rgba(45, 212, 191, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: inherit;
  text-decoration: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  animation: hero-panel-teal-pulse 3.4s ease-in-out infinite;
}

.hero-panel:hover,
.hero-panel:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(94, 234, 212, 0.62);
  background: rgba(5, 16, 32, 0.72);
  outline: none;
}

@keyframes hero-panel-teal-pulse {
  0%,
  100% {
    border-color: rgba(45, 212, 191, 0.34);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26), 0 0 0 1px rgba(45, 212, 191, 0.16), 0 0 22px rgba(45, 212, 191, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
  50% {
    border-color: rgba(94, 234, 212, 0.74);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26), 0 0 0 2px rgba(45, 212, 191, 0.22), 0 0 42px rgba(45, 212, 191, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
}

.hero-panel__topline {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ara-blue-100);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-panel__pulse {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: #57e389;
  box-shadow: none;
}

.hero-panel h2 {
  margin: 1rem 0 0;
  font-size: clamp(1.2rem, 1.65vw, 1.65rem);
  line-height: 1.12;
  font-weight: 900;
}

.hero-panel p {
  margin: 0.8rem 0 0;
  color: rgba(226, 238, 255, 0.82);
  line-height: 1.65;
}

.hero-panel__verified {
  margin-top: 1rem;
}

.hero-panel__count-row {
  display: flex;
  align-items: end;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-panel__count {
  display: block;
  color: #fff;
  font-size: clamp(3.4rem, 7vw, 5.1rem);
  line-height: 0.82;
  font-weight: 950;
  letter-spacing: 0;
}

.hero-panel__count-note {
  margin-bottom: 0.4rem;
  color: var(--ara-blue-100);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel__verified strong {
  display: block;
  max-width: 320px;
  margin-top: 0.55rem;
  color: #fff;
  font-size: clamp(1.05rem, 1.65vw, 1.35rem);
  line-height: 1.12;
  font-weight: 950;
}

.hero-panel__verified p {
  max-width: 330px;
  margin-top: 0.7rem;
  color: rgba(226, 238, 255, 0.78);
  font-size: 0.96rem;
  line-height: 1.5;
}

.hero-panel__map-link {
  margin-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #99f6e4;
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1;
}

.hero-panel__map-link .material-symbols-rounded {
  font-size: 1.08rem;
  line-height: 1;
}

.hero-dock {
  width: min(1180px, calc(100% - 2rem));
  margin: clamp(1.25rem, 3.5vh, 2.4rem) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  border-radius: 1.25rem;
}

.hero-dock a {
  min-height: 104px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 1rem;
  align-items: center;
  border: 1px solid rgba(147, 197, 253, 0.26);
  border-radius: 1.15rem;
  padding: 1.25rem;
  text-decoration: none;
  background: rgba(5, 16, 32, 0.74);
  box-shadow: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero-dock a:first-child {
  border-color: rgba(147, 197, 253, 0.26);
  background: rgba(5, 16, 32, 0.78);
}

.hero-dock a:hover {
  transform: translateY(-2px);
  border-color: rgba(147, 197, 253, 0.46);
  background: rgba(13, 35, 66, 0.84);
}

.hero-dock a:first-child:hover {
  background: rgba(7, 24, 45, 0.88);
  border-color: rgba(147, 197, 253, 0.46);
}

.hero-dock .material-symbols-rounded {
  grid-row: 1 / 3;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.2);
  color: var(--ara-blue-100);
  font-size: 1.45rem;
  line-height: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-dock a:first-child .material-symbols-rounded {
  background: rgba(20, 184, 166, 0.24);
  color: #99f6e4;
  box-shadow: inset 0 0 0 1px rgba(153, 246, 228, 0.2);
}

.hero-dock a:nth-child(2) .material-symbols-rounded {
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
  box-shadow: inset 0 0 0 1px rgba(147, 197, 253, 0.16);
}

.hero-dock a:nth-child(3) .material-symbols-rounded {
  background: rgba(16, 185, 129, 0.18);
  color: #6ee7b7;
  box-shadow: inset 0 0 0 1px rgba(110, 231, 183, 0.16);
}

.hero-dock strong {
  position: relative;
  z-index: 1;
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  line-height: 1.05;
}

.hero-dock small {
  position: relative;
  z-index: 1;
  margin-top: 0.25rem;
  color: rgba(219, 234, 254, 0.76);
  font-size: 0.9rem;
}

@media (min-width: 861px) and (max-width: 1240px) {
  .home-hero {
    min-height: min(680px, calc(100dvh - var(--ara-top-nav-height, 64px)));
    padding: clamp(2.5rem, 4vh, 3.35rem) clamp(1rem, 3vw, 2.5rem) 1rem;
  }

  .home-hero__content {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    gap: clamp(1rem, 2.6vw, 2rem);
  }

  .home-hero__copy {
    max-width: 590px;
    padding-bottom: clamp(0.25rem, 1.4vh, 1rem);
  }

  .home-kicker {
    margin-bottom: 0.75rem;
    padding: 0.5rem 0.75rem;
  }

  .home-hero h1 {
    max-width: 570px;
    font-size: clamp(2.45rem, 4vw, 3.45rem);
  }

  .home-hero__lead {
    max-width: 530px;
    margin-top: 0.9rem;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-panel {
    border-radius: 1.25rem;
    padding: 1.1rem;
  }

  .hero-panel__verified {
    margin-top: 0.8rem;
  }

  .hero-panel__count {
    font-size: clamp(3rem, 6vw, 4.2rem);
  }

  .hero-panel__verified strong {
    font-size: 1.05rem;
  }

  .hero-panel__verified p {
    margin-top: 0.55rem;
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .hero-dock {
    margin-top: clamp(0.85rem, 2vh, 1.25rem);
    gap: 0.75rem;
  }

  .hero-dock a {
    min-height: 88px;
    column-gap: 0.8rem;
    padding: 1rem;
  }

  .hero-dock .material-symbols-rounded {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }

  .hero-dock strong {
    font-size: 1.05rem;
  }

  .hero-dock small {
    font-size: 0.84rem;
  }
}

.home-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 4rem);
}

.home-section__header {
  width: min(820px, 100%);
  margin: 0 auto clamp(2rem, 4vw, 3.2rem);
  text-align: center;
}

.home-section h2,
.home-story h2,
.final-cta h2 {
  margin: 0;
  color: var(--ara-ink);
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

.home-section p {
  color: var(--ara-muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.home-section__header p {
  margin: 1rem auto 0;
  max-width: 680px;
}

.home-eyebrow {
  color: var(--ara-blue-700);
}

.home-section--light {
  background: var(--ara-light);
}

.ara-overview {
  color: #fff;
  background: var(--ara-dark);
  padding-top: clamp(2.75rem, 4.2vw, 4.25rem);
  padding-bottom: clamp(2.75rem, 4.2vw, 4.25rem);
  box-shadow: 0 0 0 100vmax var(--ara-dark);
  clip-path: inset(0 -100vmax);
}

.ara-overview h2,
.ara-overview .home-eyebrow {
  color: #fff;
}

.ara-overview .home-eyebrow {
  width: 100%;
  gap: 0.8rem;
}

.ara-overview__eyebrow {
  grid-column: 1 / -1;
  margin-bottom: clamp(0.75rem, 1.8vw, 1.25rem);
}

.ara-overview__eyebrow::after {
  content: "";
  height: 3px;
  flex: 1;
  min-width: 0;
  border-radius: 999px;
  background: #05b9df;
  opacity: 0.95;
}

.ara-overview .home-section__header p {
  color: rgba(226, 238, 255, 0.82);
}

.ara-overview__layout {
  width: min(1420px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(330px, 0.76fr) minmax(620px, 1.24fr);
  column-gap: clamp(1.5rem, 2.5vw, 2.75rem);
  row-gap: 0;
  align-items: stretch;
}

.ara-overview__copy {
  max-width: 510px;
}

.ara-overview__copy h2 {
  max-width: 500px;
  margin: 0.45rem 0 0;
  text-align: left;
  font-size: clamp(2.45rem, 3.15vw, 3.45rem);
  line-height: 1;
}

body.ara-home .ara-overview .ara-overview__statement {
  margin: 1rem 0 0;
  color: rgba(232, 241, 255, 0.88) !important;
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  line-height: 1.55;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.32);
}

.ara-overview__goals {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.65rem;
  font-family: inherit;
}

.ara-overview__goals article {
  display: grid;
  grid-template-columns: 2.65rem 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.8rem 0.9rem;
  font-family: inherit;
  border: 1px solid rgba(147, 197, 253, 0.16);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.ara-overview__goals article:hover,
.ara-overview__photo:hover {
  transform: translateY(-5px);
  border-color: rgba(96, 165, 250, 0.34);
}

.ara-overview__goals article > span {
  width: 2.65rem;
  height: 2.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  background: rgba(37, 99, 235, 0.22);
  color: #93c5fd;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
}

.ara-overview__goals h3 {
  margin: 0;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.15;
}

.ara-overview__goals p {
  margin: 0.28rem 0 0;
  color: rgba(226, 238, 255, 0.75);
  font-family: inherit;
  font-size: 0.86rem;
  line-height: 1.48;
}

.ara-overview__photos {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(230px, 1fr));
  gap: 1rem;
  font-family: inherit;
  align-self: end;
}

.ara-overview__photo {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(147, 197, 253, 0.18);
  border-radius: 1.25rem;
  background: #10243d;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.ara-overview__photo--large {
  grid-row: span 2;
  min-height: 476px;
}

.ara-overview__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ara-overview__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 24, 0.22);
  pointer-events: none;
}

.ara-overview__photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 0.9rem 1rem;
  background: rgba(3, 10, 24, 0.82);
}

.ara-overview__photo strong,
.ara-overview__photo span {
  display: block;
}

.ara-overview__photo strong {
  color: #fff;
  font-family: inherit;
  font-size: 0.96rem;
  font-weight: 850;
  line-height: 1.15;
}

.ara-overview__photo span {
  margin-top: 0.28rem;
  color: rgba(226, 238, 255, 0.78);
  font-family: inherit;
  font-size: 0.8rem;
  line-height: 1.38;
}

.action-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.action-card,
.platform-card,
.reason-grid article,
.achievement-list article {
  border: 1px solid rgba(13, 47, 90, 0.1);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: none;
}

.action-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.35rem;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.ara-overview .action-card {
  min-height: 230px;
  border-color: rgba(147, 197, 253, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.ara-overview .action-card:nth-child(1) .material-symbols-rounded {
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
}

.ara-overview .action-card:nth-child(2) .material-symbols-rounded {
  background: rgba(20, 184, 166, 0.2);
  color: #99f6e4;
}

.ara-overview .action-card:nth-child(3) .material-symbols-rounded {
  background: rgba(245, 158, 11, 0.2);
  color: #fcd34d;
}

.ara-overview .action-card:nth-child(4) .material-symbols-rounded {
  background: rgba(16, 185, 129, 0.2);
  color: #86efac;
}

.ara-overview .action-card h3 {
  color: #fff;
}

.ara-overview .action-card p {
  color: rgba(226, 238, 255, 0.78);
}

.action-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, 0.3);
}

.reason-grid article,
.signup-card-grid article {
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.reason-grid article:hover,
.signup-card-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(147, 197, 253, 0.38);
}

.action-card .material-symbols-rounded,
.platform-card > .material-symbols-rounded,
.reason-grid .material-symbols-rounded {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: var(--ara-blue-50);
  color: var(--ara-blue-700);
  font-size: 1.45rem;
  line-height: 1;
  text-align: center;
}

.action-card h3,
.platform-card h3,
.reason-grid h3 {
  margin: 1.3rem 0 0.5rem;
  color: var(--ara-ink);
  font-size: 1.3rem;
  line-height: 1.1;
  font-weight: 900;
}

.action-card p,
.platform-card p,
.reason-grid p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.field-photo-strip {
  width: min(1180px, 100%);
  margin: clamp(1.1rem, 2.8vw, 2rem) auto 0;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1rem;
}

.field-photo-strip figure,
.achievement-photo {
  position: relative;
  min-height: 210px;
  margin: 0;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(13, 47, 90, 0.1);
  background: #dce7ef;
}

.field-photo-strip figure:first-child {
  grid-column: span 1;
}

.field-photo-strip img,
.achievement-photo img,
.signup-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.field-photo-strip figure::after,
.achievement-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 16, 32, 0.34);
}

.field-photo-strip figcaption,
.achievement-photo figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  color: #fff;
  background: var(--ara-dark);
  box-shadow: 0 0 0 100vmax var(--ara-dark);
  clip-path: inset(0 -100vmax);
}

.home-story h2 {
  color: #fff;
}

.home-story .home-eyebrow {
  color: var(--ara-blue-300);
}

.story-image {
  position: relative;
  min-height: 0;
  aspect-ratio: 1.22 / 1;
  overflow: hidden;
  border-radius: 1.8rem;
  box-shadow: var(--ara-shadow);
  background: var(--ara-navy);
}

.story-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 50% 34%;
}

.story-copy p {
  color: rgba(226, 238, 255, 0.82);
  max-width: 660px;
  text-align: justify;
  text-justify: inter-word;
}

.home-section--blue {
  position: relative;
  color: #fff;
  background: var(--ara-dark);
  isolation: isolate;
  overflow: hidden;
}

.home-section--blue::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("/willow_background.jpg") center 44% / cover;
  opacity: 0.62;
}

.home-section--blue::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(5, 16, 32, 0.5);
}

.home-section--blue h2,
.home-section--blue .home-eyebrow {
  color: #fff;
}

.home-section--blue .home-section__header p {
  color: rgba(226, 238, 255, 0.82);
}

.reason-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.reason-grid article {
  background: rgba(8, 25, 48, 0.72);
  border-color: rgba(147, 197, 253, 0.34);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}

.reason-grid .material-symbols-rounded {
  background: rgba(59, 130, 246, 0.18);
  color: #bfdbfe;
}

.reason-grid article:nth-child(1) {
  background: rgba(37, 99, 235, 0.22);
  border-color: rgba(96, 165, 250, 0.44);
}

.reason-grid article:nth-child(1) .material-symbols-rounded {
  background: rgba(37, 99, 235, 0.34);
  color: #dbeafe;
}

.reason-grid article:nth-child(2) {
  background: rgba(14, 165, 233, 0.2);
  border-color: rgba(34, 211, 238, 0.4);
}

.reason-grid article:nth-child(2) .material-symbols-rounded {
  background: rgba(8, 145, 178, 0.34);
  color: #a5f3fc;
}

.reason-grid article:nth-child(3) {
  background: rgba(16, 185, 129, 0.2);
  border-color: rgba(94, 234, 212, 0.38);
}

.reason-grid article:nth-child(3) .material-symbols-rounded {
  background: rgba(13, 148, 136, 0.34);
  color: #99f6e4;
}

.reason-grid h3 {
  color: #fff;
}

.reason-grid p {
  color: rgba(226, 238, 255, 0.78);
}

.signup-band,
.signed-in-band {
  position: relative;
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-top: clamp(3rem, 5.5vw, 4.6rem);
  padding-bottom: clamp(3rem, 5.5vw, 4.6rem);
  background: var(--ara-mid);
  color: #fff;
  box-shadow: 0 0 0 100vmax var(--ara-mid);
  clip-path: inset(0 -100vmax);
  overflow: hidden;
  isolation: isolate;
  background-color: var(--ara-mid);
  background-image: url("/WillowBackground.jpg");
  background-size: cover;
  background-position: center 38%;
}

.signed-in-band {
  grid-template-columns: minmax(0, 1fr) auto;
  box-shadow: none;
}

.signup-band::before,
.signed-in-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(5, 14, 28, 0.78);
}

.signup-band::before {
  background: rgba(5, 14, 28, 0.58);
}

.signed-in-band::before {
  background: rgba(5, 14, 28, 0.58);
}

.signup-band h2,
.signed-in-band h2,
.signup-band .home-eyebrow,
.signed-in-band .home-eyebrow {
  color: #fff;
}

.signup-band p,
.signed-in-band p {
  max-width: 690px;
  color: rgba(226, 238, 255, 0.82);
}

.signup-band .home-btn,
.signed-in-band .home-btn {
  box-shadow: none;
}

.signup-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.signup-card-grid article {
  min-height: 156px;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  border: 1px solid rgba(147, 197, 253, 0.2);
  border-radius: 1.05rem;
  background: rgba(5, 16, 32, 0.72);
  padding: 1rem;
}

.signup-card-grid .material-symbols-rounded {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.18);
  color: #bfdbfe;
  font-size: 1.35rem;
}

.signup-card-grid article:nth-child(2) .material-symbols-rounded {
  background: rgba(45, 212, 191, 0.16);
  color: #99f6e4;
}

.signup-card-grid article:nth-child(3) .material-symbols-rounded {
  background: rgba(16, 185, 129, 0.16);
  color: #a7f3d0;
}

.signup-card-grid strong {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.1;
  font-weight: 900;
}

.signup-card-grid p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.signup-photo {
  height: 230px;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(147, 197, 253, 0.24);
  background: #0b1f38;
}

.platform-section {
  background: var(--ara-light);
}

.platform-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 1rem;
}

.platform-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding: 1.35rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.platform-card:hover {
  transform: translateY(-4px);
}

.platform-card--wide {
  grid-row: span 2;
  min-height: 496px;
  color: #fff;
}

.platform-card--wide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.platform-card--wide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 24, 0.42);
}

.platform-card--wide div {
  position: relative;
  z-index: 1;
}

.platform-card--wide h3,
.platform-card--wide p {
  color: #fff;
}

.platform-card--wide .material-symbols-rounded {
  width: 52px;
  height: 52px;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.16);
}

.achievements-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2rem;
  align-items: start;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  background: var(--ara-light);
  box-shadow: 0 0 0 100vmax var(--ara-light);
  clip-path: inset(0 -100vmax);
}

.achievement-intro {
  display: grid;
  gap: 1.4rem;
}

.achievement-photo {
  min-height: 300px;
}

.achievement-photo figcaption {
  max-width: 440px;
  line-height: 1.35;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
}

.achievement-list {
  display: grid;
  gap: 1rem;
}

.achievement-list article {
  padding: 1.25rem;
}

.achievement-list strong {
  display: block;
  color: var(--ara-blue-700);
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 950;
}

.achievement-list span {
  display: block;
  margin-top: 0.45rem;
  color: var(--ara-muted);
  line-height: 1.55;
}

.coming-soon {
  position: relative;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 2rem;
  align-items: center;
  color: #fff;
  background: var(--ara-dark);
  box-shadow: 0 0 0 100vmax var(--ara-dark);
  clip-path: inset(0 -100vmax);
  isolation: isolate;
  overflow: hidden;
}

.coming-soon::before {
  content: none;
}

.coming-soon::after {
  content: none;
}

.coming-soon h2,
.coming-soon .home-eyebrow {
  color: #fff;
}

.coming-soon p {
  color: rgba(226, 238, 255, 0.82);
}

.coming-soon-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.coming-soon-list article {
  border: 1px solid rgba(147, 197, 253, 0.16);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.055);
  padding: 1rem;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.coming-soon-list article:hover {
  transform: translateY(-5px);
  border-color: rgba(96, 165, 250, 0.34);
  background: rgba(255, 255, 255, 0.055);
}

.coming-soon-list .material-symbols-rounded {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.18);
  color: #bfdbfe;
  font-size: 1.3rem;
}

.coming-soon-list strong {
  display: block;
  margin-top: 0.75rem;
  color: #fff;
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 900;
}

.coming-soon-list p {
  margin: 0.45rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.phone-preview {
  width: min(280px, 100%);
  aspect-ratio: 921 / 1920;
  justify-self: center;
  border: 1px solid rgba(147, 197, 253, 0.16);
  border-radius: 2.2rem;
  background: #071426;
  box-shadow: none;
  padding: 0.7rem;
}

.phone-preview__screen {
  height: 100%;
  border: 0;
  border-radius: 1.45rem;
  overflow: hidden;
  background: #09101f;
}

.phone-preview__screen img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.final-cta {
  margin: 0;
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1rem, 4vw, 4rem);
  text-align: center;
  color: #fff;
  background: #0a1628 url("/cottonwood.jpg") center 45% / cover;
  background-blend-mode: multiply;
}

.final-cta h2 {
  color: #fff;
}

.final-cta p {
  max-width: 680px;
  margin: 1rem auto 0;
  color: rgba(226, 238, 255, 0.85);
}

.final-cta .home-hero__actions {
  justify-content: center;
}

[hidden] {
  display: none !important;
}

.ara-site-footer {
  background: var(--ara-navy);
  color: #fff;
  border-top: 1px solid rgba(147, 197, 253, 0.18);
}

.ara-site-footer__inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.2rem 0;
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(260px, 1.1fr) auto;
  gap: 1.5rem;
  align-items: start;
}

.ara-site-footer strong {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
}

.ara-site-footer p {
  margin: 0.4rem 0 0;
  color: rgba(226, 238, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.55;
}

.ara-site-footer__mission {
  max-width: 440px;
}

.ara-site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem 1rem;
}

.ara-site-footer__links a {
  color: rgba(226, 238, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.ara-site-footer__links a:hover {
  color: #fff;
}

.ara-site-footer__legal {
  grid-column: 1 / -1;
  padding-top: 1rem;
  border-top: 1px solid rgba(147, 197, 253, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.ara-site-footer__legal a {
  color: rgba(226, 238, 255, 0.9);
  font-weight: 800;
  text-decoration: none;
}

.ara-site-footer__legal a:hover {
  color: #fff;
}

.ara-site-footer__legal-links {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
}

@media (max-width: 1100px) {
  .home-hero__content,
  .home-story,
  .achievements-section,
  .coming-soon,
  .ara-overview__layout {
    grid-template-columns: 1fr;
  }

  .ara-overview__layout {
    row-gap: clamp(1.5rem, 4vw, 2.25rem);
  }

  .hero-panel {
    max-width: 620px;
  }

  .ara-overview__copy {
    max-width: 760px;
  }

  .ara-overview__photos {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: minmax(220px, auto);
  }

  .ara-overview__photo--large {
    grid-row: auto;
    min-height: 220px;
  }

  .action-grid,
  .reason-grid,
  .field-photo-strip,
  .signup-card-grid,
  .coming-soon-list {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 760px) {
  body.ara-home {
    background: var(--ara-mist);
  }

  .home-hero {
    min-height: auto;
    padding: 5.5rem 1rem 1rem;
  }

  .home-hero__image {
    object-position: 48% center;
  }

  .home-hero__wash {
    background: rgba(3, 10, 24, 0.6);
  }

  .home-hero__copy {
    padding-bottom: 0;
  }

  .home-hero h1 {
    max-width: 100%;
    font-size: clamp(2.1rem, 9.8vw, 2.9rem);
    line-height: 1;
    overflow-wrap: normal;
  }

  .home-hero__actions,
  .story-actions,
  .signed-in-actions {
    flex-direction: column;
    width: 100%;
  }

  .home-btn {
    width: 100%;
  }

  .hero-panel {
    margin-top: 1.25rem;
  }

  .hero-dock,
  .action-grid,
  .reason-grid,
  .platform-grid,
  .ara-overview__photos {
    grid-template-columns: 1fr;
  }

  .hero-dock {
    width: 100%;
  }

  .ara-overview__copy h2 {
    font-size: clamp(2.35rem, 11vw, 3.8rem);
  }

  .ara-overview__photo,
  .ara-overview__photo--large {
    min-height: 260px;
  }

  .home-section {
    padding: 3.5rem 1rem;
  }

  .home-section h2,
  .home-story h2,
  .final-cta h2 {
    font-size: clamp(2rem, 11vw, 3.4rem);
  }

  .story-image,
  .story-image img {
    min-height: 0;
  }

  .story-image {
    width: 100%;
    height: min(430px, 112vw);
    aspect-ratio: auto;
  }

  .story-image img {
    height: 100%;
  }

  .signup-band,
  .signed-in-band {
    grid-template-columns: 1fr;
    align-items: stretch;
    padding: 2rem;
  }

  .signup-card-grid,
  .coming-soon-list {
    grid-template-columns: 1fr;
  }

  .field-photo-strip {
    grid-template-columns: 1fr;
  }

  .signup-photo {
    height: 190px;
    order: 2;
  }

  .signup-band .home-btn {
    order: 3;
  }

  .platform-card--wide {
    min-height: 360px;
  }

  .coming-soon {
    text-align: left;
  }

  .ara-site-footer__inner {
    grid-template-columns: 1fr;
  }

  .ara-site-footer__links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
