/* ============================================
   KI ACADEMY - INDEX PAGE PREMIUM STYLES
   Academic Clean Architecture - No !important
   ============================================ */

/* Parallax Hero Background */
.hero-bg-image {
will-change: transform;
}

.hero-bg-image img {
transform: scale(1.1);
transition: transform 0.1s linear;
}

/* Fix: Hero Visual (Tablet) should not overlap */
.hero-premium-visual {
position: relative;
z-index: 2;
}

.sprint-preview-card {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border: 1px solid rgba(0, 0, 0, 0.1);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Light Mode Text Colors for Sprint Preview */
.sprint-preview-card .sprint-label {
color: #F4A261;
}

.sprint-preview-card .sprint-time {
color: rgba(0, 0, 0, 0.6);
}

.sprint-preview-card .step-num {
background: rgba(0, 0, 0, 0.05);
border: 1px solid rgba(0, 0, 0, 0.1);
color: rgba(0, 0, 0, 0.8);
}

.sprint-preview-card .sprint-step-preview.active .step-num {
background: linear-gradient(135deg, #F4A261 0%, #E76F51 100%);
color: white;
}

.sprint-preview-card .step-name {
color: #2A363B;
}

.sprint-preview-card .step-modules {
color: rgba(0, 0, 0, 0.5);
}

.sprint-preview-card .sprint-connector {
background: linear-gradient(180deg, #F4A261 0%, rgba(0, 0, 0, 0.1) 100%);
}

.sprint-preview-card .sprint-preview-footer {
border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Dark Mode Override */
[data-theme="dark"] .sprint-preview-card .sprint-time {
color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .sprint-preview-card .step-num {
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
color: rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] .sprint-preview-card .step-name {
color: white;
}

[data-theme="dark"] .sprint-preview-card .step-modules {
color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .sprint-preview-card .sprint-connector {
background: linear-gradient(180deg, #F4A261 0%, rgba(255, 255, 255, 0.2) 100%);
}

[data-theme="dark"] .sprint-preview-card .sprint-preview-footer {
border-top: 1px solid rgba(255, 255, 255, 0.15);
}

@media (max-width: 1024px) {
.hero-premium-visual {
display: none; /* Hide on mobile/tablet to prevent overlap */
}
}

/* SPIEGEL-SECTION Styles */
.spiegel-section {
padding: 100px 0;
background: linear-gradient(180deg, #FDFCF7 0%, #F5F1EB 50%, #FDFCF7 100%);
position: relative;
overflow: visible;
}

[data-theme="dark"] .spiegel-section {
background: linear-gradient(180deg, #161b24 0%, #11141c 50%, #161b24 100%);
}

[data-theme="dark"] .spiegel-section::before {
background: linear-gradient(to bottom, rgba(15, 20, 30, 0) 0%, #161b24 100%);
}

/* Smooth transition from Hero */
.spiegel-section::before {
content: '';
position: absolute;
top: -150px;
left: 0;
right: 0;
height: 150px;
background: linear-gradient(to bottom, 
  rgba(253, 252, 247, 0) 0%,
  rgba(253, 252, 247, 0.3) 30%,
  rgba(253, 252, 247, 0.7) 60%,
  #FDFCF7 100%);
pointer-events: none;
z-index: 10;
}

.spiegel-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

@media (max-width: 900px) {
.spiegel-content {
grid-template-columns: 1fr;
gap: 40px;
}
}

.spiegel-visual {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

.mirror-animation {
display: flex;
align-items: center;
justify-content: center;
gap: 30px;
padding: 40px;
background: linear-gradient(135deg, rgba(244, 162, 97, 0.1) 0%, rgba(144, 169, 85, 0.1) 100%);
border-radius: 24px;
border: 1px solid rgba(244, 162, 97, 0.2);
position: relative;
}

.human-figure, .ai-figure {
width: 100px;
height: 100px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 3rem;
position: relative;
}

.human-figure {
background: linear-gradient(135deg, #F4A261 0%, #E76F51 100%);
color: white;
box-shadow: 0 10px 40px rgba(244, 162, 97, 0.4);
}

.ai-figure {
background: linear-gradient(135deg, #5B8DEF 0%, #4A7DE0 100%);
color: white;
box-shadow: 0 10px 40px rgba(91, 139, 239, 0.4);
animation: aiPulse 3s ease-in-out infinite;
}

@keyframes aiPulse {
0%, 100% { 
box-shadow: 0 10px 40px rgba(91, 139, 239, 0.4);
transform: scale(1);
}
50% { 
box-shadow: 0 15px 50px rgba(91, 139, 239, 0.6);
transform: scale(1.05);
}
}

.mirror-line {
width: 60px;
height: 2px;
background: linear-gradient(90deg, #F4A261, #5B8DEF);
position: relative;
}

.mirror-line::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 12px;
height: 12px;
background: rgba(244, 162, 97, 0.3);
border-radius: 50%;
animation: mirrorGlow 2s ease-in-out infinite;
}

@keyframes mirrorGlow {
0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.5); }
}

.mirror-caption {
margin-top: 20px;
text-align: center;
font-size: 0.9rem;
color: #6B7280;
font-style: italic;
max-width: 300px;
}

[data-theme="dark"] .mirror-caption {
color: rgba(240, 244, 248, 0.7);
}

.spiegel-text .text-highlight {
color: #F4A261;
}

.spiegel-principles {
margin-top: 32px;
display: flex;
flex-direction: column;
gap: 20px;
}

.principle-item {
display: flex;
gap: 16px;
padding: 20px;
background: white;
border-radius: 12px;
border-left: 3px solid #F4A261;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
}

[data-theme="dark"] .principle-item {
background: rgba(40, 45, 55, 0.8);
}

.principle-item:hover {
transform: translateX(5px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.principle-icon {
width: 48px;
height: 48px;
background: linear-gradient(135deg, #F4A261 0%, #E76F51 100%);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 1.5rem;
flex-shrink: 0;
box-shadow: 0 4px 12px rgba(244, 162, 97, 0.3);
transition: all 0.3s ease;
}

.principle-item:hover .principle-icon {
transform: scale(1.1) rotate(5deg);
box-shadow: 0 6px 20px rgba(244, 162, 97, 0.4);
}

[data-theme="dark"] .principle-icon {
box-shadow: 0 4px 12px rgba(244, 162, 97, 0.2);
}

.principle-text h4 {
font-family: 'Manrope', sans-serif;
font-size: 1rem;
font-weight: 700;
color: #2A363B;
margin-bottom: 4px;
}

[data-theme="dark"] .principle-text h4 {
color: #F0F4F8;
}

.principle-text p {
font-size: 0.9rem;
color: #6B7280;
margin: 0;
line-height: 1.5;
}

[data-theme="dark"] .principle-text p {
color: rgba(240, 244, 248, 0.7);
}

@media (max-width: 768px) {
.mirror-animation {
padding: 30px 20px;
gap: 20px;
}

.human-figure, .ai-figure {
width: 70px;
height: 70px;
font-size: 2rem;
}

.mirror-line {
width: 40px;
}
}

/* TRUST SECTION - Premium Upgrade */
.trust-section {
padding: 100px 0;
background: linear-gradient(180deg, #FDFCF7 0%, #F5F1EB 100%);
position: relative;
}

[data-theme="dark"] .trust-section {
background: linear-gradient(180deg, #161b24 0%, #11141c 100%);
}

.trust-header {
text-align: center;
max-width: 800px;
margin: 0 auto 60px;
}

.trust-header h2 {
font-family: 'Manrope', sans-serif;
font-size: clamp(1.8rem, 4vw, 2.4rem);
font-weight: 700;
color: #2A363B;
margin: 16px 0 24px;
}

[data-theme="dark"] .trust-header h2 {
color: #F0F4F8;
}

.trust-story {
font-size: 1.1rem;
line-height: 1.8;
color: #6B7280;
font-style: italic;
}

[data-theme="dark"] .trust-story {
color: rgba(240, 244, 248, 0.8);
}

.trust-story em {
color: #F4A261;
font-weight: 500;
}

.trust-grid-premium {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 60px;
align-items: start;
}

@media (max-width: 900px) {
.trust-grid-premium {
grid-template-columns: 1fr;
gap: 40px;
}
}

/* Trust Pillars */
.trust-pillars {
display: flex;
flex-direction: column;
gap: 24px;
}

.trust-pillar {
display: flex;
gap: 20px;
padding: 24px;
background: white;
border-radius: 16px;
border-left: 4px solid #F4A261;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
transition: all 0.3s ease;
}

[data-theme="dark"] .trust-pillar {
background: rgba(40, 45, 55, 0.8);
}

.trust-pillar:hover {
transform: translateX(8px);
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.trust-pillar[data-pillar="privacy"] {
border-left-color: #5B8DEF;
}

.trust-pillar[data-pillar="privacy"] .pillar-icon {
background: linear-gradient(135deg, #5B8DEF 0%, #4A7DE0 100%);
}

.trust-pillar[data-pillar="expert"] {
border-left-color: #90A955;
}

.trust-pillar[data-pillar="expert"] .pillar-icon {
background: linear-gradient(135deg, #90A955 0%, #7A9048 100%);
}

.pillar-icon {
width: 56px;
height: 56px;
background: linear-gradient(135deg, #F4A261 0%, #E76F51 100%);
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 1.8rem;
flex-shrink: 0;
}

.pillar-content h4 {
font-family: 'Manrope', sans-serif;
font-size: 1.15rem;
font-weight: 700;
color: #2A363B;
margin-bottom: 6px;
}

[data-theme="dark"] .pillar-content h4 {
color: #F0F4F8;
}

.pillar-content p {
font-size: 0.95rem;
color: #6B7280;
margin: 0 0 8px;
line-height: 1.6;
}

[data-theme="dark"] .pillar-content p {
color: rgba(240, 244, 248, 0.7);
}

.pillar-meta {
font-size: 0.8rem;
color: #F4A261;
font-weight: 600;
}

/* Quote Card */
.trust-quote-premium {
display: flex;
flex-direction: column;
gap: 24px;
}

.quote-card {
background: linear-gradient(135deg, #2A363B 0%, #1e282c 100%);
border-radius: 20px;
padding: 32px;
color: white;
position: relative;
overflow: hidden;
}

.quote-card::before {
content: '';
position: absolute;
top: -50%;
right: -50%;
width: 100%;
height: 100%;
background: radial-gradient(circle, rgba(244, 162, 97, 0.1) 0%, transparent 70%);
}

.quote-icon-large {
font-size: 3rem;
color: #F4A261;
opacity: 0.6;
margin-bottom: 16px;
}

.quote-card blockquote {
margin: 0 0 24px;
position: relative;
z-index: 1;
}

.quote-card blockquote p {
font-family: 'Crimson Text', Georgia, serif;
font-size: 1.25rem;
font-style: italic;
line-height: 1.6;
margin: 0;
}

.quote-card footer {
display: flex;
align-items: center;
gap: 14px;
position: relative;
z-index: 1;
}

.quote-avatar {
width: 48px;
height: 48px;
border-radius: 50%;
overflow: hidden;
border: 2px solid #F4A261;
background: linear-gradient(135deg, #F4A261 0%, #E76F51 100%);
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: 600;
}

.quote-avatar img {
width: 100%;
height: 100%;
object-fit: cover;
}

.quote-attribution strong {
display: block;
font-family: 'Manrope', sans-serif;
font-size: 0.95rem;
}

.quote-attribution span {
font-size: 0.85rem;
opacity: 0.8;
}

/* Support Card - Soft CTA */
.support-card {
background: white;
border-radius: 16px;
padding: 28px;
text-align: center;
border: 1px solid rgba(244, 162, 97, 0.2);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .support-card {
background: rgba(40, 45, 55, 0.8);
border-color: rgba(255, 255, 255, 0.1);
}

.support-heart {
width: 60px;
height: 60px;
background: linear-gradient(135deg, rgba(244, 162, 97, 0.15) 0%, rgba(244, 162, 97, 0.05) 100%);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 16px;
color: #F4A261;
font-size: 1.8rem;
animation: gentlePulse 3s ease-in-out infinite;
}

@keyframes gentlePulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
}

.support-text {
color: #6B7280;
margin-bottom: 20px;
line-height: 1.6;
}

[data-theme="dark"] .support-text {
color: rgba(240, 244, 248, 0.8);
}

.btn-support-soft {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 14px 28px;
background: linear-gradient(135deg, #F4A261 0%, #E76F51 100%);
color: white;
font-weight: 600;
text-decoration: none;
border-radius: 50px;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(244, 162, 97, 0.3);
}

.btn-support-soft:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(244, 162, 97, 0.4);
}

.support-hint {
display: block;
margin-top: 12px;
font-size: 0.75rem;
color: #9CA3AF;
}

/* Trust Badges Row */
.trust-badges-row {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
margin-top: 60px;
padding-top: 40px;
border-top: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .trust-badges-row {
border-color: rgba(255, 255, 255, 0.1);
}

.trust-badge-item {
display: flex;
align-items: center;
gap: 8px;
padding: 10px 18px;
background: rgba(144, 169, 85, 0.1);
border-radius: 100px;
font-size: 0.9rem;
color: #2A363B;
font-weight: 500;
}

[data-theme="dark"] .trust-badge-item {
background: rgba(144, 169, 85, 0.15);
color: #F0F4F8;
}

.trust-badge-item i {
color: #90A955;
font-size: 1.1rem;
}

@media (max-width: 768px) {
.trust-pillar {
padding: 20px;
}

.pillar-icon {
width: 48px;
height: 48px;
font-size: 1.4rem;
}

.quote-card {
padding: 24px;
}

.quote-card blockquote p {
font-size: 1.1rem;
}

.trust-badges-row {
gap: 12px;
}

.trust-badge-item {
font-size: 0.8rem;
padding: 8px 14px;
}
}

/* PARALLAX QUOTE SECTIONS */
.parallax-quote-section {
position: relative;
min-height: 70vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
padding: 100px 24px;
}

.parallax-bg {
position: absolute;
inset: 0;
background-size: cover;
background-position: center;
background-attachment: fixed;
z-index: 0;
transform: scale(1.1);
}

/* Fallback für Mobile */
@media (max-width: 768px) {
.parallax-bg {
background-attachment: scroll;
}
}

.parallax-overlay {
position: absolute;
inset: 0;
background: linear-gradient(
135deg,
rgba(42, 54, 59, 0.65) 0%,
rgba(42, 54, 59, 0.55) 40%,
rgba(42, 54, 59, 0.45) 70%,
rgba(244, 162, 97, 0.15) 100%
);
z-index: 1;
}

.parallax-content {
position: relative;
z-index: 2;
max-width: 800px;
text-align: center;
color: white;
}

.quote-icon {
font-size: 4rem;
color: #F4A261;
opacity: 0.6;
margin-bottom: 20px;
display: inline-block;
}

.parallax-quote {
font-family: 'Crimson Text', Georgia, serif;
font-size: clamp(1.8rem, 4.5vw, 2.6rem);
font-style: italic;
line-height: 1.6;
margin-bottom: 40px;
text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
letter-spacing: 0.01em;
}

.parallax-quote-author {
display: flex;
align-items: center;
justify-content: center;
gap: 16px;
}

.author-avatar {
width: 56px;
height: 56px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.4rem;
color: white;
}

.author-info {
text-align: left;
}

.author-name {
font-family: 'Manrope', sans-serif;
font-weight: 600;
font-size: 1.1rem;
color: white;
margin: 0;
}

.author-title {
font-size: 0.9rem;
color: rgba(255, 255, 255, 0.7);
margin: 4px 0 0;
}

@media (max-width: 768px) {
.parallax-quote-section {
min-height: 50vh;
padding: 60px 20px;
}

.parallax-quote {
font-size: 1.3rem;
}
}

/* Sprint Cards Enhanced Hover */
.sprint-card {
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
}

.sprint-card::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
transition: left 0.5s;
}

.sprint-card:hover::before {
left: 100%;
}

.sprint-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* For Whom Cards Enhanced */
.for-whom-card {
border-left: 4px solid var(--card-accent, #F4A261);
background: var(--card-bg, rgba(244, 162, 97, 0.05));
transition: all 0.3s ease;
}

.for-whom-card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.for-whom-icon {
transition: transform 0.3s ease;
}

.for-whom-card:hover .for-whom-icon {
transform: scale(1.1) rotate(5deg);
}

/* Progress Steps Enhanced */
.progress-step {
transition: all 0.3s ease;
}

.progress-step.available .step-circle {
background: linear-gradient(135deg, rgba(244, 162, 97, 0.2) 0%, rgba(244, 162, 97, 0.1) 100%);
border: 2px solid rgba(244, 162, 97, 0.4);
color: #F4A261;
}

.progress-step.available:hover .step-circle {
background: linear-gradient(135deg, #F4A261 0%, #E76F51 100%);
color: white;
transform: scale(1.1);
}

/* Certificate Banner Glow */
.certificate-banner {
position: relative;
overflow: hidden;
}

.certificate-banner::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(144, 169, 85, 0.1) 0%, transparent 60%);
animation: rotateGlow 20s linear infinite;
}

@keyframes rotateGlow {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}

/* Trust Quote Animation */
.trust-quote {
position: relative;
}

.trust-quote::before {
content: '"';
position: absolute;
top: -20px;
left: 10px;
font-size: 6rem;
color: rgba(244, 162, 97, 0.2);
font-family: Georgia, serif;
line-height: 1;
}

/* Hero Feeling Check Styles -->
.hero-feeling-check {
margin: 28px 0;
padding: 20px;
background: rgba(255, 255, 255, 0.08);
backdrop-filter: blur(10px);
border-radius: 16px;
border: 1px solid rgba(255, 255, 255, 0.1);
}

.feeling-check-label {
color: rgba(255, 255, 255, 0.8);
font-size: 0.95rem;
margin-bottom: 16px;
text-align: center;
}

.feeling-options {
display: flex;
gap: 12px;
justify-content: center;
flex-wrap: wrap;
}

.feeling-option {
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
padding: 16px 20px;
background: rgba(255, 255, 255, 0.05);
border: 2px solid rgba(255, 255, 255, 0.15);
border-radius: 12px;
cursor: pointer;
transition: all 0.3s ease;
min-width: 90px;
}

.feeling-option:hover {
background: rgba(255, 255, 255, 0.12);
border-color: rgba(244, 162, 97, 0.5);
transform: translateY(-2px);
}

.feeling-option.selected {
background: linear-gradient(135deg, rgba(244, 162, 97, 0.2) 0%, rgba(231, 111, 81, 0.15) 100%);
border-color: #F4A261;
box-shadow: 0 8px 30px rgba(244, 162, 97, 0.3);
}

.feeling-option i {
font-size: 1.8rem;
color: rgba(255, 255, 255, 0.9);
transition: all 0.3s ease;
}

.feeling-option.selected i {
color: #F4A261;
transform: scale(1.1);
}

.feeling-option span {
font-size: 0.8rem;
color: rgba(255, 255, 255, 0.8);
font-weight: 500;
}

.feeling-option.selected span {
color: #F4A261;
}

/* Pulse Animation for hint */
@keyframes feelingPulse {
0%, 100% { 
box-shadow: 0 0 0 0 rgba(244, 162, 97, 0.4);
}
50% { 
box-shadow: 0 0 0 10px rgba(244, 162, 97, 0);
}
}

.feeling-option.pulse-hint {
animation: feelingPulse 2s ease-in-out infinite;
border-color: rgba(244, 162, 97, 0.5);
}

.feeling-option.pulse-hint:hover {
animation: none;
}

.feeling-feedback {
margin-top: 16px;
padding: 16px;
background: rgba(144, 169, 85, 0.15);
border-radius: 10px;
border-left: 3px solid #90A955;
display: none;
}

.feeling-feedback.show {
display: block;
animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
from { opacity: 0; transform: translateY(-10px); }
to { opacity: 1; transform: translateY(0); }
}

.feeling-feedback p {
color: rgba(255, 255, 255, 0.95);
margin: 0;
font-size: 0.9rem;
line-height: 1.5;
}

.feeling-feedback strong {
color: #90A955;
}

@media (max-width: 480px) {
.feeling-options {
gap: 8px;
}

.feeling-option {
padding: 12px 14px;
min-width: 80px;
}

.feeling-option i {
font-size: 1.5rem;
}

.feeling-option span {
font-size: 0.75rem;
}
}

/* ============================================
   CLASSROOM MODE
   ============================================ */
body.classroom-mode {
  font-size: 1.35rem;
  line-height: 1.7;
}

body.classroom-mode .container-premium,
body.classroom-mode .sprint-container {
  max-width: 100%;
  padding-left: 60px;
  padding-right: 60px;
}

body.classroom-mode .hero-premium-title {
  font-size: clamp(3rem, 6vw, 5rem);
}

body.classroom-mode .hero-premium-subtitle {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

body.classroom-mode .section-title-premium {
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
}

body.classroom-mode .section-subtitle-premium {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

body.classroom-mode p,
body.classroom-mode li {
  font-size: 1.25rem;
  line-height: 1.8;
}

body.classroom-mode .sprint-card h3 {
  font-size: 1.5rem;
}

body.classroom-mode .sprint-card p {
  font-size: 1.15rem;
}

body.classroom-mode .module-item {
  font-size: 1.2rem;
}

body.classroom-mode .hero-cta-premium {
  font-size: 1.3rem;
  padding: 22px 44px;
}

body.classroom-mode .sprint-toggle {
  font-size: 1.2rem;
  padding: 18px 32px;
}
