@font-face {
  font-family: "Inter";
  src: url("../fonts/InterVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/InterVariable-Italic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("../fonts/JetBrainsMono-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("../fonts/JetBrainsMono-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("../fonts/JetBrainsMono-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("../fonts/JetBrainsMono-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ydea-orange: #FF914D;
  --ydea-cyan: #0097B2;
  --ydea-font-sans: "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ydea-font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --ydea-weight-normal: 400;
  --ydea-weight-medium: 500;
  --ydea-weight-semibold: 600;
  --ydea-weight-bold: 700;
}

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--ydea-font-sans);
  font-weight: var(--ydea-weight-normal);
  background:
    radial-gradient(circle at 88% 10%, rgba(0, 151, 178, 0.12), transparent 26rem),
    radial-gradient(circle at top left, rgba(255, 145, 77, 0.13), transparent 30rem),
    #0f172a;
  color: #e5e7eb;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
  font-family: var(--ydea-font-mono);
  font-weight: var(--ydea-weight-semibold);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ydea-font-mono);
  font-weight: var(--ydea-weight-bold);
}

p,
li,
input,
select,
textarea {
  font-weight: var(--ydea-weight-normal);
}

.section-kicker,
.services-kicker,
.home-kicker,
.home-hero__lead,
.home-final-cta__lead,
.service-lead,
.section-heading p,
.home-section-heading p,
.subtitle,
.lead {
  font-family: var(--ydea-font-mono);
  font-weight: var(--ydea-weight-medium);
}

.container {
  width: 100%;
  max-width: none;
  padding-inline: clamp(18px, 3vw, 56px);
  margin: 0 auto;
}

/* Fix WP admin bar offset frontend */
html { margin-top: 0 !important; }
body { margin-top: 0 !important; }
#wpadminbar { display: none !important; }

/* buttons base */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #FF914D, #f97316);
  padding: 14px 24px;
  border-radius: 10px;
  border: none;
  color: #fff;
  font-weight: var(--ydea-weight-semibold);
  box-shadow: 0 14px 32px rgba(255, 145, 77, 0.22);
}

*, *::before, *::after {
  box-sizing: border-box;
}

button,
input,
select,
textarea {
  font-family: var(--ydea-font-sans);
}

button,
.btn-primary,
.btn-secondary,
.home-btn,
.service-section-button,
input[type="button"],
input[type="submit"] {
  font-family: var(--ydea-font-mono);
  font-weight: var(--ydea-weight-semibold);
}

.btn-primary.full { width: 100%; text-align: center; }
