:root{
  /* ---------- Brand / Surface ---------- */
  --atw-bg: #f4fbfc;
  --atw-bg-soft: #f8fcfd;
  --atw-surface: rgba(255,255,255,.92);
  --atw-surface-2: #f4fafb;
  --atw-surface-3: #ebf6f8;

  --atw-text: #0c1b2e;
  --atw-text-2: #17324a;
  --atw-muted: #566f84;

  --atw-line: rgba(16, 71, 110, .10);
  --atw-line-strong: rgba(16, 71, 110, .20);

  --atw-aqua-700: #0f8da1;
  --atw-aqua-600: #12a9bd;
  --atw-aqua-500: #1cc7d8;
  --atw-aqua-100: #daf8fc;

  --atw-blue-700: #0b6fb3;
  --atw-blue-600: #1186d4;
  --atw-blue-500: #33a6ea;
  --atw-blue-100: #dff3fd;

  --atw-green-700: #15803d;
  --atw-green-600: #16a34a;
  --atw-green-500: #22c55e;
  --atw-green-100: #dcfce7;

  --atw-slate-900: #0a1a2d;
  --atw-slate-800: #13283d;
  --atw-slate-700: #1e3951;

  --atw-white: #ffffff;

  /* ---------- Radius ---------- */
  --atw-radius-sm: 14px;
  --atw-radius-md: 20px;
  --atw-radius-lg: 26px;
  --atw-radius-xl: 32px;
  --atw-radius-2xl: 40px;

  /* ---------- Shadows ---------- */
  --atw-shadow-soft: 0 10px 30px rgba(10, 26, 45, .06);
  --atw-shadow-md: 0 18px 50px rgba(10, 26, 45, .08);
  --atw-shadow-lg: 0 28px 80px rgba(10, 26, 45, .12);
  --atw-shadow-aqua: 0 18px 34px rgba(18, 169, 189, .18);
  --atw-shadow-blue: 0 18px 34px rgba(17, 134, 212, .18);
  --atw-shadow-dark: 0 18px 40px rgba(15, 23, 42, .20);

  /* ---------- Layout ---------- */
  --atw-container: 1600px;
  --atw-gutter: clamp(16px, 2.5vw, 28px);
  --atw-section-y: clamp(72px, 8vw, 116px);

  /* ---------- Type ---------- */
  --atw-fs-display: clamp(2.75rem, 5.6vw, 5.05rem);
  --atw-fs-h2: clamp(2.1rem, 3.8vw, 3.45rem);
  --atw-fs-h3: clamp(1.38rem, 2vw, 1.8rem);
  --atw-fs-body: clamp(1.1rem, 1.18vw, 1.22rem);
  --atw-fs-body-lg: clamp(1.18rem, 1.34vw, 1.34rem);
  --atw-fs-small: clamp(1rem, 1.03vw, 1.06rem);
  --atw-fs-xs: 14px;

  /* ---------- Spacing ---------- */
  --atw-space-1: 4px;
  --atw-space-2: 8px;
  --atw-space-3: 12px;
  --atw-space-4: 16px;
  --atw-space-5: 20px;
  --atw-space-6: 24px;
  --atw-space-7: 32px;
  --atw-space-8: 40px;
  --atw-space-9: 56px;
  --atw-space-10: 72px;
  --atw-space-11: 88px;

  /* ---------- Buttons ---------- */
  --atw-btn-h: 56px;
  --atw-btn-h-sm: 50px;

  /* ---------- Motion ---------- */
  --atw-ease: 260ms cubic-bezier(.2,.75,.2,1);
  --atw-ease-soft: 600ms cubic-bezier(.22,1,.36,1);
}

*,
*::before,
*::after{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(17,134,212,.06), transparent 24%),
    radial-gradient(circle at 100% 0%, rgba(28,199,216,.08), transparent 24%),
    linear-gradient(180deg, #f8fcfd 0%, #f4fbfc 100%);
  color: var(--atw-text);
  font-family: "Sora","Manrope","Poppins",system-ui,-apple-system,"Segoe UI",Roboto,sans-serif;
  font-size: var(--atw-fs-body);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

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

.atw-red-page{
  position: relative;
  overflow: clip;
  isolation: isolate;
}

.atw-red-page::before{
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(17,134,212,.03), transparent 18%),
    radial-gradient(circle at 80% 18%, rgba(28,199,216,.035), transparent 16%),
    radial-gradient(circle at 55% 82%, rgba(17,134,212,.025), transparent 20%);
}

.atw-red-page::after{
  content: "AT WATER";
  position: fixed;
  right: -14px;
  bottom: 28px;
  font-size: clamp(54px, 8vw, 128px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: .20em;
  color: rgba(10, 26, 45, .035);
  transform: rotate(-90deg);
  transform-origin: right bottom;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
  user-select: none;
}

.atw-red-page > *{
  position: relative;
  z-index: 1;
}

.atw-red-page :where(h1,h2,h3,h4,p,ul,li){
  overflow-wrap: break-word;
  text-wrap: pretty;
}

/* =========================================================
   Layout primitives
   ========================================================= */
.atw-wrap{
  width: min(100% - calc(var(--atw-gutter) * 2), var(--atw-container));
  margin-inline: auto;
}

.atw-section{
  padding-block: var(--atw-section-y);
  position: relative;
}

.atw-grid{
  display: grid;
  gap: clamp(20px, 2vw, 30px);
}

.atw-grid > *{
  min-width: 0;
}

.atw-grid-2,
.atw-grid-3,
.atw-grid-4{
  grid-template-columns: 1fr;
}

@media (min-width: 768px){
  .atw-grid-2,
  .atw-grid-3,
  .atw-grid-4{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px){
  .atw-grid-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .atw-grid-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* =========================================================
   Utilities
   ========================================================= */
.atw-center{ text-align: center; }
.atw-m-0{ margin: 0 !important; }
.atw-mx-auto{ margin-inline: auto; }
.atw-max-420{ max-width: 420px; }
.atw-max-460{ max-width: 460px; }
.atw-max-700{ max-width: 700px; }
.atw-max-820{ max-width: 820px; }
.atw-max-900{ max-width: 900px; }
.atw-top-space{ margin-top: var(--atw-space-5); }
.atw-top-space-lg{ margin-top: var(--atw-space-8); }
.atw-muted{ color: var(--atw-muted); }
.atw-text-sm{ font-size: var(--atw-fs-small); line-height: 1.78; }
.atw-text-xs{ font-size: var(--atw-fs-xs); line-height: 1.6; }

/* =========================================================
   Top sticky band
   ========================================================= */
.atw-band{
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(19, 40, 61, .84);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.atw-band::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.10), transparent);
  pointer-events: none;
}

.atw-band .atw-wrap{
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.atw-band span{
  color: rgba(255,255,255,.9);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.55;
}

/* =========================================================
   Text system
   ========================================================= */
.atw-kicker{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 15px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f2fbfd 0%, #e7f7fb 100%);
  border: 1px solid #d4edf4;
  color: var(--atw-blue-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}

.atw-kicker::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--atw-aqua-500), var(--atw-blue-600));
  box-shadow: 0 0 0 5px rgba(28,199,216,.12);
  flex: 0 0 auto;
}

.atw-kicker--dark{
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.10);
  color: #e9f9fc;
}

.atw-title{
  margin: 16px 0 0;
  font-size: var(--atw-fs-display);
  line-height: .99;
  letter-spacing: -.05em;
  font-weight: 800;
  color: var(--atw-slate-900);
  text-wrap: balance;
}

.atw-title--md{
  font-size: var(--atw-fs-h2);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.atw-title--light{
  color: var(--atw-white);
}

.atw-subtitle{
  max-width: 960px;
  margin: 20px auto 0;
  color: var(--atw-muted);
  font-size: clamp(1.12rem, 1.3vw, 1.28rem);
  line-height: 1.92;
  font-weight: 500;
}

.atw-subtitle--full{
  max-width: 100%;
}

.atw-subtitle--light{
  color: rgba(255,255,255,.82);
}

.atw-heading-sm{
  margin: 0 0 12px;
  font-size: var(--atw-fs-h3);
  line-height: 1.32;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--atw-slate-900);
}

.atw-block-title{
  margin: 16px 0 0;
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.1;
  letter-spacing: -.035em;
  font-weight: 800;
  color: var(--atw-slate-900);
  text-wrap: balance;
}

.atw-block-sub{
  margin: 0 0 16px;
  padding-top: 10px;
  color: var(--atw-muted);
  font-size: clamp(1.06rem, 1.12vw, 1.16rem);
  line-height: 1.92;
}

.atw-lead{
  color: var(--atw-text-2);
  font-size: var(--atw-fs-body-lg);
  line-height: 1.88;
}

.atw-card-dark .atw-heading-sm,
.atw-card-dark .atw-block-title{
  color: var(--atw-white);
}

.atw-card-dark .atw-block-sub,
.atw-card-dark .atw-muted{
  color: rgba(255,255,255,.8);
}

/* =========================================================
   Shells / Surfaces
   ========================================================= */
.atw-section-shell{
  position: relative;
  border-radius: var(--atw-radius-xl);
  padding: clamp(26px, 3vw, 42px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.82) 0%, rgba(248,252,253,.95) 100%);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: var(--atw-shadow-soft);
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.atw-section-shell::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(51,166,234,.06), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(28,199,216,.07), transparent 26%);
  pointer-events: none;
}

.atw-section-shell--white{
  background: var(--atw-surface);
  border-color: var(--atw-line);
  box-shadow: var(--atw-shadow-md);
}

.atw-section-shell--soft{
  background: linear-gradient(180deg, #fbfeff 0%, #eff8fa 100%);
  border-color: var(--atw-line);
}

.atw-section-shell--dark{
  background:
    radial-gradient(circle at 15% 0%, rgba(28,199,216,.10), transparent 28%),
    linear-gradient(135deg, #0f172a 0%, #13283d 100%);
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 26px 70px rgba(2,6,23,.22);
  color: var(--atw-white);
}

/* =========================================================
   Hero
   ========================================================= */
.atw-hero{
  position: relative;
  overflow: hidden;
  border-radius: var(--atw-radius-2xl);
  padding: clamp(24px, 2.6vw, 38px);
  background:
    radial-gradient(circle at 12% 0%, rgba(51,166,234,.10), transparent 30%),
    radial-gradient(circle at 100% 100%, rgba(28,199,216,.12), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.97) 0%, rgba(248,252,253,.98) 64%, rgba(238,247,250,.95) 100%);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: var(--atw-shadow-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.atw-hero::before{
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  top: -120px;
  left: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(51,166,234,.12) 0%, transparent 68%);
  pointer-events: none;
}

.atw-hero::after{
  content: "AT WATER";
  position: absolute;
  right: -22px;
  top: 20px;
  font-size: clamp(34px, 5vw, 86px);
  font-weight: 800;
  letter-spacing: .18em;
  color: rgba(10, 26, 45, .04);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.atw-hero-layout{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 3vw, 46px);
  align-items: center;
}

@media (min-width: 1024px){
  .atw-hero-layout{
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  }
}

.atw-hero-copy{
  max-width: 780px;
}

.atw-hero-panel{
  margin-top: 28px;
  padding: clamp(20px, 2.1vw, 26px);
  border-radius: var(--atw-radius-md);
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: var(--atw-shadow-soft);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.atw-hero-media{
  max-width: 580px;
  width: 100%;
  margin-inline: auto;
}

/* =========================================================
   Image frame
   ========================================================= */
.atw-image-box{
  position: relative;
  overflow: hidden;
  border-radius: var(--atw-radius-lg);
  isolation: isolate;
}

.atw-image-box::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
  pointer-events: none;
}

.atw-image-box img{
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 900ms var(--atw-ease-soft), filter 400ms var(--atw-ease);
}

/* =========================================================
   Pills
   ========================================================= */
.atw-pill-list{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.atw-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--atw-line);
  color: var(--atw-text-2);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* =========================================================
   Cards / Stats / Steps
   ========================================================= */
.atw-card,
.atw-step,
.atw-stat{
  position: relative;
  border-radius: var(--atw-radius-md);
  border: 1px solid var(--atw-line);
  background: rgba(255,255,255,.9);
  box-shadow: var(--atw-shadow-soft);
  transition:
    transform var(--atw-ease),
    box-shadow var(--atw-ease),
    border-color var(--atw-ease),
    background var(--atw-ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.atw-card,
.atw-step{
  padding: clamp(22px, 2vw, 30px);
}

.atw-card-lg{
  padding: clamp(26px, 2.7vw, 36px);
}

.atw-card-soft{
  background: linear-gradient(180deg, #fcfeff 0%, #f0f8fa 100%);
}

.atw-card-dark{
  background:
    radial-gradient(circle at 80% 10%, rgba(28,199,216,.10), transparent 28%),
    linear-gradient(135deg, #0f172a 0%, #172235 100%);
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 22px 60px rgba(2,6,23,.22);
}

.atw-step{
  background: linear-gradient(180deg, #ffffff 0%, #f7fcfd 100%);
  min-height: 100%;
}

.atw-mini-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 20px;
}

@media (min-width: 640px){
  .atw-mini-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.atw-mini-icon{
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ecf9fc 0%, #e2f5f9 100%);
  border: 1px solid #d2edf2;
  color: var(--atw-blue-700);
  margin-bottom: 18px;
  font-size: 20px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.72),
    0 10px 20px rgba(17,134,212,.08);
}

.atw-card-dark .atw-mini-icon{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.08);
  color: #8debf3;
}

.atw-route{
  display: flex;
  flex-direction: column;
  height: 100%;
}

.atw-route h3{
  margin: 0 0 12px;
  font-size: clamp(1.42rem, 2.1vw, 1.68rem);
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--atw-slate-900);
}

.atw-route h4{
  margin: 0 0 14px;
  font-size: 1.06rem;
  line-height: 1.68;
  font-weight: 700;
  color: #33506b;
}

.atw-route p{
  margin: 0;
  color: var(--atw-muted);
  font-size: 1.06rem;
  line-height: 1.88;
}

.atw-route-body{
  flex: 1 1 auto;
}

.atw-route-actions{
  margin-top: 24px;
}

.atw-list{
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 14px;
}

.atw-list li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--atw-text-2);
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.82;
}

.atw-list li i{
  margin-top: 5px;
  color: var(--atw-aqua-600);
  flex: 0 0 auto;
}

.atw-card-dark .atw-list li{
  color: rgba(255,255,255,.86);
}

.atw-card-dark .atw-list li i{
  color: #8debf3;
}

.atw-option{
  padding: 20px 0;
  border-top: 1px solid var(--atw-line);
}

.atw-metrics-wrap{
  position: relative;
  border-radius: var(--atw-radius-xl);
  padding: clamp(26px, 3vw, 42px);
  background: linear-gradient(180deg, #f8fcfd 0%, #eef8fa 100%);
  border: 1px solid var(--atw-line);
  box-shadow: var(--atw-shadow-soft);
  overflow: hidden;
}

.atw-metrics-wrap::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(28,199,216,.08), transparent 26%),
    radial-gradient(circle at 0% 100%, rgba(17,134,212,.06), transparent 24%);
  pointer-events: none;
}

.atw-metrics-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 28px;
}

@media (min-width: 640px){
  .atw-metrics-grid{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (min-width: 992px){
  .atw-metrics-grid{
    grid-template-columns: repeat(4, minmax(0,1fr));
  }
}

.atw-stat{
  text-align: center;
  padding: 24px 18px;
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255,255,255,.94);
  overflow: hidden;
}

.atw-stat::after{
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28,199,216,.16), transparent 68%);
  pointer-events: none;
}

.atw-stat i{
  color: var(--atw-blue-700);
  font-size: 22px;
  margin-bottom: 14px;
}

.atw-stat .n{
  font-size: clamp(2.2rem, 2.8vw, 3rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--atw-slate-900);
  margin-bottom: 12px;
}

.atw-stat .l{
  font-size: 1.06rem;
  line-height: 1.58;
  color: var(--atw-text-2);
  font-weight: 700;
}

.atw-soft-note,
.atw-tagline{
  margin-top: 16px;
  color: var(--atw-blue-700);
  font-size: 1.3rem;
  line-height: 1.76;
  font-weight: 700;
}

.atw-footer-cta{
  position: relative;
  max-width: 1220px;
  margin-inline: auto;
  padding: clamp(30px, 3.4vw, 50px);
  border-radius: var(--atw-radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,.94) 0%, rgba(247,252,253,.94) 100%);
  border: 1px solid var(--atw-line);
  box-shadow: var(--atw-shadow-md);
  text-align: center;
  overflow: hidden;
}

.atw-footer-cta::after{
  content: "AT WATER";
  position: absolute;
  right: 0;
  bottom: -10px;
  font-size: clamp(28px, 4vw, 76px);
  font-weight: 800;
  letter-spacing: .18em;
  color: rgba(10, 26, 45, .035);
  pointer-events: none;
  white-space: nowrap;
}

.atw-footer-cta h2{
  margin: 16px 0 12px;
  font-size: clamp(2.1rem, 3.2vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 800;
  color: var(--atw-slate-900);
  text-wrap: balance;
}

.atw-footer-cta p{
  margin: 0;
  font-size: var(--atw-fs-body-lg);
  line-height: 1.86;
  color: var(--atw-muted);
}

/* =========================================================
   CTA / Buttons
   ========================================================= */
.atw-cta,
.atw-actions-row{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
}

.atw-cta--center{
  justify-content: center;
}

.atw-actions-row{
  justify-content: center;
  margin-top: 26px;
}

.atw-red-page .atw-btn,
.atw-red-page a.atw-btn,
.atw-red-page a.button.atw-btn{
  appearance: none !important;
  -webkit-appearance: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  min-height: var(--atw-btn-h) !important;
  padding: 0 22px !important;
  width: auto !important;
  max-width: max-content !important;
  border: 1px solid transparent !important;
  border-radius: 15px !important;
  font-family: inherit !important;
  font-size: 1.4rem !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
  letter-spacing: .01em !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
  transition:
    transform var(--atw-ease),
    box-shadow var(--atw-ease),
    border-color var(--atw-ease),
    background var(--atw-ease),
    color var(--atw-ease) !important;
}

.atw-red-page .atw-btn::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0));
  pointer-events: none;
}

.atw-red-page .atw-btn::after{
  content: "";
  position: absolute;
  inset: auto auto -50% -20%;
  width: 60%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: rotate(18deg) translateX(-140%);
  transition: transform .7s var(--atw-ease-soft);
  pointer-events: none;
}

.atw-red-page .atw-btn i,
.atw-red-page .atw-btn span{
  position: relative;
  z-index: 1;
}

.atw-red-page .atw-btn i{
  font-size: .95rem !important;
  line-height: 1 !important;
}

.atw-btn-dark{
  color: #fff !important;
  background: linear-gradient(180deg, #1a2d46 0%, #0f172a 100%) !important;
  box-shadow: var(--atw-shadow-dark) !important;
}

.atw-btn-green{
  color: #fff !important;
  background: linear-gradient(180deg, var(--atw-aqua-500) 0%, var(--atw-aqua-600) 100%) !important;
  box-shadow: var(--atw-shadow-aqua) !important;
}

.atw-btn-blue{
  color: #fff !important;
  background: linear-gradient(180deg, var(--atw-blue-500) 0%, var(--atw-blue-600) 100%) !important;
  box-shadow: var(--atw-shadow-blue) !important;
}

.atw-btn-ghost{
  color: var(--atw-slate-900) !important;
  background: rgba(255,255,255,.94) !important;
  border-color: var(--atw-line) !important;
  box-shadow: var(--atw-shadow-soft) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.atw-red-page .atw-btn:focus-visible{
  outline: 3px solid rgba(17,134,212,.22);
  outline-offset: 3px;
}

@media (hover:hover) and (pointer:fine){
  .atw-card:hover,
  .atw-step:hover,
  .atw-stat:hover{
    transform: translateY(-4px);
    border-color: var(--atw-line-strong);
    box-shadow: var(--atw-shadow-md);
  }

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

  .atw-red-page .atw-btn:hover::after{
    transform: rotate(18deg) translateX(260%);
  }

  .atw-btn-dark:hover{
    box-shadow: 0 24px 44px rgba(15,23,42,.24) !important;
  }

  .atw-btn-green:hover{
    box-shadow: 0 22px 44px rgba(18,169,189,.24) !important;
  }

  .atw-btn-blue:hover{
    box-shadow: 0 22px 44px rgba(17,134,212,.24) !important;
  }

  .atw-btn-ghost:hover{
    background: #fff !important;
    box-shadow: var(--atw-shadow-md) !important;
  }

  .atw-image-box:hover img{
    transform: scale(1.03);
  }
}

/* =========================================================
   Special decorative card
   ========================================================= */
.atw-impact-card{
  overflow: hidden;
}

.atw-impact-card::before{
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  top: -70px;
  right: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28,199,216,.16) 0%, transparent 68%);
}

.atw-impact-card::after{
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  bottom: -90px;
  left: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(51,166,234,.14) 0%, transparent 68%);
}

/* =========================================================
   Reveal / motion
   ========================================================= */
.atw-reveal{
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .7s var(--atw-ease-soft),
    transform .7s var(--atw-ease-soft);
  will-change: opacity, transform;
}

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

/* =========================================================
   Responsive finishing
   ========================================================= */
@media (max-width: 991px){
  .atw-section{
    padding-block: clamp(58px, 7vw, 80px);
  }

  .atw-title{
    font-size: clamp(2.3rem, 7vw, 3.6rem);
  }

  .atw-title--md{
    font-size: clamp(1.9rem, 5vw, 2.55rem);
  }

  .atw-block-title{
    font-size: clamp(1.75rem, 5vw, 2.3rem);
  }

  .atw-red-page::after{
    font-size: clamp(42px, 7vw, 84px);
    right: -4px;
    bottom: 38px;
  }

  .atw-hero::after,
  .atw-footer-cta::after{
    font-size: clamp(24px, 6vw, 54px);
  }
}

@media (max-width: 767px){
  .atw-band span{
    font-size: 12px;
  }

  .atw-hero,
  .atw-section-shell,
  .atw-metrics-wrap,
  .atw-footer-cta,
  .atw-card,
  .atw-step,
  .atw-image-box{
    border-radius: 22px;
  }

  .atw-hero-panel{
    padding: 18px;
    border-radius: 18px;
  }

  .atw-subtitle{
    font-size: 1.06rem;
    line-height: 1.84;
  }

  .atw-lead,
  .atw-route p,
  .atw-footer-cta p,
  .atw-list li{
    font-size: 1.3rem;
    line-height: 1.82;
  }

  .atw-block-sub,
  .atw-soft-note,
  .atw-tagline{
    font-size: 1rem;
    line-height: 1.78;
  }

  .atw-stat{
    min-height: 148px;
  }

  .atw-stat .n{
    font-size: 2.1rem;
  }

  .atw-red-page::after{
    display: none;
  }
}

@media (max-width: 640px){
  .atw-wrap{
    width: min(100% - 32px, var(--atw-container));
  }

  .atw-cta,
  .atw-actions-row{
    flex-direction: column;
    align-items: stretch;
  }

  .atw-red-page .atw-btn{
    width: 100% !important;
    max-width: none !important;
    min-height: var(--atw-btn-h-sm) !important;
    font-size: 1rem !important;
  }

  .atw-route-actions .atw-btn{
    width: 100% !important;
    max-width: none !important;
  }

  .atw-pill{
    font-size: 13px;
    padding: 8px 11px;
  }

  .atw-kicker{
    font-size: 12px;
    letter-spacing: .06em;
  }
}

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

  .atw-card,
  .atw-step,
  .atw-stat,
  .atw-red-page .atw-btn,
  .atw-image-box img,
  .atw-reveal{
    transition: none !important;
    transform: none !important;
  }
}