/*
Theme Name: Gydlyne
Description: Marketing site theme for Gydlyne — living brand guideline hubs for designers.
Version: 2.9.34
Author: SBVRS, LLC.
Text Domain: gydlyne
*/

:root{
  --ink:#1D1D1F;
  --paper:#FFFFFF;
  --paper-dim:#F5F5F7;
  --gray-mid:#707070;
  --gray-text:#6E6E73;
  --red:#C8322A;
  --red-dark:#A32620;
  --red-tint:#FBEAE8;
  --red-tint-text:#8C231D;
  --line:#D2D2D7;
  --line-dark:#3A3A3C;
}

/* MARKELIUS SANS — official brand typeface, self-hosted (not
   Google Fonts). Body/UI text throughout the site; Fraunces
   remains the display/heading typeface, unchanged. */
@font-face{font-family:'Markelius Sans';src:url('fonts/MarkeliusSans-Regular.otf') format('opentype');font-weight:400;font-style:normal;font-display:swap;}
@font-face{font-family:'Markelius Sans';src:url('fonts/MarkeliusSans-Italic.otf') format('opentype');font-weight:400;font-style:italic;font-display:swap;}
@font-face{font-family:'Markelius Sans';src:url('fonts/MarkeliusSans-Medium.otf') format('opentype');font-weight:500;font-style:normal;font-display:swap;}
@font-face{font-family:'Markelius Sans';src:url('fonts/MarkeliusSans-MediumItalic.otf') format('opentype');font-weight:500;font-style:italic;font-display:swap;}
@font-face{font-family:'Markelius Sans';src:url('fonts/MarkeliusSans-SemiBold.otf') format('opentype');font-weight:600;font-style:normal;font-display:swap;}
@font-face{font-family:'Markelius Sans';src:url('fonts/MarkeliusSans-SemiBoldItalic.otf') format('opentype');font-weight:600;font-style:italic;font-display:swap;}
@font-face{font-family:'Markelius Sans';src:url('fonts/MarkeliusSans-Bold.otf') format('opentype');font-weight:700;font-style:normal;font-display:swap;}
@font-face{font-family:'Markelius Sans';src:url('fonts/MarkeliusSans-BoldItalic.otf') format('opentype');font-weight:700;font-style:italic;font-display:swap;}

*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;overflow-x:hidden;}
body{
  background:var(--paper);
  color:var(--ink);
  font-family:'Markelius Sans',sans-serif;
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  width:100%;
}
a{color:inherit;text-decoration:none;}
.wrap{max-width:1920px;margin:0 auto;padding:0 80px;}
@media(max-width:1100px){.wrap{padding:0 40px;}}
@media(max-width:640px){.wrap{padding:0 20px;}}

/* NAV */
.gydlyne-nav{display:flex;align-items:center;justify-content:space-between;padding:28px 0;border-bottom:1px solid var(--line);}
.gydlyne-logo{font-family:'Markelius Sans',sans-serif;font-weight:700;font-size:30px;letter-spacing:-0.01em;text-transform:uppercase;}
.gydlyne-tm{font-size:0.35em;font-weight:500;margin-left:2px;vertical-align:text-top;}
.gydlyne-navlinks{display:flex;gap:36px;font-size:14px;color:var(--gray-text);}
.gydlyne-navlinks a:hover{color:var(--red);}
.gydlyne-navcta{display:flex;align-items:center;gap:20px;font-size:14px;}
.gydlyne-navcta a:not(.btn-primary){color:var(--red);}

.gydlyne-menu-toggle{display:none;flex-direction:column;justify-content:center;gap:5px;width:32px;height:32px;background:none;border:none;cursor:pointer;padding:0;}
.gydlyne-hamburger-line{display:block;width:100%;height:2px;background:var(--ink);transition:transform .25s ease,opacity .25s ease;}
.gydlyne-menu-toggle.is-open .gydlyne-hamburger-line:nth-child(1){transform:translateY(7px) rotate(45deg);}
.gydlyne-menu-toggle.is-open .gydlyne-hamburger-line:nth-child(2){opacity:0;}
.gydlyne-menu-toggle.is-open .gydlyne-hamburger-line:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

.gydlyne-mobile-menu{display:none;max-height:0;overflow:hidden;transition:max-height .3s ease;}
.gydlyne-mobile-menu.is-open{max-height:400px;}
.gydlyne-mobile-menu-links{display:flex;flex-direction:column;gap:4px;padding:20px 0 8px;border-top:1px solid var(--line);}
.gydlyne-mobile-menu-links a{font-size:16px;color:var(--ink);padding:12px 4px;}
.gydlyne-mobile-menu-cta{display:flex;flex-direction:column;gap:12px;padding:12px 4px 24px;}
.gydlyne-mobile-menu-cta a{font-size:15px;}
.gydlyne-mobile-menu-cta a:not(.btn-primary){color:var(--red);padding:4px;}
.gydlyne-mobile-menu-cta .btn-primary{text-align:center;padding:13px 22px;}
body.gydlyne-menu-open{overflow:hidden;}

@media(max-width:768px){
  .gydlyne-navlinks,.gydlyne-navcta{display:none;}
  .gydlyne-menu-toggle{display:flex;}
  .gydlyne-mobile-menu{display:block;}
}
/* Phone landscape specifically — width stays under 900px even for
   the widest phones turned sideways, while any real tablet in
   landscape (much wider) has genuine room for the full nav and
   shouldn't collapse it. */
@media(orientation:landscape) and (max-width:900px){
  .gydlyne-navlinks,.gydlyne-navcta{display:none;}
  .gydlyne-menu-toggle{display:flex;}
  .gydlyne-mobile-menu{display:block;}
}

.btn{display:inline-block;padding:11px 22px;border-radius:3px;font-size:14px;font-weight:500;font-family:'Markelius Sans',sans-serif;text-align:center;transition:background .2s ease,color .2s ease;border:none;cursor:pointer;}
.btn-primary{background:var(--red);color:#FFFFFF;}
.btn-outline{background:var(--paper-dim);color:var(--red);}
.btn-outline:hover{background:var(--red);color:#FFFFFF;}
.btn-primary:hover{background:var(--red-dark);}

/* HERO */
.hero{padding:120px 0 80px;display:grid;grid-template-columns:1.3fr 1fr;gap:96px;align-items:start;}

/* WHAT IS GYDLYNE — a clear, simple statement of what the product
   actually is, before diving into the numbered sections. A visitor
   who only reads the hero headline shouldn't have to infer this. */
.gydlyne-what-is{
  padding:32px 0;
  text-align:center;
}
.gydlyne-what-is-label{
  font-size:12px;text-transform:uppercase;letter-spacing:0.1em;color:var(--gray-mid);
  margin-bottom:16px;
}
.gydlyne-what-is-statement{
  font-family:'Fraunces',serif;font-weight:500;font-size:clamp(32px,4.2vw,48px);
  line-height:1.25;letter-spacing:-0.01em;color:var(--ink);max-width:20ch;margin:0 auto;
}
.gydlyne-what-is-sub{
  font-size:15px;color:var(--gray-text);max-width:48ch;margin:18px auto 0;
}
@media(max-width:900px){.hero{grid-template-columns:1fr;padding:56px 0 40px;gap:40px;}}
.eyebrow{font-size:13px;color:var(--gray-mid);margin-bottom:20px;}
h1{font-family:'Fraunces',serif;font-weight:400;font-size:clamp(48px,6.8vw,92px);line-height:1.02;letter-spacing:-0.015em;margin-bottom:28px;}
h1 em{font-style:italic;font-weight:400;color:var(--ink);}
.hero-sub{font-size:18px;color:var(--gray-text);max-width:46ch;margin-bottom:36px;}
.hero-actions{display:flex;gap:16px;align-items:center;flex-wrap:wrap;}
.hero-note{font-size:13px;color:var(--gray-mid);margin-top:14px;}

/* SECTION LABEL */
.section-label{display:flex;align-items:baseline;gap:14px;margin-bottom:36px;}
.section-label .num{font-family:'Fraunces',serif;font-style:italic;color:var(--gray-mid);font-size:15px;}
.section-label h2{font-family:'Fraunces',serif;font-weight:400;font-size:30px;letter-spacing:-0.01em;}
.gydlyne-section{padding-top:88px;padding-bottom:88px;}

/* FOOTER */
.gydlyne-footer{padding-bottom:88px;}
.gydlyne-site-footer{padding:40px 0 48px;}
.gydlyne-foot-legal{display:flex;justify-content:space-between;flex-wrap:wrap;gap:16px;}
.gydlyne-foot-nav,.gydlyne-foot-legal-links{display:flex;gap:24px;flex-wrap:wrap;}
.gydlyne-foot-legal a{font-size:12.5px;color:var(--gray-mid);}
.gydlyne-foot-legal a:hover{color:var(--ink);}

.gydlyne-foot-bottom{display:flex;justify-content:space-between;align-items:center;padding-top:40px;margin-top:56px;border-top:1px solid var(--line);font-size:13px;color:var(--gray-mid);flex-wrap:wrap;gap:16px;}
.gydlyne-foot-brand{display:flex;align-items:center;gap:14px;flex-wrap:wrap;}
@media(max-width:600px){
  .gydlyne-foot-legal{justify-content:center;text-align:center;}
  .gydlyne-foot-nav,.gydlyne-foot-legal-links{justify-content:center;}
  .gydlyne-foot-bottom{justify-content:center;text-align:center;}
  .gydlyne-foot-brand{justify-content:center;}
}
.gydlyne-foot-copyright{font-size:12px;color:var(--gray-mid);}

/* HERO CARD (the live "Sedge & Co." swatch preview) */
/* HERO BROWSER FRAME — makes the hero card read as an actual
   screenshot of the live product rather than an abstract styled
   card floating with no context. Matches real macOS browser
   chrome: dark title bar, authentic red/yellow/green traffic
   lights, dark address bar — not a generic light frame. */
.hero-browser-frame{
  background:#E8E8E8;border-radius:10px;padding:12px 12px 0;
  border:1px solid rgba(0,0,0,0.08);
}
.hero-browser-bar{
  display:flex;align-items:center;gap:8px;padding:0 6px 12px;
}
.hero-browser-dot{width:12px;height:12px;border-radius:50%;display:inline-block;}
.hero-browser-dot:nth-child(1){background:#FF5F57;}
.hero-browser-dot:nth-child(2){background:#FEBC2E;}
.hero-browser-dot:nth-child(3){background:#28C840;}
.hero-browser-url{
  flex:1;margin-left:10px;background:#fff;border-radius:6px;
  padding:6px 12px;font-size:12px;color:var(--gray-mid);
  text-align:center;border:1px solid rgba(0,0,0,0.06);
}
.hero-browser-frame .hub-card{border-radius:6px 6px 0 0;border:none;}

/* HERO HUB CARD — deliberately matches the real "Your guides"
   dashboard card's actual structure (header bar, logo showcase,
   footer meta row) rather than an invented design, since this is
   showing a real guide (Magnific) with its real data. */
.hero-hub-card{background:#fff;border-radius:6px 6px 0 0;overflow:hidden;}
.hero-hub-card-header{
  display:flex;justify-content:space-between;align-items:center;gap:10px;
  padding:16px 18px;border-bottom:1px solid rgba(0,0,0,0.08);
}
.hero-hub-card-name{font-family:'Fraunces',serif;font-weight:500;font-size:16px;color:var(--ink);}
.hero-hub-card-badge{font-size:11px;padding:4px 9px;border-radius:20px;background:#E7F6EA;color:#237A3B;font-weight:500;}
.hero-hub-card-logo{
  height:150px;background:#F5F5F7;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 2px 8px rgba(0,0,0,0.1);
  position:relative;z-index:1;
}
.hero-hub-card-info{padding:16px 18px;}
.hero-hub-card-link{font-size:12.5px;color:var(--gray-mid);margin-bottom:14px;}
.hero-hub-card-meta{
  display:flex;justify-content:space-between;font-size:11.5px;color:var(--gray-mid);
  padding-top:12px;border-top:1px solid rgba(0,0,0,0.08);
}

/* TEMPLATE SHOWCASE — real full-page screenshots of actual guides
   using each template, clipped to a fixed-size scrollable window
   (same footprint as the old stylized mockups) rather than an
   invented mini-preview. Manual scroll/hover only, no auto-play. */
.template-row{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
@media(max-width:768px){.template-row{grid-template-columns:1fr;}}
.template-preview h4{font-family:'Fraunces',serif;font-weight:500;font-size:17px;margin:14px 0 4px;}
.template-preview p{font-size:13px;color:var(--gray-text);}
.template-preview-scroll{
  height:600px;border-radius:6px;overflow:hidden;
  border:1px solid var(--line);background:var(--paper-dim);
  display:flex;justify-content:center;align-items:flex-start;
}
.template-preview-scroll img{
  width:150%;flex-shrink:0;height:auto;display:block;
  animation:gydlyneAutoScroll 18s ease-in-out infinite;
}
@keyframes gydlyneAutoScroll{
  0%, 8%   { transform:translateY(0); }
  50%      { transform:translateY(var(--computed-scroll-depth, 0)); }
  92%, 100%{ transform:translateY(0); }
}
/* Auto-scroll is off on all phones (portrait and landscape) — same
   reasoning as before, it wasn't landing correctly on real devices.
   Portrait specifically goes further and becomes fully static
   (overflow:hidden on both axes, no scroll interaction possible at
   all) rather than manual-scroll, since that's where the iOS
   Safari horizontal-shift quirk was actually showing up. Landscape
   keeps manual scroll, since it wasn't affected. */
@media(max-width:768px){
  .template-preview-scroll{overflow-y:auto;overflow-x:hidden;}
  .template-preview-scroll img{animation:none;transform:none;}
}
@media(max-width:768px) and (orientation:portrait){
  .template-preview-scroll{overflow:hidden;}
}

/* FAQ — native <details>/<summary>, no JS needed for the
   expand/collapse behavior. */
.faq-list{max-width:760px;margin:0 auto;}
.faq-item{border-bottom:1px solid var(--line);padding:20px 0;}
.faq-item summary{
  font-family:'Fraunces',serif;font-size:16px;color:var(--ink);
  cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{
  content:"+";font-size:20px;color:var(--gray-mid);margin-left:16px;flex-shrink:0;
  transition:transform .15s ease;
}
.faq-item[open] summary::after{transform:rotate(45deg);}
.faq-item p{font-size:14px;color:var(--gray-text);margin-top:14px;}

.hub-card{background:var(--ink);color:var(--paper);border-radius:4px;overflow:hidden;border:1px solid var(--line-dark);}
.hub-card-head{padding:20px 24px;border-bottom:1px solid #2B2B23;display:flex;justify-content:space-between;align-items:center;}
.hub-card-head span{font-size:12px;color:#9A9788;}
.hub-name{font-family:'Fraunces',serif;font-size:20px;}
.swatchrow{display:grid;grid-template-columns:repeat(4,1fr);}
.swatch{aspect-ratio:1;position:relative;}
.swatch span{position:absolute;bottom:8px;left:8px;font-size:10px;mix-blend-mode:difference;color:#fff;}
.hub-card-body{padding:20px 24px;}
.type-sample{font-family:'Fraunces',serif;font-size:15px;color:#D9D6C8;margin-bottom:6px;}
.hub-meta{font-size:12px;color:#7A7868;display:flex;justify-content:space-between;padding-top:14px;border-top:1px solid #2B2B23;margin-top:14px;}

/* COMPARE */
.compare{display:grid;grid-template-columns:1fr 1fr;border-radius:6px;overflow:hidden;}
@media(max-width:768px){.compare{grid-template-columns:1fr;}}
.compare > div{padding:40px;}
.compare-pdf{background:var(--paper-dim);}
.compare-hub{background:var(--red);color:var(--paper);}
.compare h3{font-family:'Fraunces',serif;font-weight:500;font-size:19px;margin-bottom:16px;}
.compare-pdf h3{color:var(--gray-text);}
.compare-hub h3{color:#fff;}
.compare ul{list-style:none;font-size:14.5px;}
.compare-pdf li{color:var(--gray-text);padding:9px 0 9px 30px;border-bottom:1px solid var(--line);position:relative;}
.compare-hub li{color:#fff;padding:9px 0 9px 30px;border-bottom:1px solid rgba(255,255,255,0.2);position:relative;}
.compare li:last-child{border-bottom:none;}
.compare-pdf li::before{
  content:"✕";position:absolute;left:0;top:9px;font-size:13px;
  color:var(--gray-mid);font-weight:700;
}
.compare-hub li::before{
  content:"✓";position:absolute;left:0;top:9px;font-size:13px;
  color:#fff;font-weight:700;
}

/* STEPS */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--line);border:1px solid var(--line);}
@media(max-width:768px){.steps{grid-template-columns:1fr;}}
.step{background:var(--paper);padding:32px;}
.step .stepnum{font-family:'Fraunces',serif;font-style:italic;font-size:14px;color:var(--gray-mid);margin-bottom:14px;}
.step h3{font-family:'Fraunces',serif;font-weight:500;font-size:20px;margin-bottom:10px;}
.step p{font-size:14.5px;color:var(--gray-text);}

/* CASCADE DEMO */
.cascade{display:grid;grid-template-columns:280px 40px 1fr;gap:24px;align-items:center;}
@media(max-width:900px){.cascade{grid-template-columns:1fr;}.cascade-arrow{display:none;}}
.hexbox{background:var(--ink);color:var(--paper);border-radius:6px;padding:24px;box-shadow:0 4px 14px rgba(0,0,0,0.12);}
.hexbox label{font-size:11px;color:#8A876F;display:block;margin-bottom:8px;}
.hexval{font-family:'Fraunces',serif;font-size:26px;letter-spacing:0.01em;}
.cascade-arrow{display:flex;align-items:center;justify-content:center;color:var(--gray-mid);}
.cascade-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
/* CLUTTER COMPARE — a visceral before/after: a messy pile of PDF
   versions versus a single clean link. No paragraph needed, the
   image carries the argument on its own. */
.clutter-compare{display:grid;grid-template-columns:1fr auto 1fr;align-items:stretch;gap:28px;}
@media(max-width:768px){.clutter-compare{grid-template-columns:1fr;}.clutter-divider svg{transform:rotate(90deg);}}

.clutter-pane{
  background:var(--paper-dim);border-radius:8px;padding:32px;min-height:260px;
  display:flex;flex-direction:column;justify-content:center;
}
.clutter-file{
  background:#fff;border:1px solid var(--line);border-radius:6px;padding:12px 16px;
  font-size:12.5px;color:var(--gray-text);margin-bottom:10px;display:flex;align-items:center;gap:10px;
  box-shadow:0 2px 6px rgba(0,0,0,0.07);
  transition:transform .2s ease, box-shadow .2s ease;
  cursor:default;
}
.clutter-file.is-hover-top{box-shadow:0 8px 16px rgba(0,0,0,0.12);}
.clutter-file.is-hover-bottom{box-shadow:0 8px 16px rgba(0,0,0,0.12);}
.clutter-file:last-child{margin-bottom:0;}
.clutter-file--tilt-l{transform:rotate(-1.2deg);}
.clutter-file--tilt-r{transform:rotate(1.2deg);}
.clutter-dot{width:9px;height:11px;border-radius:2px;background:#D64545;flex-shrink:0;}
.clutter-divider{display:flex;align-items:center;justify-content:center;}
.clutter-pane--clean{background:#E8E8E8;border:1px solid rgba(0,0,0,0.08);padding:12px;justify-content:flex-start;}
.clutter-browser-bar{display:flex;align-items:center;gap:7px;padding:0 4px 12px;}
.clutter-browser-dot{width:10px;height:10px;border-radius:50%;display:inline-block;}
.clutter-browser-dot:nth-child(1){background:#FF5F57;}
.clutter-browser-dot:nth-child(2){background:#FEBC2E;}
.clutter-browser-dot:nth-child(3){background:#28C840;}
.clutter-browser-url{
  flex:0 0 auto;background:#fff;border-radius:6px;border:1px solid rgba(0,0,0,0.06);
  padding:10px 16px;font-family:'Fraunces',serif;font-size:14px;color:var(--ink);
  display:flex;align-items:center;justify-content:center;
}
.clutter-preview{
  flex:1;background:#fff;border-radius:6px;border:1px solid rgba(0,0,0,0.06);
  margin-top:10px;padding:16px;display:flex;flex-direction:column;
}
.clutter-preview-head{display:flex;justify-content:flex-end;}
.clutter-preview-status{
  font-size:10px;font-weight:500;padding:3px 10px;border-radius:20px;
  background:#E7F6EA;color:#237A3B;
}
.clutter-preview-sections{display:grid;grid-template-columns:repeat(4,1fr);gap:8px;margin:auto 0;}
.clutter-preview-section{
  display:flex;flex-direction:column;align-items:center;gap:6px;
  background:var(--paper-dim);border-radius:5px;padding:12px 4px;
}
.clutter-preview-section span:last-child{font-size:9.5px;color:var(--gray-mid);}
.clutter-preview-dot{width:16px;height:16px;border-radius:50%;display:block;}
.clutter-preview-aa{font-family:'Fraunces',serif;font-size:14px;font-weight:600;color:var(--ink);line-height:1;}
.clutter-preview-meta{font-size:10.5px;color:var(--gray-mid);}

/* Each demo actually resembles the real thing it represents,
   instead of three identical plain-colored rectangles requiring a
   caption to explain what's different about them. */
.cascade-demo--logo{
  height:80px;border-radius:3px;display:flex;align-items:center;justify-content:center;
}
.cascade-demo--swatch{border:1px solid var(--line);border-radius:4px;overflow:hidden;}
.cascade-demo-fill{height:56px;}
.cascade-demo-label{
  display:flex;justify-content:space-between;padding:8px 10px;font-size:11px;
  background:var(--paper);color:var(--gray-text);
}
.cascade-demo--asset{
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  border:1px solid var(--line);border-radius:4px;padding:10px 12px;
}
.cascade-demo-filename{font-size:11.5px;color:var(--ink);}
.cascade-demo-btn{
  font-size:10.5px;color:#fff;padding:5px 10px;border-radius:20px;flex-shrink:0;
}

/* PRICING TEASER */
.price-row{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;align-items:center;}

.price-row--four{grid-template-columns:repeat(4,1fr);}
@media(max-width:900px){.price-row--four{grid-template-columns:repeat(2,1fr);}}
@media(max-width:768px){.price-row{grid-template-columns:1fr;}.price-row--four{grid-template-columns:1fr;}}
/* Phone landscape specifically — width stays under 900px even for
   the widest phones turned sideways, while any real tablet in
   landscape (much wider) should keep the 2-column layout since
   there's genuine room for it. */
@media(orientation:landscape) and (max-width:900px){
  .price-row--four{grid-template-columns:1fr;}
}
/* PRICING TOGGLE — refined pill switch with a sliding thumb,
   matching the site's ink/red palette rather than a generic
   purple toggle. */
.price-toggle-row{display:flex;align-items:center;justify-content:center;gap:16px;margin-bottom:48px;}
.price-toggle{
  position:relative;display:inline-flex;background:var(--paper-dim);
  border-radius:34px;padding:5px;border:1px solid var(--line);
  box-shadow:0 4px 14px rgba(0,0,0,0.06);
}
.price-toggle-option{
  position:relative;z-index:1;border:none;background:none;padding:12px 30px;
  font-size:15px;font-weight:600;color:var(--gray-text);cursor:pointer;
  border-radius:28px;transition:color .25s ease;font-family:inherit;
}
.price-toggle-option.is-active{color:#fff;}
.price-toggle-thumb{
  position:absolute;top:5px;left:5px;width:calc(50% - 5px);height:calc(100% - 10px);
  background:var(--ink);border-radius:28px;transition:transform .25s ease;z-index:0;
}
.price-toggle.is-yearly .price-toggle-thumb{transform:translateX(100%);}

.price-disclaimer{text-align:center;font-size:12.5px;color:var(--gray-mid);max-width:52ch;margin:28px auto 0;}

.price-card{border:1px solid var(--line);border-radius:6px;padding:32px;display:flex;flex-direction:column;box-shadow:0 4px 16px rgba(0,0,0,0.05);background:var(--paper);}
.price-card-badge{
  display:inline-block;font-size:10.5px;text-transform:uppercase;letter-spacing:0.08em;
  color:#fff;background:rgba(255,255,255,0.2);padding:5px 12px;border-radius:20px;
  margin-bottom:16px;
}
.price-card > a{margin-top:24px;}
.price-card > form{margin-top:24px;}
.price-card.featured{
  border:none;padding:0;overflow:hidden;
  box-shadow:0 12px 28px rgba(0,0,0,0.14);
}
.price-card-head{background:var(--red);color:#fff;padding:32px;min-height:96px;display:flex;flex-direction:column;justify-content:center;}
.price-card-head h3{color:#fff;}
.price-card-head .price-tag{color:#fff;}
.price-card-body{padding:32px;display:flex;flex-direction:column;}
.price-card-body > a{margin-top:24px;}
.price-card-body > form{margin-top:24px;}
.price-card h3{font-family:'Fraunces',serif;font-weight:700;font-size:19px;margin-bottom:6px;}
.price-card-title-row{display:flex;justify-content:space-between;align-items:baseline;gap:12px;margin-bottom:22px;}
.price-card-title-row h3{margin-bottom:0;}
.price-tag{font-family:'Fraunces',serif;font-size:24px;white-space:nowrap;}
.price-tag .price-period{font-size:14px;color:var(--gray-mid);}
.price-card-head .price-tag .price-period{color:rgba(255,255,255,0.7);}
.price-card ul{list-style:none;font-size:14px;color:var(--gray-text);margin:18px 0 24px;}
.price-card li{padding:11px 0;border-bottom:1px solid var(--line);}
.price-card li:last-child{border-bottom:none;}

/* FINAL CTA (inside footer) */
.cta-final{display:flex;justify-content:space-between;align-items:center;gap:40px;}
@media(max-width:768px){.cta-final{flex-direction:column;align-items:flex-start;gap:24px;}}
.cta-final h2{font-family:'Fraunces',serif;font-weight:400;font-size:clamp(26px,3.2vw,38px);letter-spacing:-0.01em;max-width:26ch;}
.cta-final .btn{flex-shrink:0;}

/* CHANGELOG */
.gydlyne-changelog-intro{max-width:640px;margin:0 auto 72px;text-align:center;}
.gydlyne-changelog-eyebrow{font-family:'Fraunces',serif;font-size:15px;color:var(--gray-mid);letter-spacing:0.08em;margin-bottom:16px;}
.gydlyne-changelog-intro h1{font-family:'Fraunces',serif;font-weight:400;font-size:clamp(30px,3.8vw,42px);letter-spacing:-0.01em;margin-bottom:16px;}
.gydlyne-changelog-sub{font-size:16px;color:var(--gray-text);}

.gydlyne-changelog-list{max-width:720px;margin:0 auto;}
.gydlyne-changelog-entry{padding:32px 0;border-top:1px solid var(--line);}
.gydlyne-changelog-entry:first-child{border-top:none;padding-top:0;}
.gydlyne-changelog-ver{
  display:inline-block;font-family:'Fraunces',serif;font-weight:500;font-size:16px;
  color:var(--red);background:var(--red-tint);padding:5px 14px;border-radius:20px;
  margin-bottom:16px;
}
.gydlyne-changelog-entry--grouped .gydlyne-changelog-ver{color:var(--gray-mid);background:var(--paper-dim);}
.gydlyne-changelog-entry ul{list-style:none;padding:0;margin:0;}
.gydlyne-changelog-entry li{
  font-size:14.5px;line-height:1.6;color:var(--gray-text);padding:8px 0 8px 20px;position:relative;
}
.gydlyne-changelog-entry li::before{
  content:'';position:absolute;left:2px;top:17px;width:5px;height:5px;border-radius:50%;background:var(--gray-mid);
}
.gydlyne-changelog-entry li em{color:var(--ink);font-style:normal;font-weight:500;}

/* HELP PAGE */
.gydlyne-help-intro{max-width:640px;margin:0 auto 64px;text-align:center;}
.gydlyne-help-eyebrow{font-family:'Fraunces',serif;font-size:15px;color:var(--gray-mid);letter-spacing:0.08em;margin-bottom:16px;}
.gydlyne-help-intro h1{font-family:'Fraunces',serif;font-weight:400;font-size:clamp(30px,3.8vw,42px);letter-spacing:-0.01em;margin-bottom:16px;}
.gydlyne-help-sub{font-size:16px;color:var(--gray-text);}
.gydlyne-help-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:56px;max-width:960px;margin:0 auto;}
.gydlyne-help-category h2{font-family:'Fraunces',serif;font-weight:400;font-size:22px;margin-bottom:8px;}
.gydlyne-help-category .faq-item:last-child{border-bottom:none;}
.gydlyne-help-contact{max-width:640px;margin:80px auto 0;text-align:center;padding-top:40px;border-top:1px solid var(--line);}
.gydlyne-help-contact p{font-size:14px;color:var(--gray-mid);margin-bottom:8px;}
.gydlyne-help-contact a{font-size:16px;color:var(--red);}
@media(max-width:768px){.gydlyne-help-grid{grid-template-columns:1fr;gap:40px;}}
@media(max-width:640px){
  .gydlyne-help-intro,.gydlyne-help-grid,.gydlyne-help-contact,
  .gydlyne-changelog-intro,.gydlyne-changelog-list{
    padding-left:16px;padding-right:16px;box-sizing:border-box;
  }
}

/* BILLING SUCCESS STATE */
.gydlyne-billing-success{max-width:520px;margin:0 auto;padding:100px 0;text-align:center;}
.gydlyne-billing-success .gydlyne-success-eyebrow{font-family:'Fraunces',serif;font-size:15px;color:var(--gray-mid);letter-spacing:0.08em;margin-bottom:16px;}
.gydlyne-billing-success h1{font-family:'Fraunces',serif;font-weight:400;font-size:clamp(28px,3.6vw,40px);letter-spacing:-0.01em;margin-bottom:16px;}
.gydlyne-success-sub{font-size:15px;color:var(--gray-text);line-height:1.6;margin-bottom:32px;}

/* 404 PAGE */
.gydlyne-404{max-width:520px;margin:0 auto;padding:140px 0;text-align:center;}
.gydlyne-404-eyebrow{font-family:'Fraunces',serif;font-size:15px;color:var(--gray-mid);letter-spacing:0.08em;margin-bottom:16px;}
.gydlyne-404 h1{font-family:'Fraunces',serif;font-weight:400;font-size:clamp(28px,3.6vw,40px);letter-spacing:-0.01em;margin-bottom:16px;}
.gydlyne-404-sub{font-size:15px;color:var(--gray-text);margin-bottom:32px;}
.gydlyne-404-actions{display:flex;flex-direction:column;align-items:center;gap:16px;}
.gydlyne-404-actions a:not(.btn){font-size:13.5px;color:var(--red);}

/* LEGAL PAGES (Privacy Policy, Terms of Service) */
.gydlyne-legal{max-width:760px;margin:0 auto;padding:64px 0 96px;}
.gydlyne-legal-title{font-family:'Fraunces',serif;font-weight:400;font-size:clamp(32px,4vw,48px);letter-spacing:-0.01em;margin-bottom:8px;}
.gydlyne-legal-meta{font-size:13px;color:var(--gray-mid);margin-bottom:48px;}
.gydlyne-legal-body{font-size:15px;line-height:1.7;color:var(--gray-text);}
.gydlyne-legal-body h1{font-family:'Fraunces',serif;font-weight:500;font-size:26px;color:var(--ink);margin:48px 0 16px;letter-spacing:-0.005em;}
.gydlyne-legal-body h2{font-family:'Fraunces',serif;font-weight:500;font-size:19px;color:var(--ink);margin:32px 0 12px;}
.gydlyne-legal-body p{margin-bottom:16px;}
.gydlyne-legal-body ul{margin:0 0 16px 22px;}
.gydlyne-legal-body li{margin-bottom:6px;}
.gydlyne-legal-body a{color:var(--red);}
.gydlyne-legal-body strong{color:var(--ink);font-weight:600;}
.cs-wrap{
  min-height:100vh;display:flex;align-items:center;justify-content:center;
  padding:40px 24px;background:var(--paper);
}
.cs-card{max-width:560px;width:100%;text-align:center;}
.cs-logo{
  font-family:'Markelius Sans',sans-serif;font-weight:700;font-size:36px;
  letter-spacing:-0.01em;margin-bottom:48px;color:var(--ink);text-transform:uppercase;
}
.cs-card h1{
  font-family:'Fraunces',serif;font-weight:400;
  font-size:clamp(2.4rem, 1.6rem + 3vw, 4.2rem);
  line-height:1.05;letter-spacing:-0.015em;margin-bottom:24px;
}
.cs-sub{
  font-size:16px;line-height:1.6;color:var(--gray-text);
  max-width:46ch;margin:0 auto 32px;
}
.cs-status{
  font-size:13px;text-transform:uppercase;letter-spacing:0.12em;
  color:var(--gray-mid);margin-bottom:48px;
}
.cs-beta-toggle{
  background:none;border:none;font-family:inherit;font-size:13.5px;
  color:var(--red);cursor:pointer;padding:0;
}
.cs-beta-toggle:hover{text-decoration:underline;}
.cs-beta-form{
  display:none;gap:10px;justify-content:center;max-width:340px;margin:0 auto;
}
.cs-beta-form.open{display:flex;}
.cs-beta-form input{
  flex:1;padding:11px 14px;border:1px solid var(--line);border-radius:6px;
  font-size:14px;font-family:inherit;
}
.cs-beta-form input:focus{outline:none;border-color:var(--ink);}
.cs-beta-form button{
  background:var(--red);color:#fff;border:none;border-radius:6px;
  padding:11px 18px;font-size:14px;font-weight:500;cursor:pointer;font-family:inherit;
}
.cs-beta-form button:hover{background:var(--red-dark);}
.cs-error{font-size:13px;color:var(--red);margin-top:14px;}
.cs-divider{width:48px;height:1px;background:var(--line);margin:32px auto;}
.cs-interest-label{font-size:13.5px;color:var(--gray-text);margin-bottom:14px;max-width:38ch;margin-left:auto;margin-right:auto;}
.cs-interest-form{display:flex;gap:10px;justify-content:center;max-width:540px;margin:0 auto;flex-wrap:wrap;}
@media(max-width:480px){
  .cs-interest-form{flex-direction:column;}
  .cs-interest-form input,.cs-interest-form button{width:100%;}
}
.cs-interest-form input{
  flex:1;min-width:200px;padding:13px 16px;border:1px solid var(--line);border-radius:6px;
  font-size:14px;font-family:inherit;
}
.cs-interest-form input:focus{outline:none;border-color:var(--ink);}
.cs-interest-form button{
  background:var(--red);color:#fff;border:none;border-radius:6px;
  padding:13px 40px;min-width:160px;font-size:14px;font-weight:500;cursor:pointer;font-family:inherit;
  transition:background .2s ease;
}
.cs-interest-form button:hover{background:var(--ink);}
.cs-interest-thanks{font-size:14px;color:var(--gray-text);}
