
/* --- Base reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: #111;
  background: #fff;

  background: 
  radial-gradient(circle at 10% 20%, rgba(255, 245, 237, 0.15) 0%, transparent 60%),  /* soft peach */
  radial-gradient(circle at 80% 80%, rgba(229, 247, 254, 0.15) 0%, transparent 60%),  /* icy cyan */
  radial-gradient(circle at 50% 50%, rgba(240, 244, 255, 0.1) 0%, transparent 60%);  /* lavender blue */

  background-repeat: no-repeat;
  background-size: cover;
  animation: drift 120s linear infinite;
}

/* Slowly moves the patches diagonally for a soft effect */
@keyframes drift {
  0%   { background-position: 0% 0%, 100% 100%, 50% 50%; }
  50%  { background-position: 10% 20%, 90% 80%, 55% 45%; }
  100% { background-position: 0% 0%, 100% 100%, 50% 50%; }
}


/* --- Container --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;          /* mobile edge space */
}


/*----------------*/
/* --- Header --- */
/*----------------*/

.header {
  position: fixed;
  inset: 0 0 auto 0;
  /*background: #fff5e6;*/
  background: #fff;
  z-index: 50;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Logo + text wrapper */
.logo-wrap {
  display: flex;
  align-items: center;   /* 👈 vertical center */
  gap: 0.75rem;
  transition: transform 0.15s ease;
  transform-origin: center;
  text-decoration: none;
}

.logo-wrap:hover {
  transform: scale(1.05)
}

/* Logo image */
.logo {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  overflow: hidden;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* 👈 fills + crops */
  transform: scale(1.4); /* 👈 zoom in */
  transform-origin: center;
}

/* Text next to logo */
.logo-text {
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1;
  font-family: Karla, sans-serif; 
  color: #000;       /* 👈 prevents vertical drift */
}

.try-pill {
  display: inline-flex;
  align-items: center;
  padding: 2px 16px;
  border-radius: 14px;
  background: #1f1f1d;
  text-decoration: none;
  transition: transform 0.15s ease;
  transform-origin: center;
}

.try-pill:hover {
  transform: scale(1.05)
}

.try-text {
  font-family: Karla, system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}


/*----------------*/
/* --- SECTION --- */
/*----------------*/
.doc{
  padding-bottom: 3rem;
  padding-top: 6rem;
}
h1 {
  font-family: Karla, sans-serif; 
  font-weight: 800;
}
h2{
  font-size: 20px;
}
p {
  line-height: 1.4;
  color: rgb(120,126,138);
}
li {
  list-style: none;
  line-height: 1.4;
  color: rgb(120,126,138);
}
  
li:not(:last-child) {
  padding-bottom: .3rem;
}
.line-break {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.version-text{
  color: rgb(120,126,138);
  font-size: 16px;
  font-weight: 400;
}
.new-pill{

}

.strong{
  text-decoration: underline;
  color: rgb(120,126,138);
}

.strong:hover {
  text-decoration: none;
  font-weight: 400;
}

/*---------*/
/* FOOTER  */
/*---------*/
.footer {
  padding: 2rem 1rem;
  text-align: center;
  font-size: 16px;
  color: rgb(157,163,175);
  background: #1f1f1d;
  
}

.footer-links {
  display: inline-flex;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer a {
  color: inherit;
  text-decoration: none;
}
footer a:hover{
  color: rgb(189, 193, 201);
}

.footer-copy {
  margin: 0;
}


/* =========================
   Desktop (≥768px)
   ========================= */

@media (min-width: 768px) {
  /* Container */
  .container {
    padding-left: 3rem;
    padding-right: 3rem;
    
    
  }
  
}

/* =========================
   Desktop (≥1024px)
   ========================= */

@media (min-width: 1024px) {

}