:root {
  --blue: #164be5;
  --navy: #102349;
  --muted: #52627a;
  --ice: #edf3fc;
  --yellow: #f9e76c;
  --line: #dbe3ee;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}

body {
  margin: 0;
  color: var(--navy);
  background: white;
  font-family: 'DM Sans',Arial,sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

button {
  font: inherit;
}

button,a,summary {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,button:focus-visible,summary:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 5px;
}

.announcement {
  padding: 9px 20px;
  text-align: center;
  background: var(--blue);
  color: white;
  font-size: 14px;
}

header {
  max-width: 1440px;
  padding: 23px 5%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: Manrope,Arial,sans-serif;
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -1px;
  white-space: nowrap;
}

.logo span {
  font-weight: 500;
}

.logo b {
  color: var(--blue);
}

.brand-icon {
  display: inline-block;
  width: 36px;
  height: 36px;
  vertical-align: middle;
  margin-right: 8px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  font-size: 14px;
  font-weight: 600;
}

nav a:hover {
  color: var(--blue);
}

.button {
  background: var(--blue);
  color: white;
  padding: 17px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  transition: background .2s,transform .2s;
  border: 0;
  cursor: pointer;
}

.button:hover {
  background: #103bc0;
  transform: translateY(-2px);
}

.button span {
  font-size: 22px;
  line-height: 1;
}

.hero {
  max-width: 1440px;
  margin: auto;
  padding: 35px 5% 48px;
  display: grid;
  grid-template-columns: 1.06fr 1fr;
  gap: 45px;
  align-items: center;
}

.eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.9px;
  color: var(--blue);
  margin: 0 0 22px;
}

h1,h2,h3 {
  font-family: Manrope,Arial,sans-serif;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin: 0;
}

h1 {
  font-size: clamp(42px,4.45vw,65px);
  font-weight: 800;
  line-height: 1.12;
}

h1 em {
  font-style: normal;
  color: var(--blue);
}

.lead {
  font-size: 19px;
  max-width: 510px;
  color: var(--muted);
  margin: 26px 0 29px;
  line-height: 1.65;
}

.hero-visual {
  height: 580px;
  position: relative;
  border-radius: 15px;
  background: #e0edfb;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section {
  max-width: 1440px;
  margin: auto;
  padding: 90px 5%;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-end;
  margin-bottom: 42px;
}

h2 {
  font-size: clamp(32px,3.2vw,46px);
  font-weight: 800;
}

.section-heading>p {
  max-width: 350px;
  margin: 0;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 45px;
}

.step-number {
  border-top: 1px solid var(--line);
  display: block;
  padding: 20px 0 28px;
  font-size: 35px;
  color: var(--blue);
  font-family: Manrope,Arial,sans-serif;
  font-weight: 500;
}

.steps h3 {
  font-size: 23px;
  letter-spacing: -.6px;
}

.steps p {
  color: var(--muted);
}

.wide {
  width: 100%;
  font-size: 14px;
}

.faq {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  padding-top: 35px;
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  padding: 22px 35px 22px 0;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  position: relative;
}

summary::-webkit-details-marker {
  display: none;
}

summary:after {
  content: '+';
  position: absolute;
  right: 5px;
  font-size: 22px;
  color: var(--blue);
  top: 18px;
}

details[open] summary:after {
  content: '−';
}

details p {
  color: var(--muted);
  margin: 0 0 25px;
}

.closing {
  background: var(--blue);
  color: white;
  text-align: center;
  padding: 75px 5% 85px;
}

.closing h2 {
  font-size: clamp(34px,4vw,54px);
}

footer {
  padding: 35px 5%;
  max-width: 1440px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

footer p {
  color: var(--muted);
  font-size: 14px;
}

footer .logo {
  font-size: 25px;
}

.language {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
  flex-shrink: 0;
}

.language a {
  font-size: 14px;
  font-weight: 700;
  padding: 7px 10px;
}

/* Keep the keyboard focus ring inside the clipped language toggle. */
.language a:focus-visible {
  outline-offset: -3px;
}

.language a[aria-current]:focus-visible {
  outline-color: white;
}

.language a[aria-current] {
  background: var(--navy);
  color: white;
}

.pricing-intro {
  color: var(--muted);
  font-size: 18px;
  max-width: 670px;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
  margin-top: 45px;
}

.plan {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.plan.featured {
  background: var(--ice);
  border-color: var(--blue);
}

.plan-label {
  position: absolute;
  top: 0;
  left: 28px;
  transform: translateY(-50%);
  margin: 0;
  padding: 4px 12px;
  border-radius: 6px;
  background: var(--blue);
  color: white;
  font-size: 14px;
  font-weight: 700;
}

.plan h3 {
  font-size: 27px;
}

.daily {
  font-size: 20px;
  font-weight: 700;
  margin: 4px 0 18px;
}

.daily span {
  font-size: 16px;
  letter-spacing: 0;
  font-weight: 400;
}

.plan>p:not(.daily) {
  font-size: 14px;
}

.breakdown {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
  border-top: 1px solid var(--line);
  padding: 15px 0;
}

.total {
  font-size: 16px;
}

.tax {
  color: var(--muted);
}

.delivery-note {
  padding: 24px 28px;
  background: var(--ice);
  border-radius: 9px;
  margin-top: 25px;
}

.delivery-note p {
  margin: 8px 0 0;
  color: var(--muted);
}

.hero-price {
  font-size: 25px;
  font-weight: 800;
  margin: 0;
}

.hero-fine {
  font-size: 13px;
  color: var(--muted);
  max-width: 380px;
  margin: 4px 0 22px;
}

.bedtime-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  color: white;
  font-family: Manrope,Arial,sans-serif;
  font-weight: 700;
  font-size: 21px;
  text-shadow: 0 1px 12px #000;
}

.service-strip {
  display: flex;
  justify-content: center;
  gap: 70px;
  padding: 24px 5%;
  background: var(--ice);
  font-size: 15px;
  font-weight: 600;
}

.service-strip b {
  color: var(--blue);
  margin-right: 6px;
}

.pricing {
  padding-top: 75px;
}

.plan-purpose {
  color: var(--muted);
  min-height: 2.8em;
  margin: 12px 0 0;
}

.plan .rental-sum {
  margin: 20px 0 0;
}

.rental-sum strong {
  display: block;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.2;
}

.rental-sum span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.plan .tax {
  margin: 18px 0;
}

.plan .button {
  margin-top: auto;
}

.total strong {
  font-size: 18px;
}

.how {
  padding-top: 20px;
}

.how .section-heading h2 {
  max-width: 700px;
}

.launch {
  padding-top: 35px;
  padding-bottom: 55px;
}

.launch h2 {
  font-size: 32px;
  margin-top: 14px;
}

.launch>p {
  max-width: 690px;
  color: var(--muted);
}

.breakdown strong {
  white-space: nowrap;
  flex-shrink: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 0;
  transform: translateY(-150%);
  z-index: 10;
  background: var(--navy);
  color: white;
  padding: 12px 18px;
  border-radius: 6px;
}

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

@media (max-width: 1100px) {
  nav {
    gap: 15px;
  }

  .hero {
    gap: 25px;
  }
}

@media (max-width: 1000px) {
  .hero-visual {
    height: 530px;
  }

  .plans {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .plan {
    padding: 23px;
  }

  .plan-label {
    left: 23px;
  }

  .service-strip {
    gap: 25px;
  }

  .plan-purpose {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  header {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 20px 6%;
    gap: 12px;
  }

  .logo {
    font-size: 25px;
  }

  .button {
    font-size: 14px;
    gap: 12px;
    max-width: 100%;
  }

  .hero {
    padding: 20px 6% 30px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .eyebrow {
    font-size: 12px;
    margin-bottom: 17px;
  }

  h1 {
    font-size: clamp(37px,8.6vw,59px);
    letter-spacing: -1.5px;
  }

  .lead {
    font-size: 17px;
    margin: 23px 0;
  }

  .hero-visual {
    height: auto;
    aspect-ratio: 1;
  }

  .section {
    padding: 58px 6%;
  }

  .section-heading {
    display: block;
  }

  .section-heading>p {
    margin-top: 22px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .step-number {
    padding: 18px 0 14px;
  }

  .steps p {
    margin-bottom: 10px;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 15px;
    padding-top: 35px;
  }

  .closing {
    padding: 60px 6%;
  }

  footer {
    padding: 30px 6%;
    gap: 10px;
    flex-wrap: wrap;
  }

  footer p {
    margin: 0;
  }

  header .language {
    grid-column: 2;
    grid-row: 1;
  }

  header nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 8px 18px;
  }

  header nav a {
    padding: 4px 0;
  }

  .bedtime-label {
    font-size: 19px;
  }

  .service-strip {
    gap: 12px;
    padding: 22px 6%;
    flex-direction: column;
  }

  .pricing {
    padding-top: 55px;
  }

  .how {
    padding-top: 20px;
  }

  .launch {
    padding-top: 35px;
    padding-bottom: 55px;
  }

  .how .section-heading h2 {
    font-size: 32px;
  }

}

@media (max-width: 360px) {
  .logo {
    font-size: 22px;
  }

  .brand-icon {
    width: 30px;
    height: 30px;
    margin-right: 5px;
  }

  .language a {
    padding: 7px 8px;
  }
}

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

  .button {
    transition: none;
  }
}

.school-hero {
  padding-top: 65px;
  padding-bottom: 65px;
}

.audience-link {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}


.school-visual {
  height: auto;
  aspect-ratio: 4 / 3;
}

.school-hero .eyebrow {
  font-size: 14px;
}

@media (max-width: 760px) {
  .school-hero {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}

.interest-content {
  max-width: 600px;
  margin: auto;
}

.interest-intro {
  margin: 24px 0 30px;
}

.signup-panel {
  padding: clamp(20px,4vw,32px);
  border-radius: 16px;
  background: white;
  color: var(--navy);
  text-align: left;
}

.signup-panel a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

#signup-status:not(:empty) {
  padding: 16px;
  border-radius: 8px;
  background: var(--ice);
}

#signup-status:focus {
  outline: 3px solid var(--navy);
  outline-offset: 3px;
}

.signup-note,.field-hint,.signup-contact {
  font-size: 14px;
  color: var(--muted);
}

.field-hint {
  margin: -4px 0 4px;
}

.signup-note {
  margin-top: 16px;
}

#interest-form {
  display: grid;
  gap: 12px;
  margin: 0;
}

#interest-form input {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--muted);
  border-radius: 6px;
  font: inherit;
}

#interest-postcode {
  max-width: 10ch;
}

#interest-form[hidden] {
  display: none;
}

#interest-form input:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 3px;
}

#interest-form .button {
  justify-content: center;
}

#interest-form button:disabled {
  opacity: .65;
  cursor: wait;
}
