/* Duygu Dulger — LinkedIn Content Management. Standalone stylesheet. */

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/manrope-400.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/manrope-500.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/manrope-600.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/manrope-700.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/manrope-800.woff2") format("woff2");
}

:root {
  --background: #ffffff;
  --surface: #f7f7f8;
  --foreground: #16181d;
  --muted: #6b7280;
  --border: #e6e7ea;
  --radius: 1rem;
  --shadow-card: 0 1px 2px rgba(22, 24, 29, 0.04);
  --shadow-lift: 0 18px 50px -24px rgba(22, 24, 29, 0.28);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, Segoe UI, Helvetica, Arial,
    sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  letter-spacing: -0.03em;
  line-height: 1.12;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

:focus-visible {
  outline: 2px solid var(--foreground);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  width: 100%;
  max-width: 68rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.narrow {
  max-width: 48rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.95rem 1.7rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    transform 0.15s ease,
    opacity 0.15s ease,
    background-color 0.15s ease;
}

.btn-primary {
  background: var(--foreground);
  color: #fff;
  box-shadow: var(--shadow-lift);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--background);
  color: var(--foreground);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: var(--surface);
}

.btn-sm {
  padding: 0.6rem 1.15rem;
  font-size: 0.875rem;
  box-shadow: none;
}

.btn-block {
  width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.brand {
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
}

.site-nav {
  display: none;
  gap: 1.75rem;
  font-size: 0.9rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--foreground);
}

@media (min-width: 900px) {
  .site-nav {
    display: flex;
  }
}

/* Sections */
section {
  padding: 5rem 0;
}

@media (min-width: 640px) {
  section {
    padding: 7rem 0;
  }
}

.tinted {
  background: var(--surface);
}

.hero {
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

p + p {
  margin-top: 0.85rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  margin-top: 1.5rem;
}

.body-muted {
  color: var(--muted);
  margin-top: 1rem;
}

.strong-line {
  font-weight: 700;
  color: var(--foreground);
}

.price-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  padding: 0.6rem 1.25rem;
  margin-top: 2rem;
}

.price-pill strong {
  font-size: 1.5rem;
  font-weight: 800;
}

.price-pill span {
  font-size: 0.9rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .cta-row {
    flex-direction: row;
  }
}

/* Cards */
.card {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 8px);
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 1.75rem;
}

@media (min-width: 640px) {
  .card {
    padding: 2.25rem;
  }
}

.grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
}

@media (min-width: 860px) {
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .span-2 {
    grid-column: span 2;
  }
}

.step-number,
.card-number {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.card h3 {
  margin-top: 0.35rem;
}

.card p {
  color: var(--muted);
  margin-top: 0.85rem;
}

ol.grid {
  list-style: none;
}

/* Screenshots */
.shots {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .shots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.shot-placeholder {
  min-height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  border: 1px dashed var(--border);
  border-radius: calc(var(--radius) + 8px);
  background: #fff;
  color: var(--muted);
  font-size: 0.9rem;
}

figure.card {
  padding: 0;
  overflow: hidden;
}

figure.card figcaption {
  border-top: 1px solid var(--border);
  padding: 0.85rem 1.25rem;
  font-size: 0.875rem;
  color: var(--muted);
}

/* Pricing */
.pricing-card {
  max-width: 42rem;
  margin: 2.5rem auto 0;
  box-shadow: var(--shadow-lift);
  padding: 2rem;
}

@media (min-width: 640px) {
  .pricing-card {
    padding: 2.75rem;
  }
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 1rem;
}

.price strong {
  font-size: clamp(3rem, 8vw, 3.75rem);
  font-weight: 800;
  line-height: 1;
}

.price span {
  font-size: 1.1rem;
  color: var(--muted);
}

.included-label {
  margin-top: 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.included {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.included li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.included li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--foreground);
  margin-top: 0.7rem;
  flex: 0 0 auto;
}

.fineprint {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 1.25rem;
}

.fineprint.divided {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

/* FAQ */
.faq {
  margin-top: 2.5rem;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: #fff;
  border: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  font-weight: 700;
  font-size: 1.0625rem;
  padding: 1.25rem 1.5rem;
  color: inherit;
}

.faq-question:hover {
  background: var(--surface);
}

.faq-question .icon {
  font-size: 1.25rem;
  color: var(--muted);
  line-height: 1;
}

.faq-answer {
  background: #fff;
  padding: 0 1.5rem 1.5rem;
  color: var(--muted);
}

.faq-answer[hidden] {
  display: none;
}

/* Final CTA */
.final-cta {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-lift);
  padding: 2rem;
}

@media (min-width: 640px) {
  .final-cta {
    padding: 3rem;
  }
}

.final-cta .body-muted {
  margin-top: 1.25rem;
}

.final-cta .strong-line {
  margin-top: 1.5rem;
  font-size: 1.125rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--foreground);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .site-footer .container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.card p.strong-line,
.card .strong-line {
  color: var(--foreground);
}

.post-embed{width:100%;height:600px;border:1px solid #e6e7ea;border-radius:16px;background:#fff}
.metrics-quote{font-size:1.75rem;font-weight:800;margin:0 0 1.5rem}
.metrics{display:grid;gap:1.25rem;margin:0 0 3rem}@media(min-width:640px){.metrics{grid-template-columns:repeat(3,1fr)}}
.metric{padding:1.75rem;border:1px solid #e6e7ea;border-radius:16px;background:#fff}.metric dt{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0)}
.metric dd{margin:0;color:#5b606b}.metric .metric-n{font-size:2.25rem;font-weight:800;color:#16181d;margin-bottom:.5rem}
