:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #17223b;
  background: #f4f7fb;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 5%, rgba(67, 196, 200, .17), transparent 28rem),
    radial-gradient(circle at 90% 95%, rgba(28, 45, 118, .13), transparent 32rem),
    #f7f9fc;
}

.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 34px 0 24px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  width: 48px; height: 48px; padding: 5px; border-radius: 50%;
  background: #151820; color: white; font-size: 25px; letter-spacing: -7px;
}
.brand-mark b, .brand-mark i { font-style: normal; line-height: 1; }
.brand-mark i { color: #50c7cc; transform: translateX(-2px); }
.brand > span:last-child { display: flex; flex-direction: column; line-height: 1; }
.brand strong { font-size: 19px; letter-spacing: .04em; }
.brand small { color: #3aaeb4; font-size: 14px; font-weight: 700; margin-top: 4px; }

.welcome { max-width: 720px; margin: 74px auto 40px; text-align: center; }
.eyebrow, .label { margin: 0 0 11px; color: #11939a; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
h1 { margin: 0; color: #142150; font-size: clamp(36px, 5vw, 60px); line-height: 1.04; letter-spacing: -.04em; }
.welcome > p:last-child { margin: 20px auto 0; max-width: 650px; color: #62708a; font-size: 17px; line-height: 1.7; }

.products { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.product {
  position: relative; overflow: hidden; padding: 34px; border: 1px solid #e1e7f0;
  border-radius: 22px; background: rgba(255,255,255,.93); box-shadow: 0 18px 50px rgba(38,53,92,.09);
}
.product::after { content: ""; position: absolute; width: 190px; height: 190px; border-radius: 50%; right: -70px; top: -80px; background: rgba(55,184,191,.1); }
.bookings::after { background: rgba(25,44,118,.1); }
.icon {
  display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 28px;
  border-radius: 16px; background: #e6f8f8; color: #107f86; font-size: 19px; font-weight: 900;
}
.icon span { color: #142150; margin: 0 2px; }
.bookings .icon { color: white; background: #192c76; }
h2 { margin: 0 0 13px; color: #172558; font-size: 29px; letter-spacing: -.025em; }
.product > p:not(.label) { min-height: 52px; margin: 0; color: #68758c; line-height: 1.6; }
ul { display: grid; gap: 11px; margin: 26px 0 30px; padding: 0; color: #3c4962; list-style: none; }
li::before { content: "✓"; display: inline-grid; place-items: center; width: 20px; height: 20px; margin-right: 9px; border-radius: 50%; color: #0b8c92; background: #e6f7f7; font-size: 12px; font-weight: 900; }
.button {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; width: 100%;
  padding: 15px 18px; border-radius: 11px; color: white; background: #28aeb5;
  text-decoration: none; font-weight: 750; box-shadow: 0 10px 24px rgba(40,174,181,.22);
}
.bookings .button { background: #192c76; box-shadow: 0 10px 24px rgba(25,44,118,.2); }
.button:hover { transform: translateY(-1px); filter: brightness(1.04); }
.button span { font-size: 23px; line-height: 1; }

footer { display: flex; justify-content: space-between; gap: 20px; padding: 28px 5px 0; color: #7d8799; font-size: 13px; }
.status { display: inline-flex; align-items: center; gap: 8px; }
.status i { width: 8px; height: 8px; border-radius: 50%; background: #35b7a1; box-shadow: 0 0 0 4px rgba(53,183,161,.12); }

@media (max-width: 760px) {
  .shell { width: min(100% - 24px, 600px); padding-top: 20px; }
  .welcome { margin-top: 50px; }
  .products { grid-template-columns: 1fr; }
  .product { padding: 27px; }
  .product > p:not(.label) { min-height: 0; }
  footer { flex-direction: column; align-items: center; }
}

