:root {
  color-scheme: light;
  --sun-blue: #0866d8;
  --sun-blue-deep: #0756b5;
  --sun-coral: #ff6a45;
  --sun-coral-deep: #ef5732;
  --sun-aqua: #42d6c4;
  --sun-sand: #fff9ef;
  --sun-cream: #fffdf8;
  --sun-ink: #16304b;
  --sun-muted: #667a8d;
  --sun-line: #dce5e8;
  --sun-shadow: 0 28px 70px rgba(22, 48, 75, .15);
  --sun-serif: Georgia, "Times New Roman", serif;
  --sun-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sun-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.sunlit-site {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--sun-ink);
  background: var(--sun-cream);
  font-family: var(--sun-sans);
  -webkit-font-smoothing: antialiased;
}
.sunlit-site a { color: inherit; text-decoration: none; }
.sunlit-site button { color: inherit; font: inherit; }
.sunlit-site svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}
.sun-container { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
.sun-skip {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 200;
  padding: 12px 18px;
  color: #fff !important;
  background: var(--sun-blue);
}
.sun-skip:focus { top: 20px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sun-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font: 600 20px/1 var(--sun-serif);
  white-space: nowrap;
}
.sun-brand-mark {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  color: var(--sun-coral);
  border: 1px solid rgba(255, 106, 69, .45);
  background: rgba(255, 106, 69, .04);
}
.sun-brand-mark svg { width: 19px; height: 19px; }

.sun-nav {
  position: relative;
  z-index: 50;
  min-height: 78px;
  padding-inline: max(24px, calc((100vw - 1240px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid #e8e2d8;
  background: rgba(255, 253, 248, .94);
  backdrop-filter: blur(15px);
}
.sun-nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.sun-nav-menu > a { color: #516a80; }
.sun-nav-menu > a:hover { color: var(--sun-blue); }
.sun-nav-actions { display: flex; align-items: center; gap: 17px; margin-left: 8px; }
.sun-nav-toggle {
  display: none;
  width: 44px;
  height: 40px;
  padding: 10px;
  border: 1px solid var(--sun-line);
  background: #fff;
}
.sun-nav-toggle > span:not(.sr-only) {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: var(--sun-ink);
}

.sun-button {
  min-height: 43px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.sun-button:hover { transform: translateY(-2px); }
.sun-button-primary {
  color: #fff !important;
  border-color: var(--sun-coral);
  background: var(--sun-coral);
  box-shadow: 0 12px 26px rgba(255, 106, 69, .2);
}
.sun-button-primary:hover { border-color: var(--sun-coral-deep); background: var(--sun-coral-deep); }
.sun-button-secondary {
  color: var(--sun-blue) !important;
  border-color: #cad9e4;
  background: rgba(255, 255, 255, .74);
}
.sun-button-large { min-height: 54px; padding-inline: 25px; }

.sun-hero {
  position: relative;
  min-height: 700px;
  padding: 66px max(24px, calc((100vw - 1240px) / 2)) 80px;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(480px, 1.14fr);
  gap: 72px;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(66, 214, 196, .14), transparent 27%),
    linear-gradient(115deg, #fffdf8 0%, #fff7e9 68%, #f5eee2 100%);
}
.sun-hero::after {
  content: "";
  position: absolute;
  left: -90px;
  bottom: -140px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(8, 102, 216, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(8, 102, 216, .025), 0 0 0 108px rgba(8, 102, 216, .018);
}
.sun-hero-copy { position: relative; z-index: 2; }
.sun-tag {
  width: max-content;
  margin-bottom: 22px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #d7dfe4;
  background: rgba(255, 255, 255, .76);
  font: 750 8px/1 var(--sun-mono);
  letter-spacing: .11em;
  text-transform: uppercase;
}
.sun-tag i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sun-aqua);
  box-shadow: 0 0 0 4px rgba(66, 214, 196, .17);
}
.sun-hero h1 {
  margin: 0;
  font: 500 clamp(60px, 6.2vw, 91px)/.91 var(--sun-serif);
  letter-spacing: 0;
}
.sun-hero h1 em { color: var(--sun-blue); font-style: italic; font-weight: 400; }
.sun-hero-copy > p {
  max-width: 640px;
  margin: 28px 0 31px;
  color: #607589;
  font-size: 16px;
  line-height: 1.72;
}
.sun-hero-actions { display: flex; align-items: center; gap: 24px; }
.sun-text-link {
  color: var(--sun-blue) !important;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.sun-text-link span { margin-left: 8px; }
.sun-trust {
  margin-top: 43px;
  padding-top: 18px;
  display: flex;
  gap: 31px;
  border-top: 1px solid #deddd8;
  color: #7b8c9d;
  font: 700 8px/1.25 var(--sun-mono);
  text-transform: uppercase;
}
.sun-trust b { margin-right: 4px; color: var(--sun-ink); font-size: 14px; }

.sun-hero-visual { position: relative; z-index: 2; min-height: 550px; }
.sun-yacht-wrap {
  position: absolute;
  inset: 0 0 45px 42px;
  margin: 0;
  overflow: hidden;
  border-radius: 52% 48% 44% 56% / 42% 38% 62% 58%;
  background: #cdeff4;
  box-shadow: 0 33px 76px rgba(22, 48, 75, .23);
}
.sun-yacht-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8, 102, 216, .08), rgba(66, 214, 196, .07));
  pointer-events: none;
}
.sun-yacht {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.sun-vessel-card {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(410px, 82%);
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  border: 1px solid rgba(8, 102, 216, .17);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 56px rgba(20, 54, 85, .19);
  backdrop-filter: blur(16px);
}
.sun-kicker {
  color: var(--sun-coral);
  font: 800 8px/1 var(--sun-mono);
  letter-spacing: .13em;
  text-transform: uppercase;
}
.sun-vessel-card h2 { margin: 7px 0 0; font: 500 22px/1 var(--sun-serif); }
.sun-live {
  height: 25px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #398d76;
  border: 1px solid rgba(57, 141, 118, .2);
  font: 750 7px/1 var(--sun-mono);
  text-transform: uppercase;
}
.sun-live i { width: 5px; height: 5px; border-radius: 50%; background: #42c79f; }
.sun-card-metrics {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid #e5e9ec;
}
.sun-card-metrics span { padding: 13px 8px; border-right: 1px solid #e5e9ec; }
.sun-card-metrics span:last-child { border: 0; }
.sun-card-metrics small, .sun-card-metrics strong { display: block; }
.sun-card-metrics small { color: #8b97a3; font: 700 7px/1 var(--sun-mono); text-transform: uppercase; }
.sun-card-metrics strong { margin-top: 7px; font: 500 22px/1 var(--sun-serif); }
.sun-card-metrics .is-coral { color: var(--sun-coral); }
.sun-card-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 7px 1fr auto;
  gap: 10px;
  align-items: center;
}
.sun-card-row > i { width: 6px; height: 6px; border-radius: 50%; background: #42c79f; }
.sun-card-row > i.is-warning { background: #ffab3d; }
.sun-card-row b, .sun-card-row small { display: block; }
.sun-card-row b { font-size: 9px; }
.sun-card-row small { margin-top: 4px; color: #8794a2; font-size: 7px; }
.sun-card-row em { color: var(--sun-blue); font: normal 800 7px/1 var(--sun-mono); text-transform: uppercase; }
.sun-orbit { position: absolute; border: 1px solid rgba(8, 102, 216, .2); border-radius: 50%; }
.sun-orbit-one { width: 84px; height: 84px; top: 0; right: -24px; }
.sun-orbit-two { width: 27px; height: 27px; top: 70px; right: 52px; border: 0; background: var(--sun-aqua); }

.sun-section { padding: 110px 0; }
.sun-section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: end;
  margin-bottom: 49px;
}
.sun-section-head .sun-kicker { grid-column: 1 / -1; }
.sun-section-head h2 {
  margin: 0;
  font: 500 clamp(45px, 5vw, 68px)/.98 var(--sun-serif);
  letter-spacing: 0;
}
.sun-section-head > p { max-width: 540px; margin: 0 0 6px; color: var(--sun-muted); line-height: 1.72; }

.sun-platform { background: #fff; }
.sun-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--sun-line);
}
.sun-feature {
  position: relative;
  min-height: 285px;
  padding: 26px;
  border-right: 1px solid var(--sun-line);
  background: #fffdf9;
}
.sun-feature:last-child { border: 0; }
.sun-feature svg { width: 29px; height: 29px; color: var(--sun-blue); }
.sun-feature > span {
  position: absolute;
  top: 28px;
  right: 25px;
  color: #9aa5af;
  font: 700 8px/1 var(--sun-mono);
}
.sun-feature h3 { margin: 77px 0 12px; font: 500 24px/1 var(--sun-serif); }
.sun-feature p { margin: 0; color: #728294; font-size: 12px; line-height: 1.68; }

.sun-workspace { background: #eef8f7; }
.sun-workspace-grid {
  display: grid;
  grid-template-columns: .48fr 1.2fr;
  gap: 62px;
  align-items: center;
}
.sun-workspace-copy h2 {
  margin: 15px 0 18px;
  font: 500 clamp(41px, 4vw, 59px)/1 var(--sun-serif);
  letter-spacing: 0;
}
.sun-workspace-copy p { color: #657a88; font-size: 13px; line-height: 1.72; }
.sun-checks { padding: 0; margin: 29px 0 0; display: grid; gap: 13px; list-style: none; font-size: 11px; font-weight: 750; }
.sun-checks li { display: flex; align-items: center; gap: 9px; }
.sun-checks i { width: 7px; height: 7px; border-radius: 50%; background: var(--sun-aqua); }

.sun-dashboard {
  min-width: 0;
  min-height: 440px;
  display: grid;
  grid-template-columns: 155px 1fr;
  overflow: hidden;
  border: 1px solid #d9e2e6;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 30px 66px rgba(34, 84, 100, .15);
}
.sun-dash-side { padding: 18px 12px; display: flex; flex-direction: column; gap: 6px; color: #718190; border-right: 1px solid #e4e9ec; background: #f8fbfb; }
.sun-dash-side .sun-brand { color: var(--sun-ink); font-size: 11px; }
.sun-dash-side .sun-brand-mark { width: 25px; height: 25px; }
.sun-dash-vessel { margin: 14px 0 8px; padding: 10px; border: 1px solid #e2e7e9; background: #fff; }
.sun-dash-vessel small, .sun-dash-vessel b { display: block; }
.sun-dash-vessel small { font: 700 6px/1 var(--sun-mono); }
.sun-dash-vessel b { margin-top: 6px; color: var(--sun-ink); font-size: 9px; }
.sun-dash-side > span { padding: 9px; display: flex; gap: 7px; align-items: center; font-size: 7px; font-weight: 750; }
.sun-dash-side > span i { width: 5px; height: 5px; border: 1px solid currentColor; }
.sun-dash-side > span.is-active { color: #fff; background: var(--sun-blue); }
.sun-dash-main { min-width: 0; padding: 24px; }
.sun-dash-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.sun-dash-head small { color: #8493a0; font: 700 6px/1 var(--sun-mono); }
.sun-dash-head h3 { margin: 7px 0 0; font: 500 20px/1 var(--sun-serif); }
.sun-dash-head button { padding: 9px 11px; color: #fff; border: 0; background: var(--sun-coral); font-size: 7px; font-weight: 800; }
.sun-dash-metrics { margin: 20px 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.sun-dash-metrics article { padding: 14px; border: 1px solid #e0e5e8; background: #fbfcfd; }
.sun-dash-metrics span, .sun-dash-metrics b, .sun-dash-metrics small { display: block; }
.sun-dash-metrics span { color: #82909d; font: 700 6px/1 var(--sun-mono); text-transform: uppercase; }
.sun-dash-metrics b { margin: 7px 0 5px; font: 500 21px/1 var(--sun-serif); }
.sun-dash-metrics small { color: #95a0aa; font-size: 6px; }
.sun-dash-panel { border: 1px solid #e0e5e8; }
.sun-dash-panel-head { padding: 12px; display: flex; justify-content: space-between; border-bottom: 1px solid #e0e5e8; font-size: 8px; }
.sun-dash-panel-head span { color: var(--sun-blue); font-size: 7px; }
.sun-dash-row { min-height: 55px; padding: 9px 12px; display: grid; grid-template-columns: 6px 1fr auto; gap: 9px; align-items: center; border-bottom: 1px solid #e9edef; }
.sun-dash-row:last-child { border: 0; }
.sun-dash-row > i { width: 5px; height: 5px; border-radius: 50%; background: var(--sun-aqua); }
.sun-dash-row > i.is-warning { background: #ffb340; }
.sun-dash-row b, .sun-dash-row small { display: block; }
.sun-dash-row b { font-size: 8px; }
.sun-dash-row small { margin-top: 4px; color: #8d99a4; font-size: 6px; }
.sun-dash-row em { color: #617386; font: normal 700 7px/1 var(--sun-mono); }

.sun-crew { background: #fff; }
.sun-role-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--sun-line); }
.sun-role {
  min-height: 260px;
  padding: 26px;
  border-right: 1px solid var(--sun-line);
  background: linear-gradient(150deg, #fffdf8, #f8fcfd);
}
.sun-role:last-child { border: 0; }
.sun-role > span { color: var(--sun-coral); font: 800 8px/1 var(--sun-mono); }
.sun-role h3 { margin: 70px 0 13px; font: 500 25px/1 var(--sun-serif); }
.sun-role p { margin: 0; color: var(--sun-muted); font-size: 12px; line-height: 1.68; }

.sun-cta { padding: 93px 24px; text-align: center; color: #fff; background: var(--sun-blue); }
.sun-cta .sun-kicker { color: #9feadf; }
.sun-cta h2 { margin: 15px 0 13px; font: 500 clamp(46px, 5vw, 70px)/1 var(--sun-serif); letter-spacing: 0; }
.sun-cta p { max-width: 650px; margin: 0 auto 29px; color: #cfe2fa; line-height: 1.65; }

.sun-footer { background: #f8fbfb; }
.sun-footer-main { padding: 54px 0 42px; display: grid; grid-template-columns: auto 1fr auto; gap: 55px; align-items: center; }
.sun-footer-main p { max-width: 420px; margin: 0; color: var(--sun-muted); font-size: 11px; line-height: 1.65; }
.sun-footer nav { display: flex; gap: 26px; color: #617588; font: 750 9px/1 var(--sun-mono); text-transform: uppercase; }
.sun-footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; border-top: 1px solid var(--sun-line); color: #8493a0; font: 650 8px/1 var(--sun-mono); text-transform: uppercase; }

@media (max-width: 1050px) {
  .sun-nav-toggle { display: block; }
  .sun-nav-menu {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 70px;
    padding: 18px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--sun-line);
    background: rgba(255, 253, 248, .98);
    box-shadow: var(--sun-shadow);
  }
  .sun-nav-menu.is-open { display: flex; }
  .sun-nav-menu > a { padding: 14px 2px; border-bottom: 1px solid var(--sun-line); }
  .sun-nav-actions { margin: 15px 0 0; }
  .sun-hero { grid-template-columns: 1fr; }
  .sun-hero-copy { max-width: 800px; }
  .sun-hero-visual { min-height: 570px; }
  .sun-workspace-grid { grid-template-columns: 1fr; }
  .sun-workspace-copy { max-width: 680px; }
  .sun-feature-grid, .sun-role-grid { grid-template-columns: repeat(2, 1fr); }
  .sun-feature:nth-child(2), .sun-role:nth-child(2) { border-right: 0; }
  .sun-feature, .sun-role { border-bottom: 1px solid var(--sun-line); }
  .sun-feature:nth-last-child(-n+2), .sun-role:nth-last-child(-n+2) { border-bottom: 0; }
  .sun-footer-main { grid-template-columns: 1fr 1fr; }
  .sun-footer-main p { order: 3; grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .sun-container { width: min(100% - 32px, 1240px); }
  .sun-nav { min-height: 68px; padding-inline: 16px; }
  .sun-nav-menu { left: 16px; right: 16px; top: 62px; }
  .sun-brand { font-size: 17px; }
  .sun-nav-actions { flex-direction: column; align-items: stretch; }
  .sun-hero { min-height: auto; padding: 48px 16px 70px; gap: 42px; }
  .sun-hero h1 { font-size: clamp(42px, 13vw, 60px); line-height: 1; }
  .sun-hero-copy > p { font-size: 14px; }
  .sun-button { width: 100%; padding-inline: 16px; }
  .sun-text-link { width: 100%; text-align: center; }
  .sun-hero-actions { align-items: flex-start; flex-direction: column; gap: 21px; }
  .sun-trust { gap: 14px; flex-wrap: wrap; }
  .sun-hero-visual { min-height: 0; display: grid; gap: 14px; }
  .sun-yacht-wrap {
    position: relative;
    inset: auto;
    aspect-ratio: 4 / 3;
    width: 100%;
  }
  .sun-vessel-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    padding: 14px;
  }
  .sun-orbit { display: none; }
  .sun-section { padding: 82px 0; }
  .sun-section-head { grid-template-columns: 1fr; gap: 21px; margin-bottom: 37px; }
  .sun-section-head .sun-kicker { grid-column: auto; }
  .sun-section-head h2, .sun-workspace-copy h2 { font-size: clamp(34px, 10vw, 43px); line-height: 1.05; }
  .sun-feature-grid, .sun-role-grid { grid-template-columns: 1fr; }
  .sun-feature, .sun-feature:nth-child(2), .sun-role, .sun-role:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--sun-line); }
  .sun-feature:last-child, .sun-role:last-child { border-bottom: 0; }
  .sun-dashboard { grid-template-columns: 1fr; }
  .sun-dash-side { display: none; }
  .sun-dash-main { padding: 14px; }
  .sun-dash-head { display: grid; align-items: start; }
  .sun-dash-metrics { grid-template-columns: 1fr; gap: 7px; }
  .sun-dash-head button { display: none; }
  .sun-cta { padding: 76px 18px; }
  .sun-cta h2 { font-size: clamp(38px, 12vw, 48px); }
  .sun-footer-main { grid-template-columns: 1fr; gap: 27px; }
  .sun-footer-main p { order: initial; grid-column: auto; }
  .sun-footer nav { flex-wrap: wrap; gap: 17px 23px; }
  .sun-footer-bottom { align-items: flex-start; flex-direction: column; gap: 11px; }
}

@media (max-width: 460px) {
  .sun-container { width: min(100% - 24px, 1240px); }
  .sun-nav { padding-inline: 12px; gap: 12px; }
  .sun-brand { min-width: 0; font-size: 16px; }
  .sun-brand-mark { width: 30px; height: 30px; }
  .sun-hero { padding: 38px 12px 58px; }
  .sun-tag { width: 100%; justify-content: center; }
  .sun-trust { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .sun-card-metrics { grid-template-columns: 1fr; }
  .sun-card-metrics span { border-right: 0; border-bottom: 1px solid #e5e9ec; }
  .sun-card-metrics span:last-child { border-bottom: 0; }
  .sun-card-row { grid-template-columns: 7px minmax(0, 1fr); }
  .sun-card-row em { grid-column: 2; }
  .sun-feature, .sun-role { min-height: 0; padding: 22px; }
  .sun-feature h3, .sun-role h3 { margin-top: 48px; }
  .sun-dashboard { border-radius: 12px; }
  .sun-dash-row { grid-template-columns: 6px minmax(0, 1fr); }
  .sun-dash-row em { grid-column: 2; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
