:root {
  color-scheme: light;
  --ink: #151b24;
  --muted: #6e7887;
  --line: #dfe5ec;
  --canvas: #f6f8fb;
  --paper: #ffffff;
  --blue: #2368e8;
  --blue-dark: #1240a2;
  --blue-soft: #eaf1ff;
  --navy: #101c32;
  --sand: #f3c978;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

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

.site-shell {
  width: min(100% - 48px, 1440px);
  margin: 0 auto;
}

.site-header {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 26px;
  border-bottom: 1px solid rgba(26, 40, 60, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 21px;
  font-weight: 730;
  letter-spacing: -0.045em;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 27px;
  height: 27px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--blue);
  box-shadow: 0 8px 18px rgba(35, 104, 232, 0.2);
  transform: rotate(-8deg);
}

.brand-mark__line {
  position: absolute;
  display: block;
  width: 19px;
  height: 5px;
  border-radius: 99px;
  background: #fff;
  transform: rotate(-38deg);
}

.brand-mark__line--one {
  top: 7px;
  left: 4px;
}

.brand-mark__line--two {
  top: 15px;
  left: 7px;
  width: 13px;
  opacity: 0.72;
}

.brand-name {
  text-transform: lowercase;
}

.header-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #36b37e;
  box-shadow: 0 0 0 4px rgba(54, 179, 126, 0.12);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
  color: #546071;
  font-size: 14px;
}

.header-nav a {
  transition: color 150ms ease;
}

.header-nav a:hover {
  color: var(--ink);
}

.header-nav__cta {
  padding: 10px 16px;
  border: 1px solid rgba(35, 104, 232, 0.27);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--blue-dark);
  font-weight: 620;
}

.hero {
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(300px, 0.86fr) minmax(480px, 1.14fr);
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
  padding: 80px 4.5% 96px;
}

.hero__copy {
  position: relative;
  z-index: 1;
  max-width: 595px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 21px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.105em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow__mark {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 6px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 14px;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 26px;
  font-size: clamp(44px, 5.4vw, 78px);
  font-weight: 670;
  letter-spacing: -0.065em;
  line-height: 0.99;
}

.hero__lead {
  max-width: 510px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 20px);
  letter-spacing: -0.01em;
  line-height: 1.52;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  min-width: 205px;
  background: var(--blue);
  box-shadow: 0 12px 20px rgba(35, 104, 232, 0.2);
  color: #fff;
}

.button--primary:hover {
  background: #185bd0;
  box-shadow: 0 15px 27px rgba(35, 104, 232, 0.25);
}

.button--quiet {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  color: #4d5868;
}

.button--quiet:hover {
  background: var(--paper);
}

.hero__note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 38px;
  color: #77818f;
  font-size: 13px;
}

.note-avatars {
  display: inline-flex;
  padding-left: 4px;
}

.note-avatar {
  display: grid;
  width: 27px;
  height: 27px;
  margin-left: -4px;
  place-items: center;
  border: 2px solid var(--canvas);
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  font-weight: 750;
}

.note-avatar--blue,
.schedule-avatar--blue {
  background: #568df2;
}

.note-avatar--sand,
.schedule-avatar--sand {
  background: #c89b46;
}

.note-avatar--dark,
.schedule-avatar--dark {
  background: #34445f;
}

.hero__visual {
  position: relative;
  min-height: 480px;
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
}

.hero__visual::before {
  position: absolute;
  width: min(100%, 620px);
  height: 430px;
  border: 1px solid rgba(35, 104, 232, 0.12);
  border-radius: 50%;
  content: "";
  transform: rotate(-18deg);
}

.hero__visual::after {
  position: absolute;
  width: min(76%, 430px);
  height: 330px;
  border: 1px solid rgba(35, 104, 232, 0.1);
  border-radius: 50%;
  content: "";
  transform: rotate(28deg);
}

.visual-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.8;
}

.visual-glow--one {
  top: 24px;
  right: 12%;
  width: 72px;
  height: 72px;
  background: rgba(35, 104, 232, 0.14);
}

.visual-glow--two {
  bottom: 23px;
  left: 10%;
  width: 42px;
  height: 42px;
  background: rgba(243, 201, 120, 0.32);
}

.workspace-card {
  position: relative;
  z-index: 1;
  width: min(100%, 610px);
  overflow: hidden;
  border: 1px solid rgba(212, 221, 232, 0.95);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 32px 80px rgba(36, 54, 83, 0.17), 0 8px 20px rgba(36, 54, 83, 0.06);
  transform: rotate(1.6deg);
}

.workspace-card__topbar {
  display: flex;
  min-height: 45px;
  align-items: center;
  gap: 15px;
  padding: 0 17px;
  border-bottom: 1px solid #e9edf2;
  color: #818b99;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d6dde7;
}

.window-dots span:first-child {
  background: #9fb9ed;
}

.workspace-card__date {
  margin-left: auto;
  color: #a0a8b3;
  text-transform: lowercase;
}

.workspace-card__body {
  display: grid;
  grid-template-columns: 145px 1fr;
  min-height: 370px;
}

.workspace-sidebar {
  display: flex;
  flex-direction: column;
  padding: 22px 14px 15px;
  background: #f8fafc;
}

.sidebar-logo {
  display: flex;
  gap: 4px;
  margin: 0 0 37px 4px;
}

.sidebar-logo span {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--blue);
  transform: skew(-16deg);
}

.sidebar-logo span:last-child {
  width: 7px;
  background: #9bbcf8;
}

.sidebar-nav {
  display: grid;
  gap: 8px;
}

.sidebar-nav__item {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 31px;
  padding: 0 7px;
  border-radius: 6px;
  color: #8b96a6;
  font-size: 10px;
}

.sidebar-nav__item i {
  width: 11px;
  height: 11px;
  border: 1px solid #b4becb;
  border-radius: 3px;
}

.sidebar-nav__item--active {
  background: #e9f0ff;
  color: var(--blue-dark);
  font-weight: 700;
}

.sidebar-nav__item--active i {
  border-color: var(--blue);
  background: var(--blue);
}

.sidebar-org {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding: 8px 4px 0;
  border-top: 1px solid #e2e8ef;
  color: #7f8a9a;
  font-size: 9px;
}

.sidebar-org b {
  margin-left: auto;
  font-size: 12px;
  font-weight: 500;
}

.sidebar-org__avatar {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 6px;
  background: #e0b867;
  color: #fff;
  font-size: 9px;
  font-weight: 750;
}

.workspace-content {
  padding: 30px 24px 24px;
}

.workspace-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.workspace-kicker {
  margin-bottom: 5px;
  color: #8e98a6;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.workspace-heading h2 {
  margin-bottom: 0;
  font-size: 26px;
  font-weight: 680;
  letter-spacing: -0.045em;
  line-height: 1;
}

.workspace-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  border: 1px solid #e1e7ef;
  border-radius: 6px;
  color: #7f8b9a;
  font-size: 9px;
}

.workspace-filter b {
  font-size: 11px;
  font-weight: 500;
}

.workspace-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 32px 0 24px;
}

.workspace-summary div {
  display: grid;
  gap: 2px;
  padding: 11px 12px;
  border: 1px solid #e7ebf1;
  border-radius: 8px;
  background: #fbfcfe;
}

.workspace-summary strong {
  font-size: 18px;
  font-weight: 680;
  letter-spacing: -0.04em;
}

.workspace-summary span {
  color: #9aa3af;
  font-size: 9px;
}

.schedule-list {
  display: grid;
  gap: 11px;
}

.schedule-row {
  display: grid;
  grid-template-columns: 43px 8px minmax(0, 1fr) 26px;
  align-items: center;
  gap: 9px;
  min-height: 55px;
  padding: 0 8px;
  border-bottom: 1px solid #edf0f4;
}

.schedule-row--active {
  border-radius: 8px;
  background: #f5f8ff;
}

.schedule-time {
  color: #6e7b8d;
  font-size: 10px;
  font-weight: 700;
}

.schedule-line {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b8c3d1;
}

.schedule-row--active .schedule-line {
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(35, 104, 232, 0.12);
}

.schedule-info {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.schedule-info strong {
  overflow: hidden;
  color: #3e4a5c;
  font-size: 10px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.schedule-info small {
  overflow: hidden;
  color: #a1aab6;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.schedule-avatar {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
}

.visual-caption {
  position: absolute;
  right: 2%;
  bottom: 0;
  z-index: 2;
  margin: 0;
  color: #9aa5b4;
  font-size: 11px;
  letter-spacing: 0.03em;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(460px, 1.2fr);
  gap: 80px;
  padding: 105px 9% 120px;
  border-top: 1px solid rgba(26, 40, 60, 0.1);
}

.section-heading {
  max-width: 410px;
}

.section-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 3.7vw, 54px);
  font-weight: 660;
  letter-spacing: -0.06em;
  line-height: 1.03;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-self: center;
}

.principle-card {
  min-height: 235px;
  padding: 22px 19px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
}

.principle-card__number {
  display: block;
  margin-bottom: 56px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.principle-card h3 {
  margin-bottom: 9px;
  font-size: 18px;
  font-weight: 680;
  letter-spacing: -0.035em;
}

.principle-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.48;
}

.status-section {
  position: relative;
  display: flex;
  min-height: 310px;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  padding: 64px 9%;
  overflow: hidden;
  border-radius: 18px;
  background: var(--navy);
  color: #fff;
}

.status-section::after {
  position: absolute;
  width: 320px;
  height: 320px;
  margin-left: 48%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
  transform: translateY(35%) rotate(25deg);
}

.status-section__copy {
  position: relative;
  z-index: 1;
  max-width: 670px;
}

.eyebrow--light {
  color: #94b9ff;
}

.status-section h2 {
  max-width: 610px;
  margin-bottom: 17px;
  font-size: clamp(28px, 3.4vw, 49px);
  font-weight: 640;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.status-section__copy > p:last-child {
  max-width: 500px;
  margin-bottom: 0;
  color: #aebbd0;
  font-size: 15px;
}

.status-section__stamp {
  position: relative;
  z-index: 1;
  display: grid;
  flex: 0 0 154px;
  width: 154px;
  height: 154px;
  align-content: center;
  justify-items: center;
  gap: 5px;
  border: 1px solid rgba(148, 185, 255, 0.38);
  border-radius: 50%;
  color: #dce8ff;
  text-align: center;
  transform: rotate(9deg);
}

.status-section__stamp strong {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.status-section__stamp span:last-child {
  color: #8ea2bf;
  font-size: 10px;
}

.stamp-ring {
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(148, 185, 255, 0.42);
  border-radius: 50%;
}

.site-footer {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #8b95a3;
  font-size: 12px;
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 730;
  letter-spacing: -0.04em;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: minmax(280px, 0.8fr) minmax(400px, 1.2fr);
    gap: 40px;
    padding-right: 0;
    padding-left: 0;
  }

  h1 {
    font-size: clamp(43px, 5.6vw, 64px);
  }

  .about-section,
  .status-section {
    padding-right: 5%;
    padding-left: 5%;
  }
}

@media (max-width: 800px) {
  .site-shell {
    width: min(100% - 32px, 680px);
  }

  .site-header {
    min-height: 72px;
  }

  .header-status {
    display: none;
  }

  .header-nav {
    gap: 12px;
  }

  .header-nav > a:first-child {
    display: none;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
    padding-top: 67px;
    padding-bottom: 75px;
  }

  .hero__copy {
    max-width: 600px;
  }

  h1 {
    max-width: 590px;
    font-size: clamp(44px, 10vw, 70px);
  }

  .hero__visual {
    min-height: 425px;
  }

  .about-section {
    display: block;
    padding-top: 75px;
    padding-bottom: 82px;
  }

  .section-heading {
    max-width: 600px;
    margin-bottom: 36px;
  }

  .principles-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .principle-card {
    min-height: 210px;
    padding: 17px 14px;
  }

  .principle-card__number {
    margin-bottom: 32px;
  }

  .status-section {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .status-section__stamp {
    align-self: flex-end;
    margin-top: -15px;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(100% - 24px, 430px);
  }

  .site-header {
    gap: 12px;
  }

  .brand {
    font-size: 19px;
  }

  .brand-mark {
    width: 24px;
    height: 24px;
  }

  .header-nav__cta {
    padding: 8px 11px;
    font-size: 12px;
  }

  .hero {
    min-height: 0;
    gap: 34px;
    padding-top: 58px;
    padding-bottom: 65px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
  }

  h1 {
    margin-bottom: 20px;
    font-size: clamp(42px, 13vw, 59px);
  }

  .hero__lead {
    margin-bottom: 27px;
    font-size: 16px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero__note {
    align-items: flex-start;
    margin-top: 26px;
  }

  .hero__visual {
    min-height: 330px;
    margin-right: -2px;
    margin-left: -2px;
  }

  .hero__visual::before {
    height: 280px;
  }

  .hero__visual::after {
    width: 85%;
    height: 235px;
  }

  .workspace-card {
    border-radius: 12px;
    transform: rotate(1deg) scale(0.98);
  }

  .workspace-card__body {
    grid-template-columns: 86px 1fr;
    min-height: 275px;
  }

  .workspace-sidebar {
    padding: 17px 8px 10px;
  }

  .sidebar-logo {
    margin-bottom: 25px;
  }

  .sidebar-nav__item {
    gap: 5px;
    padding: 0 4px;
    font-size: 8px;
  }

  .sidebar-org {
    gap: 3px;
    font-size: 7px;
  }

  .sidebar-org__avatar {
    width: 16px;
    height: 16px;
    font-size: 7px;
  }

  .workspace-content {
    padding: 21px 12px 14px;
  }

  .workspace-heading h2 {
    font-size: 20px;
  }

  .workspace-filter {
    padding: 5px 6px;
    font-size: 7px;
  }

  .workspace-summary {
    margin: 20px 0 13px;
  }

  .workspace-summary div {
    padding: 7px;
  }

  .workspace-summary strong {
    font-size: 14px;
  }

  .workspace-summary span,
  .schedule-info small {
    font-size: 7px;
  }

  .schedule-row {
    grid-template-columns: 32px 6px minmax(0, 1fr) 20px;
    min-height: 45px;
    gap: 5px;
    padding: 0 4px;
  }

  .schedule-time,
  .schedule-info strong {
    font-size: 8px;
  }

  .schedule-avatar {
    width: 20px;
    height: 20px;
    font-size: 7px;
  }

  .visual-caption {
    right: 4px;
    bottom: -1px;
    font-size: 9px;
  }

  .about-section {
    padding-top: 64px;
    padding-right: 0;
    padding-bottom: 70px;
    padding-left: 0;
  }

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

  .principles-grid {
    grid-template-columns: 1fr;
  }

  .principle-card {
    min-height: 0;
    padding: 18px;
  }

  .principle-card__number {
    margin-bottom: 24px;
  }

  .principle-card p {
    max-width: 320px;
  }

  .status-section {
    min-height: 410px;
    padding: 42px 24px;
    border-radius: 14px;
  }

  .status-section h2 {
    font-size: 35px;
  }

  .status-section__stamp {
    flex-basis: 130px;
    width: 130px;
    height: 130px;
  }

  .site-footer {
    min-height: 72px;
    font-size: 10px;
  }
}

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

  .button,
  .header-nav a {
    transition: none;
  }
}
