/* ========= BASE ========= */

:root {
  --ak-bg: #f5f7ff;
  --ak-bg-soft: #f9fbff;
  --ak-primary: #0066ff;
  --ak-primary-dark: #0046b3;
  --ak-accent: #2563eb;
  --ak-text: #0b1220;
  --ak-muted: #6b7280;
  --ak-border: #d1d8ff;
  --ak-radius-lg: 26px;
  --ak-radius-md: 20px;
  --ak-radius-sm: 12px;
  --ak-shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.12);
  --ak-shadow-card: 0 14px 30px rgba(15, 23, 42, 0.08);
  --ak-transition-fast: 160ms ease-out;
}

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

.ak-body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ak-text);
  background: #ffffff;
  scroll-behavior: smooth;
}

.ak-page {
  padding-bottom: 96px; /* for sticky bar */
}

.ak-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.ak-section {
  padding: 80px 0;
}

/* ========= STRIP (MOVING TEXT) ========= */

.ak-strip {
  background: linear-gradient(90deg, #b91c1c, #ea580c);
  color: #fff;
  font-size: 13px;
  overflow: hidden;
}

.ak-strip-inner {
  display: inline-flex;
  gap: 32px;
  padding: 6px 20px;
  font-weight: 600;
  white-space: nowrap;
  animation: ak-strip-marquee 22s linear infinite;
}

@keyframes ak-strip-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.ak-strip-inner:hover {
  animation-play-state: paused;
}

/* ========= HEADER ========= */

.ak-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
}

.ak-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.ak-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.ak-logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0%, #38bdf8, #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 16px;
}

.ak-logo-text span {
  display: block;
  font-size: 15px;
  font-weight: 600;
  font-family: "Space Grotesk", system-ui, sans-serif;
}

.ak-logo-text small {
  display: block;
  font-size: 11px;
  color: var(--ak-muted);
}

/* Nav */

.ak-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ak-nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.ak-nav-list a {
  text-decoration: none;
  font-size: 13px;
  color: var(--ak-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  position: relative;
}

.ak-nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--ak-primary);
  transition: width var(--ak-transition-fast);
}

.ak-nav-list a:hover {
  color: var(--ak-primary);
}

.ak-nav-list a:hover::after {
  width: 100%;
}

.ak-nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}

.ak-nav-toggle span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
}

/* ========= HERO – LIGHT THEME ========= */

.ak-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 0% 0%, #e0f2ff 0%, #ffffff 40%, #e0f2ff 100%);
  color: var(--ak-text);
  padding: 72px 0 80px;
}

.ak-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 0%, rgba(56, 189, 248, 0.25), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(129, 140, 248, 0.3), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.ak-hero-inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  padding: 0 0 8px;
}

.ak-hero-left {
  position: relative;
  z-index: 1;
  flex: 1.4;
  max-width: 620px;
}

.ak-hero-right {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* hero text block */

.ak-hero-tag {
  font-size: 12px;
  font-weight: 600;
  color: #0369a1;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  margin: 0 0 10px;
}

.ak-hero-title {
  margin: 0 0 18px;
  font-family: "Space Grotesk", system-ui, sans-serif;
}

.ak-hero-small {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ak-muted);
  margin-bottom: 8px;
}

.ak-hero-main {
  display: block;
  font-size: 44px;
  line-height: 1.1;
  font-weight: 700;
}

.ak-hero-main .ak-hero-rotate {
  display: block;
  margin-top: 8px;
  color: var(--ak-primary);
  font-size: 32px;
  transition: opacity 160ms ease-out;
}

.ak-hero-sub {
  margin: 16px 0 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ak-muted);
  max-width: 640px;
}

/* meta row */

.ak-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.ak-meta-pill {
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.95);
  padding: 8px 16px;
  font-size: 12px;
  border: 1px solid #dbeafe;
}

.ak-meta-label {
  font-weight: 600;
  margin-right: 4px;
  color: #1f2937;
}

.ak-meta-value {
  color: var(--ak-muted);
}

/* hero buttons */

.ak-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: "Inter", system-ui, sans-serif;
  transition:
    transform var(--ak-transition-fast),
    box-shadow var(--ak-transition-fast),
    background var(--ak-transition-fast),
    color var(--ak-transition-fast);
}

.ak-btn-primary {
  background: linear-gradient(135deg, #2563eb, #22c1c3);
  color: #ffffff;
  box-shadow: var(--ak-shadow-soft);
}

.ak-btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8, #0891b2);
  transform: translateY(-1px);
}

.ak-btn-ghost {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #cbd5f5;
  color: #0b1220;
}

.ak-btn-ghost:hover {
  background: #f3f4ff;
  transform: translateY(-1px);
}

.ak-btn-block {
  width: 100%;
}

.ak-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}

/* hero stats row */

.ak-hero-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.ak-hero-stat {
  font-size: 12px;
}

.ak-hero-stat-value {
  display: block;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.ak-hero-stat-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ak-muted);
}

/* hero right card */

.ak-hero-card {
  border-radius: var(--ak-radius-lg);
  background: #ffffff;
  color: #111827;
  box-shadow: var(--ak-shadow-soft);
  overflow: hidden;
  border: 1px solid #dbeafe;
}

.ak-hero-photo {
  position: relative;
}

.ak-hero-photo img {
  width: 100%;
  max-width: 460px;
  display: block;
  margin: 0 auto;
}

/* Floating chips */

.ak-hero-chip {
  position: absolute;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 10px;
  backdrop-filter: blur(4px);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #f9fafb;
}

.ak-chip-top-left {
  top: 16px;
  left: 16px;
}

.ak-chip-top-right {
  top: 16px;
  right: 16px;
}

.ak-chip-bottom {
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
}

.ak-hero-card-body {
  padding: 16px 20px 20px;
  border-top: 1px solid #e5e7eb;
}

.ak-hero-quote {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--ak-muted);
}

.ak-hero-quick {
  display: grid;
  gap: 6px;
  font-size: 12px;
}

.ak-hero-quick-label {
  display: block;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
}

.ak-hero-quick-value {
  font-weight: 500;
}

.ak-hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ak-mini-card {
  border-radius: var(--ak-radius-md);
  background: #ffffff;
  border: 1px solid #e5edff;
  padding: 10px 12px;
  font-size: 12px;
  color: #111827;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.ak-mini-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #64748b;
  margin-bottom: 4px;
}

/* ========= SECTION TITLES ========= */

.ak-section-title {
  margin: 0 0 8px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 28px;
  text-align: center;
  color: #0b1220;
}

.ak-section-sub {
  max-width: 640px;
  margin: 0 auto 30px;
  text-align: center;
  font-size: 14px;
  color: var(--ak-muted);
}

/* ========= OUTCOMES ========= */

.ak-outcomes {
  background: #ffffff;
}

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

.ak-outcome-card {
  border-radius: 28px;
  background: radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.16), transparent 60%);
  border: 1px solid #e0e7ff;
  padding: 18px 16px 18px;
  position: relative;
  overflow: hidden;
  font-size: 13px;
  color: var(--ak-muted);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  transition: transform var(--ak-transition-fast), box-shadow var(--ak-transition-fast);
}

.ak-outcome-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.6), rgba(45, 212, 191, 0.6));
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}

.ak-outcome-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ak-shadow-card);
}

.ak-outcome-card:hover::after {
  opacity: 0.18;
}

.ak-outcome-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: #0b1220;
}

.ak-outcome-icon {
  font-size: 20px;
  margin-bottom: 8px;
}

/* ========= PROGRAM MAP ========= */

.ak-program {
  background: var(--ak-bg-soft);
}

.ak-program-timeline {
  position: relative;
  margin-top: 26px;
  padding-left: 22px;
}

.ak-program-line {
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #60a5fa, #22c55e);
}

.ak-program-step {
  position: relative;
  margin-bottom: 24px;
}

.ak-program-dot {
  position: absolute;
  left: 2px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #2563eb;
  box-shadow: 0 0 0 6px rgba(191, 219, 254, 0.9);
}

.ak-program-content {
  background: #ffffff;
  border-radius: var(--ak-radius-md);
  border: 1px solid #d1e3ff;
  padding: 12px 14px;
}

.ak-program-week {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  background: #eff6ff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1d4ed8;
  margin-bottom: 6px;
}

.ak-program-content h3 {
  margin: 0 0 4px;
  font-family: "Space Grotesk";
  font-size: 16px;
}

.ak-program-content p {
  margin: 0;
  font-size: 13px;
  color: var(--ak-muted);
}

/* ========= NUMBERS ========= */

.ak-numbers {
  background: linear-gradient(180deg, #e0f2ff 0%, #f5fbff 60%, #ffffff 100%);
  padding-bottom: 40px;
}

.ak-numbers-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
}

.ak-numbers-card {
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #d1e3ff;
  text-align: center;
}

.ak-numbers-value {
  display: block;
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 20px;
  color: #1d4ed8;
}

.ak-numbers-label {
  font-size: 13px;
  color: #1f2937;
}

.ak-numbers-map {
  max-width: 760px;
  margin: 0 auto;
}

.ak-numbers-map img {
  width: 100%;
  display: block;
}

/* ========= WINS ========= */

.ak-wins {
  background: #ffffff;
}

.ak-wins-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ak-win-card {
  border-radius: var(--ak-radius-md);
  border: 1px solid #e5e7eb;
  overflow: hidden;
  background: #f9fafb;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: var(--ak-muted);
  transition: transform var(--ak-transition-fast), box-shadow var(--ak-transition-fast);
}

.ak-win-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ak-shadow-card);
}

.ak-win-thumb img {
  width: 100%;
  display: block;
}

.ak-win-meta {
  padding: 10px 11px 12px;
}

.ak-win-meta span {
  display: block;
  font-size: 11px;
  color: #0369a1;
  margin-bottom: 4px;
}

.ak-win-meta p {
  margin: 0;
}

/* ========= ALL-ROUNDER ========= */

.ak-allrounder {
  background: var(--ak-bg-soft);
}

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

.ak-all-block {
  border-radius: var(--ak-radius-md);
  background: #ffffff;
  border: 1px solid #dbeafe;
  padding: 16px 18px;
  font-size: 13px;
  color: var(--ak-muted);
}

.ak-all-block h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-family: "Space Grotesk";
}

.ak-all-block ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

/* ========= ABOUT ========= */

.ak-about {
  background: #ffffff;
  color: #111827;
}

.ak-about-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(320px, 2.4fr);
  gap: 36px;
  align-items: center;
}

.ak-about-title {
  text-align: left;
  color: #0b1220;
}

.ak-about-sub {
  text-align: left;
  color: var(--ak-muted);
}

.ak-about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.ak-about-pills span {
  border-radius: 999px;
  padding: 6px 10px;
  border: 1px solid #e5e7eb;
  font-size: 11px;
  background: #f9fafb;
}

.ak-about-text {
  font-size: 13px;
  color: #4b5563;
}

.ak-about-right {
  position: relative;
}

.ak-alumni-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--ak-radius-lg);
  background: radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.18), #ffffff);
  border: 1px solid #e0e7ff;
  box-shadow: var(--ak-shadow-soft);
}

.ak-alumni-track {
  display: flex;
  transition: transform 0.4s ease-out;
}

.ak-alumni-card {
  min-width: 100%;
  max-width: 100%;
  padding: 16px 16px 18px;
  font-size: 13px;
}

.ak-alumni-card img {
  width: 100%;
  border-radius: 16px;
  display: block;
  margin-bottom: 8px;
}

.ak-alumni-card p {
  margin: 0;
}

.ak-alumni-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.ak-alumni-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(148, 163, 184, 0.6);
  cursor: pointer;
}

.ak-alumni-dots button.ak-dot-active {
  width: 18px;
  background: #111827;
}

/* ========= FAQ ========= */

.ak-faq {
  background: #ffffff;
}

.ak-faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.ak-faq-item {
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  margin-bottom: 10px;
  overflow: hidden;
  background: #f9fafb;
}

.ak-faq-header {
  width: 100%;
  padding: 12px 16px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

.ak-faq-icon {
  font-size: 20px;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform var(--ak-transition-fast);
}

.ak-faq-body {
  max-height: 0;
  overflow: hidden;
  font-size: 13px;
  color: var(--ak-muted);
  padding: 0 16px;
  transition: max-height 220ms ease, padding-bottom 220ms ease;
}

.ak-faq-open .ak-faq-body {
  max-height: 160px;
  padding-bottom: 12px;
}

.ak-faq-open .ak-faq-icon {
  transform: rotate(45deg);
}

/* ========= ENROLL ========= */

.ak-enroll {
  background: var(--ak-bg-soft);
}

.ak-enroll-inner {
  display: grid;
  grid-template-columns: minmax(0, 3.2fr) minmax(280px, 2.1fr);
  gap: 30px;
  align-items: flex-start;
}

.ak-enroll-copy h2 {
  font-family: "Space Grotesk";
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 8px;
}

.ak-enroll-copy p {
  font-size: 14px;
  color: var(--ak-muted);
}

.ak-enroll-copy ul {
  margin: 10px 0 0;
  padding-left: 18px;
  font-size: 14px;
  color: var(--ak-muted);
}

.ak-enroll-card {
  border-radius: var(--ak-radius-lg);
  background: #ffffff;
  border: 1px solid #dbe5ff;
  box-shadow: var(--ak-shadow-card);
  padding: 18px 18px 16px;
}

.ak-enroll-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.ak-price-main {
  font-family: "Space Grotesk";
  font-size: 26px;
  font-weight: 700;
}

.ak-price-cut {
  font-size: 14px;
  text-decoration: line-through;
  color: var(--ak-muted);
}

.ak-price-off {
  font-size: 12px;
  color: #15803d;
  font-weight: 600;
}

.ak-enroll-deadline {
  font-size: 13px;
  margin: 8px 0 14px;
}

.ak-enroll-note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--ak-muted);
}

/* ========= STICKY BAR ========= */

.ak-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0b1120;
  border-top: 1px solid #111827;
  z-index: 60;
}

.ak-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 20px;
  color: #e5e7eb;
}

.ak-sticky-left {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.ak-sticky-price {
  font-family: "Space Grotesk";
  font-size: 20px;
  font-weight: 700;
  color: #facc15;
}

.ak-sticky-text {
  font-size: 13px;
}

.ak-sticky-btn {
  padding-inline: 26px;
}

/* ========= SCROLL REVEAL ========= */

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 360ms ease-out, transform 360ms ease-out;
}

[data-reveal].ak-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========= RESPONSIVE ========= */

@media (max-width: 992px) {
  .ak-section {
    padding: 64px 0;
  }

  .ak-header-inner {
    height: 64px;
  }

  /* more breathing room on sides */
  .ak-container {
    padding: 0 28px;
  }

  /* TEXT FIRST, IMAGE SECOND */
  .ak-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .ak-hero-left {
    max-width: 100%;
    order: 1;
  }

  .ak-hero-right {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    order: 2;
  }

  .ak-hero-main {
    font-size: 36px;
  }

  .ak-hero-main .ak-hero-rotate {
    font-size: 26px;
  }

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

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

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

  .ak-about-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .ak-enroll-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .ak-nav-toggle {
    display: flex;
  }

  .ak-nav-list {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    flex-direction: column;
    gap: 10px;
    padding: 10px 20px 14px;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.16s ease-out, opacity 0.16s ease-out;
  }

  .ak-nav-list.ak-nav-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

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

  .ak-outcome-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ak-wins-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ak-allrounder-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ak-sticky-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .ak-sticky-left {
    justify-content: space-between;
  }
}

@media (max-width: 520px) {
  /* even more padding on very small phones */
  .ak-container {
    padding: 0 30px;
  }

  .ak-hero-main {
    font-size: 32px;
  }

  .ak-hero-main .ak-hero-rotate {
    font-size: 24px;
  }

  .ak-hero-mini-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ak-strip-inner {
    justify-content: flex-start;
  }

  /* mobile: hide bottom pill so it doesn't cover image text */
  .ak-chip-bottom {
    display: none;
  }

  .ak-chip-top-left,
  .ak-chip-top-right {
    padding: 5px 10px;
    font-size: 9px;
  }
}
