:root {
  --lp-font-display: 'Cabinet Grotesk', system-ui, -apple-system, sans-serif;
  --lp-font-body: 'Satoshi', system-ui, -apple-system, sans-serif;
  --lp-text-hero: clamp(2.75rem, 2rem + 3.75vw, 4.5rem);
  --lp-text-section: clamp(1.875rem, 1.5rem + 1.875vw, 3rem);
  --lp-text-body-lg: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  --lp-text-body: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
  --lp-text-sm: clamp(0.8125rem, 0.78rem + 0.16vw, 0.9375rem);
  --lp-text-xs: clamp(0.6875rem, 0.66rem + 0.13vw, 0.75rem);
  --lp-section-py: clamp(5rem, 3.5rem + 6vw, 9rem);
  --lp-section-px: clamp(1.25rem, 0.75rem + 2.5vw, 3rem);
  --lp-gap: clamp(2rem, 1.5rem + 2.5vw, 4rem);
  --lp-container: 1200px;
  --lp-narrow: 720px;
  --lp-text-max: 520px;
  --lp-header-h: 72px;
  --lp-dark: #0B1120;
  --lp-dark-surface: #111827;
  --lp-dark-border: rgba(255, 255, 255, 0.08);
  --lp-glass-bg: rgba(255, 255, 255, 0.55);
  --lp-glass-border: rgba(255, 255, 255, 0.4);
  --lp-glass-blur: 16px;
}
@keyframes lpFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lpBounceIn {
  0%   { opacity: 0; transform: translateY(32px) scale(0.97); }
  60%  { opacity: 1; transform: translateY(-4px) scale(1.01); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes lpMeshDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%      { transform: translate(40px, -30px) scale(1.08); }
  50%      { transform: translate(-20px, 20px) scale(0.95); }
  75%      { transform: translate(25px, 10px) scale(1.03); }
}
@keyframes lpMeshDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(-35px, 25px) scale(1.05); }
  66%      { transform: translate(20px, -15px) scale(0.97); }
}
@keyframes lpFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes lpGlow {
  0%, 100% { box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12), 0 8px 32px rgba(79, 70, 229, 0.08); }
  50%      { box-shadow: 0 0 0 6px rgba(79, 70, 229, 0.18), 0 8px 40px rgba(79, 70, 229, 0.12); }
}
@keyframes lpClockTick {
  0%   { stroke-dashoffset: 20; }
  100% { stroke-dashoffset: 0; }
}
@keyframes lpClockIn {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.6); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes lpClockOut {
  0%   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(0.85); }
}
@keyframes lpWordReveal {
  0%   { opacity: 0; transform: translateY(4px); filter: blur(4px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes lpHighlightSweep {
  0%   { background-size: 0% 100%; }
  100% { background-size: 100% 100%; }
}
@keyframes lpKeywordSweep {
  0%   { background-size: 0% 2px; }
  100% { background-size: 100% 2px; }
}
@keyframes lpClasseIn {
  0%   { color: transparent; transform: translateY(2px); }
  100% { color: inherit; transform: translateY(0); }
}
.lp-body {
  font-family: var(--lp-font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
.lp-skip {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.75rem 1.5rem;
  background: var(--color-cta);
  color: #fff;
  font-family: var(--lp-font-body);
  font-size: var(--lp-text-sm);
  font-weight: 600;
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform 0.2s ease;
  border-radius: 0 0 var(--radius-md) 0;
  text-decoration: none;
}
.lp-skip:focus {
  transform: translateY(0);
  outline: 3px solid var(--color-cta);
  outline-offset: 2px;
}
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  padding: 0 var(--lp-section-px);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease, background 0.4s ease, backdrop-filter 0.4s ease;
}
.lp-header.is-scrolled {
  border-bottom-color: var(--color-border);
  background: rgba(248, 250, 252, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.lp-header-inner {
  max-width: var(--lp-container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--lp-header-h);
  gap: var(--space-4);
}
.lp-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}
.lp-logo-img {
  height: 52px;
  width: auto;
  display: block;
}
.lp-logo-sep {
  width: 1px;
  height: 24px;
  background: var(--color-border);
  flex-shrink: 0;
}
.lp-logo-school {
  height: 44px;
  width: auto;
  display: block;
}
.lp-header-nav {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.lp-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--lp-header-h) + 3rem) var(--lp-section-px) var(--lp-section-py);
  overflow: hidden;
  background-color: var(--color-background);
}
.lp-hero-mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.lp-mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}
.lp-mesh-blob:nth-child(1) {
  width: clamp(350px, 40vw, 650px);
  height: clamp(350px, 40vw, 650px);
  background: rgba(79, 70, 229, 0.10);
  top: -12%;
  left: -6%;
  animation: lpMeshDrift1 24s ease-in-out infinite;
}
.lp-mesh-blob:nth-child(2) {
  width: clamp(300px, 35vw, 550px);
  height: clamp(300px, 35vw, 550px);
  background: rgba(37, 99, 235, 0.07);
  bottom: -8%;
  right: -6%;
  animation: lpMeshDrift2 20s ease-in-out infinite;
}
.lp-mesh-blob:nth-child(3) {
  width: clamp(220px, 28vw, 420px);
  height: clamp(220px, 28vw, 420px);
  background: rgba(99, 102, 241, 0.05);
  top: 38%;
  left: 45%;
  animation: lpMeshDrift1 28s ease-in-out infinite;
  animation-delay: -9s;
}
.lp-hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}
.lp-hero-deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
}
.lp-hero-deco--left {
  left: clamp(-2rem, 1vw - 3rem, 1rem);
  top: 42%;
  transform: translateY(-50%) translateY(28px);
  transition: opacity 800ms ease-out, transform 800ms ease-out;
}
.lp-hero-deco--left .lp-hero-deco-img {
  width: clamp(280px, 32vw, 600px);
}
.lp-hero-deco--right {
  right: clamp(-2rem, 1vw - 3rem, 1rem);
  top: 38%;
  transform: translateY(-50%) translateX(28px);
  transition: opacity 900ms ease-out, transform 900ms ease-out;
}
.lp-hero-deco.is-visible {
  opacity: 0.9;
  transform: translateY(-50%);
}
.lp-hero-deco-img {
  display: block;
  width: clamp(320px, 38vw, 720px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(79, 70, 229, 0.08));
}
.lp-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  width: 100%;
}
.lp-hero-content > * {
  opacity: 0;
  animation: lpFadeUp 650ms ease-out forwards;
}
.lp-hero-content > :nth-child(1) {
  animation: none;
  opacity: 0;
}
.lp-hero-content > :nth-child(2) { animation-delay: 1800ms; }
.lp-hero-content > :nth-child(3) {
  animation: lpBounceIn 750ms ease-out 2000ms forwards;
  opacity: 0;
}
.lp-hero-content > :nth-child(4) { animation-delay: 2200ms; }
.lp-hero-title {
  font-family: var(--lp-font-display);
  font-size: var(--lp-text-hero);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--color-text-primary);
  margin-bottom: var(--space-5);
}
.lp-hero-title.is-animating {
  opacity: 1;
}
.lp-title-line {
  display: inline-block;
  opacity: 0;
  transition: opacity 500ms ease, transform 0.12s ease-out;
  will-change: transform;
}
.lp-hero-title.is-animating .lp-title-line {
  opacity: 1;
}
.lp-hero-title.is-animating .lp-title-line--2 {
  transition-delay: 1100ms;
}
.lp-title-swap {
  display: inline-block;
  position: relative;
  vertical-align: baseline;
  min-width: 0;
}
.lp-title-clock {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  stroke: var(--color-cta);
  width: 1.05em;
  height: 1.05em;
}
.lp-clock-hands {
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
}
.lp-hero-title.is-animating .lp-title-clock {
  animation: lpClockIn 400ms cubic-bezier(0.34, 1.56, 0.64, 1) 200ms forwards;
}
.lp-hero-title.is-animating .lp-clock-hands {
  animation: lpClockTick 600ms ease-out 400ms forwards;
}
.lp-title-clock.is-dissolving {
  animation: lpClockOut 350ms ease-in forwards !important;
}
.lp-title-word {
  opacity: 0;
  display: inline;
  position: relative;
}
.lp-title-word.is-visible {
  animation: lpWordReveal 400ms ease-out forwards;
}
.lp-title-highlight {
  position: relative;
  display: inline;
  background-image: linear-gradient(120deg, rgba(79, 70, 229, 0.11) 0%, rgba(79, 70, 229, 0.11) 100%);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 0% 100%;
  padding: 0.06em 0.15em;
  margin: 0 -0.05em;
  border-radius: 4px;
  color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.lp-title-highlight.is-highlighted {
  animation: lpHighlightSweep 520ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards,
             lpClasseIn 400ms ease-out 340ms both;
}
.lp-hero-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  background: radial-gradient(
    420px circle at var(--glow-x, 50%) var(--glow-y, 50%),
    rgba(79, 70, 229, 0.04) 0%,
    transparent 70%
  );
}
.lp-hero:hover .lp-hero-glow {
  opacity: 1;
}
.lp-hero-sub {
  font-family: var(--lp-font-body);
  font-size: var(--lp-text-body-lg);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 500px;
  margin: 0 auto var(--space-8);
}
.lp-sub-keyword {
  background-image: linear-gradient(120deg, var(--color-cta) 0%, var(--color-cta) 100%);
  background-repeat: no-repeat;
  background-position: 0 92%;
  background-size: 0% 2px;
  transition: none;
}
.lp-sub-keyword.is-underlined {
  animation: lpKeywordSweep 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.lp-sub-keyword:nth-child(2).is-underlined { animation-delay: 120ms; }
.lp-sub-keyword:nth-child(3).is-underlined { animation-delay: 240ms; }
.lp-search {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}
.lp-search-wrap {
  position: relative;
  width: 100%;
  transition: transform 0.18s ease;
}
.lp-search-input {
  width: 100%;
  height: 64px;
  padding: 0 140px 0 24px;
  font-family: var(--lp-font-body);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  font-weight: 500;
  color: var(--color-text-primary);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05), 0 4px 12px rgba(15, 23, 42, 0.03);
  transition: border-color 0.18s ease, box-shadow 0.2s ease;
  outline: none;
}
.lp-search-input::placeholder {
  color: var(--color-text-secondary);
  font-weight: 400;
}
.lp-search-wrap:hover,
.lp-search-wrap.is-pre-focus {
  transform: translateY(-1px);
}
.lp-search-wrap:hover .lp-search-input,
.lp-search-wrap.is-pre-focus .lp-search-input {
  border-color: rgba(79, 70, 229, 0.26);
  box-shadow: 0 0 0 1px rgba(79, 70, 229, 0.14), 0 3px 10px rgba(15, 23, 42, 0.045);
}
.lp-search-input:focus {
  border-color: rgba(79, 70, 229, 0.20);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.035);
  outline: none;
}
.lp-search-input:focus-visible {
  border-color: rgba(79, 70, 229, 0.24);
  box-shadow: 0 0 0 0.5px rgba(79, 70, 229, 0.10), 0 2px 9px rgba(15, 23, 42, 0.04);
  outline: none;
}
.lp-search-wrap:focus-within,
.lp-search-wrap.is-focused {
  transform: translateY(-1.5px);
}
.lp-body .lp-search-input:focus-visible {
  outline: none;
  outline-offset: 0;
}
.lp-search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 20px;
  font-family: var(--lp-font-body);
  font-size: var(--lp-text-sm);
  font-weight: 600;
  color: #fff;
  background: var(--color-cta);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.2s ease;
  line-height: 1;
}
.lp-search-btn:hover {
  background: var(--color-cta-hover);
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.25);
}
.lp-search-btn:active {
  transform: translateY(-50%) scale(0.97);
}
.lp-search-btn svg {
  flex-shrink: 0;
}
.lp-search-wrap .autocomplete-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 140px;
  border-radius: 12px;
  margin-top: 8px;
  z-index: 25;
}
.lp-search-hint {
  margin-top: var(--space-3);
  font-family: var(--lp-font-body);
  font-size: var(--lp-text-sm);
  color: var(--color-text-secondary);
  text-align: center;
}
.lp-orario-wrap {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--lp-section-px) var(--lp-section-py);
  scroll-margin-top: calc(var(--lp-header-h) + 1rem);
}
.lp-orario-wrap .orario-results {
  transition: opacity 400ms ease, transform 400ms ease;
}
.lp-orario-wrap .orario-results:not([hidden]) {
  animation: lpResultsIn 450ms ease-out both;
}
@keyframes lpResultsIn {
  0%   { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}
.lp-feature {
  padding: var(--lp-section-py) var(--lp-section-px);
  overflow: hidden;
}
.lp-feature--alt {
  background: var(--slate-50);
}
.lp-feature-inner {
  max-width: var(--lp-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--lp-gap);
  align-items: center;
}
.lp-feature--right .lp-feature-text { order: 2; }
.lp-feature--right .lp-feature-visual { order: 1; }
.lp-feature-text {
  max-width: var(--lp-text-max);
}
.lp-feature-accent {
  display: inline-block;
  padding-left: 12px;
  border-left: 3px solid var(--color-cta);
  font-family: var(--lp-font-body);
  font-size: var(--lp-text-sm);
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
  letter-spacing: 0.01em;
}
.lp-feature-title {
  font-family: var(--lp-font-display);
  font-size: var(--lp-text-section);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
}
.lp-feature-desc {
  font-family: var(--lp-font-body);
  font-size: var(--lp-text-body-lg);
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text-secondary);
}
.lp-feature-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-feature-card {
  width: 100%;
  max-width: 520px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.03),
    0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.lp-feature-card--lean-right {
  transform: rotate(1.5deg);
}
.lp-feature-card--lean-left {
  transform: rotate(-1.5deg);
}
.lp-feature-card--lean-right:hover {
  transform: rotate(0.5deg) translateY(-4px);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.04),
    0 16px 48px rgba(0, 0, 0, 0.08);
}
.lp-feature-card--lean-left:hover {
  transform: rotate(-0.5deg) translateY(-4px);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.04),
    0 16px 48px rgba(0, 0, 0, 0.08);
}
.lp-feature-card-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.lp-about {
  padding: var(--lp-section-py) var(--lp-section-px);
  background: var(--slate-50);
}
.lp-about-inner {
  max-width: var(--lp-container);
  margin: 0 auto;
}
.lp-about-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--space-8);
}
.lp-about-title {
  font-family: var(--lp-font-display);
  font-size: var(--lp-text-section);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-bottom: var(--space-3);
}
.lp-about-subtitle {
  font-family: var(--lp-font-body);
  font-size: var(--lp-text-body);
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin: 0;
}
.lp-about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}
.lp-about-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: var(--space-5);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lp-about-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}
.lp-about-name {
  font-family: var(--lp-font-display);
  font-size: clamp(1.125rem, 1rem + 0.3vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-3);
}
.lp-about-meta {
  font-family: var(--lp-font-body);
  font-size: var(--lp-text-sm);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-2);
}
.lp-about-links {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.lp-about-link {
  font-family: var(--lp-font-body);
  font-size: var(--lp-text-sm);
  color: var(--color-accent);
  text-decoration: none;
  width: fit-content;
}
.lp-about-link:hover {
  text-decoration: underline;
}
.lp-about-link.is-disabled {
  color: var(--color-text-disabled);
}
.lp-about-link--icon {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.lp-about-link--icon svg {
  width: 0.95rem;
  height: 0.95rem;
  flex: 0 0 0.95rem;
}
.lp-cta {
  padding: var(--lp-section-py) var(--lp-section-px);
  background: var(--lp-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-cta::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(79, 70, 229, 0.15), transparent 70%);
  pointer-events: none;
}
.lp-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.lp-cta-title {
  font-family: var(--lp-font-display);
  font-size: var(--lp-text-section);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: var(--space-4);
}
.lp-cta-sub {
  font-family: var(--lp-font-body);
  font-size: var(--lp-text-body-lg);
  color: var(--slate-400);
  margin-bottom: var(--space-8);
  line-height: 1.6;
}
.lp-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 32px;
  font-family: var(--lp-font-body);
  font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
  font-weight: 600;
  color: #fff;
  background: var(--color-cta);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.15s ease;
  position: relative;
}
.lp-cta-btn:hover {
  background: var(--indigo-500);
  transform: scale(1.04);
  box-shadow:
    0 0 0 4px rgba(79, 70, 229, 0.2),
    0 12px 40px rgba(79, 70, 229, 0.3);
}
.lp-cta-btn:active {
  transform: scale(0.98);
}
.lp-cta-note {
  font-family: var(--lp-font-body);
  font-size: var(--lp-text-sm);
  color: var(--slate-500);
  margin-top: var(--space-4);
}
.lp-footer {
  padding: var(--space-8) var(--lp-section-px);
  border-top: 1px solid var(--color-border);
  background: var(--color-background);
}
.lp-footer-inner {
  max-width: var(--lp-container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.lp-footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.lp-footer-brand a {
  display: inline-flex;
  align-items: center;
}
.lp-footer-brand img {
  height: 34px;
  width: auto;
  opacity: 0.75;
}
.lp-footer-school-logo {
  height: 26px;
}
.lp-footer-brand span {
  font-family: var(--lp-font-body);
  font-size: var(--lp-text-xs);
  color: var(--color-text-secondary);
}
.lp-footer-links {
  display: flex;
  gap: var(--space-5);
}
.lp-footer-links a {
  font-family: var(--lp-font-body);
  font-size: var(--lp-text-sm);
  color: var(--color-text-secondary);
  text-decoration: none;
  position: relative;
  transition: color 0.15s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 4px;
}
.lp-footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-text-primary);
  transition: width 0.25s ease;
}
.lp-footer-links a:hover {
  color: var(--color-text-primary);
}
.lp-footer-links a:hover::after {
  width: 100%;
}
.lp-footer-copy {
  width: 100%;
  text-align: center;
  font-family: var(--lp-font-body);
  font-size: max(0.75rem, var(--lp-text-xs));
  color: var(--color-text-disabled);
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-border);
}
.lp-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-cta), var(--blue-500));
  z-index: calc(var(--z-fixed) + 1);
  pointer-events: none;
  transition: width 0.05s linear;
}
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease-out, transform 650ms ease-out;
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-stagger] > [data-reveal-child] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}
[data-reveal-stagger].is-revealed > [data-reveal-child]:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: none; }
[data-reveal-stagger].is-revealed > [data-reveal-child]:nth-child(2) { transition-delay: 120ms; opacity: 1; transform: none; }
[data-reveal-stagger].is-revealed > [data-reveal-child]:nth-child(3) { transition-delay: 240ms; opacity: 1; transform: none; }
@media (max-width: 1024px) {
  .lp-feature-inner {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 1.5rem + 2vw, 3rem);
    text-align: center;
  }
  .lp-feature-text {
    max-width: 100%;
    order: 1 !important;
  }
  .lp-feature-visual {
    order: 2 !important;
  }
  .lp-feature-card {
    max-width: 440px;
    margin: 0 auto;
  }
  .lp-hero-deco {
    display: block;
  }
  .lp-hero-deco-img {
    width: clamp(200px, 26vw, 400px);
  }
  .lp-hero-deco--left {
    left: clamp(-3rem, -1rem + -2vw, -0.5rem);
  }
  .lp-hero-deco--right {
    right: clamp(-3rem, -1rem + -2vw, -0.5rem);
  }
  .lp-feature-accent {
    display: inline-block;
  }
}
@media (max-width: 768px) {
  :root {
    --lp-header-h: 64px;
  }
  .lp-header-inner {
    height: var(--lp-header-h);
  }
  .lp-logo-img {
    height: 44px;
  }
  .lp-logo-school {
    height: 40px;
  }
  .lp-logo-school,
  .lp-logo-sep {
    display: none;
  }
  .lp-hero {
    min-height: auto;
    padding-top: calc(var(--lp-header-h) + 2.5rem);
    padding-bottom: clamp(3rem, 2.5rem + 2vw, 5rem);
  }
  .lp-hero-content {
    max-width: 100%;
  }
  .lp-title-line {
    transform: none !important;
  }
  .lp-hero-glow {
    display: none;
  }
  .lp-hero-deco {
    display: none;
  }
  .lp-title-clock {
    width: 0.85em;
    height: 0.85em;
  }
  .lp-search-input {
    height: 56px;
    padding: 0 56px 0 18px;
    border-radius: 14px;
    font-size: 1rem;
  }
  .lp-search-btn {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 10px;
    right: 6px;
    gap: 0;
  }
  .lp-search-btn-text {
    display: none;
  }
  .lp-feature {
    padding: clamp(3rem, 2.5rem + 3vw, 5rem) var(--lp-section-px);
  }
  .lp-feature-title {
    font-size: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
  }
  .lp-feature-desc {
    font-size: var(--lp-text-body);
  }
  .lp-feature-card {
    max-width: 360px;
  }
  .lp-about {
    padding: clamp(3rem, 2.5rem + 3vw, 5rem) var(--lp-section-px);
  }
  .lp-about-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .lp-feature-card--lean-right,
  .lp-feature-card--lean-left {
    transform: rotate(0);
  }
  .lp-feature-card--lean-right:hover,
  .lp-feature-card--lean-left:hover {
    transform: translateY(-3px);
  }
  .lp-cta {
    padding: clamp(3rem, 2.5rem + 3vw, 5rem) var(--lp-section-px);
  }
  .lp-cta-btn {
    min-height: 50px;
    padding: 0 24px;
    font-size: 0.9375rem;
    border-radius: 12px;
    width: 100%;
    max-width: 320px;
  }
  .lp-footer-inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-3);
  }
  .lp-footer-links {
    justify-content: center;
  }
  .lp-footer-brand span {
    display: none;
  }
  .lp-orario-wrap {
    padding: 0 var(--space-2) var(--space-6);
  }
  .session-summary {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-2);
  }
  .modal-content {
    margin: var(--space-3);
    max-height: calc(100dvh - var(--space-6));
  }
}
@media (max-width: 480px) {
  .lp-hero-content {
    padding: 0 var(--space-1);
  }
  .lp-hero-title {
    font-size: clamp(2rem, 1.5rem + 3vw, 2.75rem);
    letter-spacing: -0.02em;
  }
  .lp-hero-sub {
    font-size: var(--lp-text-body);
  }
  .lp-feature-accent {
    font-size: 12px;
  }
  .lp-feature-card {
    max-width: 100%;
  }
  .lp-cta-btn {
    max-width: 100%;
  }
  .lp-footer-links {
    flex-direction: column;
    gap: var(--space-2);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .lp-hero-content > * {
    opacity: 1;
  }
  .lp-hero-title,
  .lp-title-line,
  .lp-title-word {
    opacity: 1 !important;
  }
  .lp-title-clock {
    display: none !important;
  }
  .lp-title-highlight {
    color: inherit !important;
    background-size: 100% 100% !important;
  }
  .lp-sub-keyword {
    background-size: 100% 2px !important;
  }
  .lp-hero-glow {
    display: none;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .lp-hero-deco {
    opacity: 0.9;
    transform: translateY(-50%) !important;
    transition: none !important;
  }
  .lp-mesh-blob {
    animation: none;
  }
  .lp-feature-card--lean-right,
  .lp-feature-card--lean-left {
    transform: none;
  }
}
.lp-body :focus-visible {
  outline: 3px solid var(--color-cta);
  outline-offset: 2px;
  border-radius: 4px;
}
.lp-body :focus:not(:focus-visible) {
  outline: none;
}
@media (forced-colors: active) {
  .lp-feature-accent {
    border-left-color: ButtonText;
  }
  .lp-stat {
    border: 1px solid ButtonText;
  }
  .lp-search-input {
    border: 2px solid ButtonText;
  }
  .lp-cta-btn {
    border: 2px solid ButtonText;
  }
  .lp-feature-card {
    border: 1px solid ButtonText;
  }
}