
:root{
  --ink:#0d233b;
  --ink-soft:#30445a;
  --muted:#617287;
  --paper:#f5efe5;
  --paper-2:#fbf7f0;
  --paper-3:#efe3d2;
  --line:#d9cdbb;
  --blue:#147fa8;
  --blue-2:#1e5f9e;
  --teal:#28b8b4;
  --yellow:#f4c43d;
  --orange:#e97c3a;
  --red:#d94b43;
  --coral:#ef6a5b;
  --navy:#0d2238;
  --shadow:0 16px 42px rgba(42,31,19,.10);
  --rail:216px;
  --content:900px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  overflow-x:hidden;
  color:var(--ink);
  font-family:Arial,Helvetica,sans-serif;
  background:
    linear-gradient(rgba(245,239,229,.96),rgba(245,239,229,.96)),
    radial-gradient(circle at 15% 20%, rgba(13,35,59,.08) 0 1px, transparent 1px);
  background-size:auto,18px 18px;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
h1,h2,h3{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  letter-spacing:-.035em;
  line-height:1.04;
}
h1{font-size:clamp(3rem,7vw,6.2rem)}
h2{font-size:clamp(2.15rem,4vw,3.4rem)}
h3{font-size:1.55rem}
p{margin:0}

.side-rail{
  position:fixed;
  left:0;
  top:0;
  bottom:0;
  width:var(--rail);
  background:rgba(251,247,240,.98);
  border-right:0;
  box-shadow:10px 0 32px rgba(13,34,56,.06);
  z-index:20;
}
.side-inner{
  height:100%;
  display:flex;
  flex-direction:column;
  padding:20px 24px 20px;
}
.nav-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:104px;
  margin:0 0 16px;
}
.nav-icon img{
  width:112px;
  height:112px;
  object-fit:contain;
}
.mobile-header{display:none}
.mobile-icon{display:none}
.side-nav{
  display:grid;
  gap:5px;
}
.side-nav a{
  padding:8px 0;
  font-size:.95rem;
  font-weight:600;
  color:var(--ink-soft);
  border-bottom:1px solid transparent;
}
.side-nav a:hover,.side-nav a.active{
  color:var(--red);
}
.side-nav hr{
  width:100%;
  border:0;
  border-top:1px solid var(--line);
  margin:14px 0 9px;
}
.side-foot{
  margin-top:auto;
  padding-top:18px;
  border-top:1px solid var(--line);
  display:grid;
  gap:2px;
  color:var(--muted);
  font-size:.86rem;
}
.side-foot strong{color:var(--ink)}
.mobile-menu,.mobile-nav{display:none}

.page{
  margin-left:var(--rail);
  min-height:100vh;
}
.content{
  width:min(var(--content),calc(100% - 40px));
  margin:0 auto;
}
.hero{
  min-height:640px;
  display:grid;
  grid-template-columns:minmax(430px,.9fr) minmax(520px,1.1fr);
  background:var(--navy);
}
.hero-copy-panel{
  display:flex;
  align-items:center;
  min-width:0;
  padding:72px 54px 64px;
  color:white;
  background:
    radial-gradient(circle at 15% 18%, rgba(40,184,180,.16), transparent 32%),
    linear-gradient(180deg,#10283f 0%,#0d2238 100%);
}
.hero-copy-inner{
  width:min(620px,100%);
}
.hero-wordmark{
  width:min(420px,90%);
  margin:0 0 24px;
  filter:drop-shadow(0 10px 24px rgba(0,0,0,.20));
}
.hero h1{
  max-width:9.5ch;
  font-size:clamp(3rem,4.5vw,4.65rem);
  text-shadow:none;
}
.hero-copy{
  max-width:620px;
  margin-top:20px;
  font-size:1.14rem;
  line-height:1.72;
  color:#e2ebf3;
  text-shadow:none;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}
.hero-visual{
  min-height:640px;
  background-color:#2d87a4;
  background-image:url("assets/hero-coast.svg");
  background-position:center center;
  background-size:cover;
  background-repeat:no-repeat;
}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:12px 18px;
  border-radius:5px;
  font-weight:700;
  border:2px solid transparent;
}
.button-primary{
  background:var(--yellow);
  color:var(--ink);
  border-color:var(--yellow);
}
.button-primary:hover{background:#ffda5e}
.button-secondary{
  color:white;
  border-color:rgba(255,255,255,.75);
  background:transparent;
}
.button-secondary:hover{background:rgba(255,255,255,.08)}

.intro-strip{
  background:var(--paper-2);
  border-bottom:1px solid var(--line);
}
.intro-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  padding:48px 0;
}
.intro-grid h2{font-size:2.55rem}
.intro-grid p{
  color:var(--ink-soft);
  font-size:1.08rem;
  line-height:1.75;
}
.text-link{
  display:inline-block;
  margin-top:15px;
  color:var(--red);
  font-weight:700;
}
.text-link:hover{text-decoration:underline}

.section{
  padding:70px 0;
  border-bottom:1px solid var(--line);
}
.section-header{
  max-width:660px;
  margin-bottom:34px;
}
.section-label{
  font-family:"Courier New",Courier,monospace;
  color:var(--red);
  font-size:.82rem;
  font-weight:500;
  text-transform:uppercase;
  letter-spacing:.06em;
  margin-bottom:9px;
}
.section-header p{
  margin-top:13px;
  color:var(--ink-soft);
  font-size:1.06rem;
  line-height:1.75;
}

.install-list{
  border-top:2px solid var(--ink);
}
.install-row{
  display:grid;
  grid-template-columns:180px 1fr;
  gap:28px;
  padding:28px 0;
  border-bottom:1px solid var(--line);
}
.install-row h3{font-size:1.75rem}
.install-body p{
  color:var(--ink-soft);
  line-height:1.72;
}
pre{
  margin:16px 0 0;
  padding:16px 18px;
  overflow-x:auto;
  background:var(--navy);
  color:#f7fbff;
  border-radius:4px;
  box-shadow:var(--shadow);
}
code{
  font-family:"Courier New",Courier,monospace;
  font-size:.9rem;
}

.feature-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  column-gap:56px;
  border-top:2px solid var(--ink);
}
.feature-item{
  padding:25px 0 27px;
  border-bottom:1px solid var(--line);
}
.feature-item:nth-child(odd){padding-right:20px}
.feature-item h3{font-size:1.55rem}
.feature-item p{
  margin-top:8px;
  color:var(--ink-soft);
  line-height:1.72;
}
.feature-mark{
  display:inline-block;
  width:42px;
  height:4px;
  margin-bottom:15px;
}
.feature-mark.blue{background:var(--blue)}
.feature-mark.teal{background:var(--teal)}
.feature-mark.yellow{background:var(--yellow)}
.feature-mark.orange{background:var(--orange)}
.feature-mark.red{background:var(--red)}

.workflow{
  position:relative;
}
.workflow-list{
  counter-reset:step;
  list-style:none;
  margin:0;
  padding:0 0 0 56px;
  max-width:760px;
}
.workflow-list::before{
  content:"";
  position:absolute;
  left:18px;
  top:12px;
  bottom:12px;
  width:2px;
  background:linear-gradient(var(--blue),var(--teal),var(--yellow),var(--orange),var(--red));
}
.workflow-list li{
  position:relative;
  padding:0 0 28px;
}
.workflow-list li::before{
  counter-increment:step;
  content:counter(step);
  position:absolute;
  left:-56px;
  top:0;
  width:38px;
  height:38px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--paper);
  border:2px solid var(--ink);
  font-family:"Courier New",Courier,monospace;
  font-weight:500;
}
.workflow-list h3{font-size:1.5rem}
.workflow-list p{
  margin-top:7px;
  color:var(--ink-soft);
  line-height:1.7;
}

.skills-columns{
  columns:2;
  column-gap:56px;
  border-top:2px solid var(--ink);
}
.skill-entry{
  break-inside:avoid;
  padding:18px 0 20px;
  border-bottom:1px solid var(--line);
}
.skill-entry h3{font-size:1.35rem}
.skill-entry p{
  margin-top:6px;
  color:var(--ink-soft);
  line-height:1.65;
}

.test-table{
  width:100%;
  border-collapse:collapse;
  border-top:2px solid var(--ink);
}
.test-table th,.test-table td{
  padding:16px 10px;
  text-align:left;
  vertical-align:top;
  border-bottom:1px solid var(--line);
}
.test-table th{
  font-family:"Courier New",Courier,monospace;
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.test-table td{color:var(--ink-soft);line-height:1.62}
.test-table td:first-child{color:var(--ink);font-weight:700}

.download-list{
  border-top:2px solid var(--ink);
}
.download-row{
  display:grid;
  grid-template-columns:120px 1fr auto;
  gap:22px;
  align-items:center;
  padding:20px 0;
  border-bottom:1px solid var(--line);
}
.download-type{
  font-family:"Courier New",Courier,monospace;
  color:var(--red);
  font-size:.82rem;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.download-row h3{font-size:1.4rem}
.download-row p{margin-top:4px;color:var(--ink-soft)}
.download-action{
  color:var(--blue-2);
  font-weight:700;
  white-space:nowrap;
}
.download-action:hover{text-decoration:underline}

.docs-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0 48px;
  border-top:2px solid var(--ink);
}
.doc-link{
  padding:22px 0;
  border-bottom:1px solid var(--line);
}
.doc-link h3{font-size:1.45rem}
.doc-link p{
  margin-top:6px;
  color:var(--ink-soft);
  line-height:1.65;
}
.doc-link:hover h3{color:var(--red)}

.issue-band{
  background:linear-gradient(110deg,var(--yellow),var(--orange) 58%,var(--red));
  color:var(--ink);
}
.issue-inner{
  display:grid;
  grid-template-columns:1fr auto;
  gap:30px;
  align-items:center;
  padding:46px 0;
}
.issue-inner p{
  margin-top:8px;
  max-width:580px;
  line-height:1.7;
}
.issue-inner .button{
  border-color:var(--ink);
  background:transparent;
  color:var(--ink);
}
.issue-inner .button:hover{background:rgba(255,255,255,.25)}

.site-footer{
  background:var(--navy);
  color:#edf4fa;
  padding:28px 0;
}
.footer-inner{
  width:min(var(--content),calc(100% - 40px));
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  gap:28px;
  align-items:center;
}
.footer-copy{
  display:grid;
  gap:3px;
}
.footer-wordmark{
  display:block;
  width:148px;
  margin-bottom:7px;
}
.footer-wordmark img{
  width:100%;
  height:auto;
}
.footer-copy span{
  color:#bdc9d5;
  font-size:.94rem;
  line-height:1.45;
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
}
.footer-links a{color:#d8e1e9}
.footer-links a:hover{color:white}

/* Docs */
.docs-page{
  margin-left:var(--rail);
  min-height:100vh;
}
.docs-shell{
  width:min(var(--content),calc(100% - 40px));
  margin:0 auto;
  padding:52px 0 70px;
}
.docs-hero{
  padding-bottom:34px;
  border-bottom:2px solid var(--ink);
}
.docs-hero h1{font-size:clamp(3rem,6vw,5rem)}
.docs-hero p{
  margin-top:13px;
  max-width:650px;
  color:var(--ink-soft);
  font-size:1.06rem;
  line-height:1.75;
}
.docs-index{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0 48px;
  margin-top:28px;
}
.docs-index a{
  padding:22px 0;
  border-bottom:1px solid var(--line);
}
.docs-index h3{font-size:1.45rem}
.docs-index p{margin-top:6px;color:var(--ink-soft);line-height:1.65}
.docs-index a:hover h3{color:var(--red)}
.doc-layout{
  display:grid;
  grid-template-columns:190px 1fr;
  gap:42px;
  margin-top:32px;
}
.doc-toc{
  position:sticky;
  top:24px;
  align-self:start;
}
.doc-toc strong{
  display:block;
  font-family:"Courier New",Courier,monospace;
  text-transform:uppercase;
  letter-spacing:.06em;
  font-size:.78rem;
  margin-bottom:10px;
}
.doc-toc a{
  display:block;
  color:var(--muted);
  padding:5px 0;
}
.doc-toc a:hover{color:var(--red)}
.doc-article{
  min-width:0;
}
.doc-article h2{
  font-size:2rem;
  margin-top:36px;
  padding-top:28px;
  border-top:1px solid var(--line);
}
.doc-article h2:first-child{margin-top:0}
.doc-article h3{
  font-size:1.35rem;
  margin-top:25px;
}
.doc-article p,.doc-article li{
  color:var(--ink-soft);
  line-height:1.78;
}
.doc-article p{margin-top:12px}
.doc-article ul,.doc-article ol{padding-left:1.25rem}
.callout{
  margin:20px 0;
  padding:16px 18px;
  background:var(--paper-3);
  border-left:5px solid var(--orange);
}
.callout.blue{border-left-color:var(--blue)}

@media(max-width:980px){
  .nav-icon{display:none}
  .mobile-header{
    display:flex;
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:45;
    height:72px;
    align-items:center;
    justify-content:space-between;
    padding:10px 14px;
    background:rgba(251,247,240,.98);
    border-bottom:1px solid rgba(13,34,56,.08);
    box-shadow:0 8px 22px rgba(13,34,56,.10);
  }
  .mobile-icon{
    display:block;
    position:static;
    width:54px;
    height:54px;
  }
  .mobile-icon img{
    width:54px;
    height:54px;
    object-fit:contain;
  }
  .mobile-menu{
    display:block;
    position:static;
    background:transparent;
    border:1px solid rgba(13,34,56,.24);
    color:var(--navy);
    padding:9px 13px;
    font-weight:700;
    border-radius:4px;
  }
  :root{--rail:0px}
  .side-rail{display:none}
  .page,.docs-page{margin-left:0}
  .mobile-nav{
    display:none;
    position:fixed;
    inset:0;
    z-index:35;
    padding:88px 24px 24px;
    background:rgba(251,247,240,.98);
  }
  .mobile-nav.open{
    display:grid;
    align-content:start;
    gap:5px;
  }
  .mobile-nav a{
    padding:10px 0;
    border-bottom:1px solid var(--line);
    font-weight:700;
  }
}
@media(max-width:760px){
  .hero{
    min-height:0;
    grid-template-columns:1fr;
  }
  .hero-copy-panel{
    padding:106px 20px 42px;
  }
  .hero-wordmark{
    width:min(300px,92%);
    margin-bottom:20px;
  }
  .hero h1{
    max-width:10ch;
    font-size:clamp(2.65rem,12vw,3.75rem);
  }
  .hero-copy{
    font-size:1.02rem;
  }
  .hero-actions{
    width:100%;
  }
  .hero-actions .button{
    flex:1 1 150px;
  }
  .hero-visual{
    min-height:360px;
    background-position:62% center;
  }
  .intro-grid,.feature-list,.docs-list,.docs-index,.issue-inner,.doc-layout{
    grid-template-columns:1fr;
  }
  .install-row{
    grid-template-columns:1fr;
    gap:10px;
  }
  .skills-columns{columns:1}
  .download-row{
    grid-template-columns:1fr;
    gap:6px;
  }
  .download-action{margin-top:7px}
  .issue-inner .button{width:100%}
  .footer-inner{flex-direction:column;align-items:flex-start}
  .footer-links{gap:12px 16px}
  .doc-toc{position:static;border-bottom:1px solid var(--line);padding-bottom:16px}
  .docs-shell{padding-top:96px}
  .command-block{
    padding:13px 14px;
  }
  .command-block code{
    font-size:.80rem;
  }
}


.install-row,
.install-body,
.install-row > *,
.content,
.page,
.docs-page,
.docs-shell,
.doc-article{
  min-width:0;
}

.footer-wordmark img{
  max-height:44px;
  object-fit:contain;
  object-position:left center;
}

.command-block{
  width:100%;
  max-width:100%;
  min-width:0;
  margin:16px 0 0;
  padding:15px 17px;
  overflow:hidden;
  background:var(--navy);
  color:#f7fbff;
  border-radius:5px;
  box-shadow:var(--shadow);
}
.command-block code{
  display:grid;
  gap:4px;
  width:100%;
  min-width:0;
}
.command-block code span{
  display:block;
  width:100%;
  min-width:0;
  white-space:normal;
  overflow-wrap:anywhere;
  word-break:break-word;
  line-height:1.45;
}

html,body,.page,.docs-page,.content,.docs-shell,.install-list,.install-row,.install-body,.doc-layout,.doc-article{
  max-width:100%;
}
.install-row,.install-body,.install-row>*,.doc-article,.command-block,.command-block code,.command-block span{
  min-width:0;
}
